service.wxml 812 B

123456789101112
  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/1732518474110.png" data-src="https://oss.dayaedu.com/ktyq/1732518474110.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 wx:if="{{ btnShow }}" src="./images/icon-service.png" catch:tap="onShow" style="top: {{top}}px; right: 4px;" bind:touchstart="onTouchStart" catch:touchmove="onTouchMove" bind:touchend="onTouchEnd" class="iconSerivce"></image>
  11. </view>