service.wxml 803 B

12345678910111213141516
  1. <!--components/service/service.wxml-->
  2. <view>
  3. <view class="service-container" wx:if="{{ popShow }}">
  4. <view class="service-mask" bind:tap="onClose"></view>
  5. <view class="service-section" bind:tap="onClose">
  6. <image src="https://oss.dayaedu.com/ktyq/1732174608277.png" data-src="https://oss.dayaedu.com/ktyq/1732174608277.png" mode="aspectFill" catch:tap="onOpen" show-menu-by-longpress="true" catch:longtap="onPerview" class="iconImg"></image>
  7. <image src="./images/icon-close.png" catch:tap="onClose" class="iconClose"></image>
  8. </view>
  9. </view>
  10. <image src="./images/icon-service.png" bind:tap="onShow"
  11. style="top: {{top}}px; right: 4px;"
  12. bindtouchstart="onTouchStart"
  13. bindtouchmove="onTouchMove"
  14. bindtouchend="onTouchEnd" class="iconSerivce"></image>
  15. </view>