location.wxml 630 B

12345678910111213141516
  1. <view class="wx-address t-class" bind:tap="getWxLocation">
  2. <block wx:if="{{isCustomStyle}}">
  3. <view class="wx-address-custom">
  4. <t-icon t-class="weixin" color="#0ABF5B" name="logo-wechat" />
  5. <text class="text">{{title}}</text>
  6. </view>
  7. <slot />
  8. </block>
  9. <block wx:else>
  10. <t-cell title="{{title}}" title-class="cell__title" wr-class="cell" border="{{false}}">
  11. <t-icon t-class="weixin" slot="icon" color="#0ABF5B" name="logo-windows" size="48rpx" />
  12. <t-icon slot="right-icon" name="chevron-right" class="custom-icon" color="#bbb" />
  13. </t-cell>
  14. </block>
  15. </view>
  16. <t-toast id="t-toast" />