| 123456789101112131415161718192021222324252627282930313233343536 |
- <t-user-center-card
- userInfo="{{userInfo}}"
- isPhoneHide="{{true}}"
- name-class="custom-name-class"
- phone-class="custom-phone-class"
- avatar-class="customer-avatar-class"
- currAuthStep="{{currAuthStep}}"
- bind:gotoUserEditPage="gotoUserEditPage"
- style="background-image: url('https://we-retail-static-1300977798.cos.ap-guangzhou.myqcloud.com/retail-mp/common/user-center-bg.png'); background-size: cover;"
- />
- <view class="content-wrapper">
- <view class="order-group-wrapper">
- <t-order-group orderTagInfos="{{orderTagInfos}}" bind:onClickTop="jumpAllOrder" bind:onClickItem="jumpNav" />
- </view>
-
- <view wx:for="{{menuData}}" wx:key="item" class="cell-box">
- <t-cell-group>
- <t-cell wx:for="{{item}}" wx:for-item="xitem" wx:for-index="xindex" wx:key="xindex" title="{{xitem.title}}" arrow="{{!xitem.icon}}" note="{{xitem.tit}}" data-type="{{xitem.type}}" bordered="{{false}}" bind:click="onClickCell" t-class="t-cell-padding" t-class-note="order-group-note" t-class-left="order-group__left">
- <t-icon name="{{xitem.icon}}" size="48rpx" slot="note" />
- </t-cell>
- </t-cell-group>
- </view>
- </view>
- <t-popup visible="{{showMakePhone}}" placement="bottom" bind:visible-change="closeMakePhone" data-index="2">
- <view class="popup-content">
- <view class="popup-title border-bottom-1px" wx:if="{{customerServiceInfo.serviceTimeDuration}}">
- 服务时间: {{customerServiceInfo.serviceTimeDuration}}
- </view>
- <view class="popup-phone {{showKefu ? 'border-bottom-1px' : ''}}" bind:tap="call">电话客服</view>
- <button class="popup-phone border-bottom-1px online" open-type="contact" wx:if="{{showKefu}}">
- 在线客服
- </button>
- <view class="popup-close" bind:tap="closeMakePhone">取消</view>
- </view>
- </t-popup>
- <t-toast id="t-toast" />
|