123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!--nova-tourism/components/my/index.wxml-->
- <nav type="title" background-color="#ffffff" frontColor="#000000" title="云上望仙" />
- <view class="all" style="height: {{contentHeight}}rpx;">
- <view class="infobox">
- <image src="{{User1List[0].avatar}}"></image>
- <view class="info">
- <view class="name">{{User1List[0].nickname}}</view>
- <view class="uid">UID:{{User1List[0].objectId}}</view>
- <view class="labelbox">
- <view class="label" wx:if="{{User1List[0].type=='shop-admin'}}">民宿主</view>
- <view class="label" wx:if="{{User1List[0].type=='user'}}">用户</view>
- </view>
- </view>
- </view>
- <view class="tatlebox">
- <view class="tatle" data-url="../../pages/my/my-card/index" bindtap="gourl">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/nb541o104029705.png"></image>
- <view class="text">卡券包</view>
- </view>
- <view class="tatle" data-url="../../pages/my/my-wallet/index" bindtap="gourl">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/6u1kj2104029980.png"></image>
- <view class="text">钱包</view>
- </view>
- </view>
- <view class="myorderbox">
- <view class="my-name">我的订单</view>
- <view class="or-box">
- <view class="myorder" bindtap="goorder" data-url="../../pages/my/my-order/index" data-active="0" >
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/t0nmv1104029230.png"></image>
- <view class="or-tex">处理中</view>
- </view>
- <view class="myorder" bindtap="goorder" data-url="../../pages/my/my-order/index" data-active="1">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/dums1u104029603.png"></image>
- <view class="or-tex">进行中</view>
- </view>
- <view class="myorder" bindtap="goorder" data-url="../../pages/my/my-order/index" data-active="2">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/1ha691104644184.png"></image>
- <view class="or-tex">已完成</view>
- </view>
- <view class="myorder" bindtap="gorefund">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/erk8bg104030058.png"></image>
- <view class="or-tex" >退款/售后</view>
- </view>
- </view>
- </view>
- <view class="tuiguangbox">
- <view class="tuibox">
- <view class="tui-title">推广中心</view>
- <view class="tuiguang-tex">成为推广达人,获取佣金返利</view>
- </view>
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241211/i18ml9095731989.png"></image>
- </view>
- <view class="myshop" bindtap="merchant">我是商户</view>
- <view class="leavebox">
- <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20241212/0i1usn030423248.png"></image>
- <view class="leave-tex">退出登录</view>
- </view>
- </view>
|