You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
203 lines
7.8 KiB
203 lines
7.8 KiB
<scroll-view scroll-y class="scrollPage">
|
|
<view class="UCenter-bg">
|
|
<image src="/images/logo.png" class="png" mode="widthFix"></image>
|
|
<view class="text-xl">租房掌柜
|
|
<text class="text-df">v2.0</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-bar bg-white solid-bottom margin-top">
|
|
<view class="action">
|
|
<text class="cuIcon-title text-orange "></text> 会员中心
|
|
</view>
|
|
</view>
|
|
|
|
<view class="cu-list grid col-4">
|
|
<view class="cu-item" wx:for="{{iconList}}" wx:key>
|
|
<navigator url="{{item.url}}" hover-class="none">
|
|
<view class="cuIcon-{{item.icon}} text-{{item.color}}">
|
|
<view class="cu-tag badge" wx:if="{{item.badge!=0}}">
|
|
<block wx:if="{{item.badge!=1}}"></block>
|
|
</view>
|
|
</view>
|
|
<text>{{item.name}}</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<!--<view class="cu-item" wx:if="{{userInfo.id}}" >
|
|
<navigator url="/pages/login/index" hover-class="none" bindtap="bingLogout">
|
|
<view class="cuIcon-creativefill text-orange"></view>
|
|
<text>用户登录</text>
|
|
</navigator>
|
|
</view>
|
|
-->
|
|
</view>
|
|
|
|
<!--
|
|
<view class="cu-list menu margin-bottom-xl">
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/member/personal" hover-class="none">
|
|
<text class="cuIcon-myfill text-cyan"></text>
|
|
<text class="text-grey">我的资料</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/house/list/index" hover-class="none">
|
|
<text class="cuIcon-homefill text-green"></text>
|
|
<text class="text-grey">我的房源</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/house/room/index" hover-class="none">
|
|
<text class="cuIcon-card text-olive"></text>
|
|
<text class="text-grey">房间管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/subaccount/index" hover-class="none">
|
|
<text class="cuIcon-group text-yellow"></text>
|
|
<text class="text-grey">子账号</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{userInfo.is_manager==1}}">
|
|
<navigator class="content" url="/pages/member/member" hover-class="none">
|
|
<text class="cuIcon-friendfill text-orange"></text>
|
|
<text class="text-grey">会员管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.id}}">
|
|
<navigator class="content" url="/pages/tenant/order" hover-class="none">
|
|
<text class="cuIcon-pay text-orange"></text>
|
|
<text class="text-grey">续费管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.is_manager==1}}">
|
|
<navigator class="content" url="/pages/member/order" hover-class="none">
|
|
<text class="cuIcon-pay text-orange"></text>
|
|
<text class="text-grey">订单中心</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/member/myclean" hover-class="none">
|
|
<text class="cuIcon-paint text-green"></text>
|
|
<text class="text-grey">我的保洁</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.id}}">
|
|
<navigator class="content" url="/pages/contract/index" hover-class="none">
|
|
<text class="cuIcon-formfill text-green"></text>
|
|
<text class="text-grey">合同管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" bindtap="CopyLink" data-link="zhouheran1">
|
|
<button class="cu-btn content">
|
|
<text class="cuIcon-servicefill text-cyan"></text>
|
|
<text class="text-grey">联系客服</text>
|
|
</button>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{!userInfo.phone}}">
|
|
<button class="cu-btn content" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">
|
|
<text class="cuIcon-dianhua text-orange"></text>
|
|
<text class="text-grey">绑定手机号</text>
|
|
</button>
|
|
</view>
|
|
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/question/index" hover-class="none">
|
|
<text class="cuIcon-questionfill text-blue"></text>
|
|
<text class="text-grey">常见问题</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/single/help" hover-class="none">
|
|
<text class="cuIcon-video text-yellow"></text>
|
|
<text class="text-grey">视频教程</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow">
|
|
<navigator class="content" url="/pages/single/about" hover-class="none">
|
|
<text class="cuIcon-creativefill text-gray"></text>
|
|
<text class="text-grey">关于我们</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{!userInfo.id}}">
|
|
<navigator class="content" url="/pages/login/index" hover-class="none">
|
|
<text class="cuIcon-creativefill text-orange"></text>
|
|
<text class="text-grey">用户登录</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{userInfo.id}}">
|
|
<view class="content" bindtap="bingLogout">
|
|
<text class="cuIcon-upblock text-orange"></text>
|
|
<text class="text-grey">退出登录</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>-->
|
|
|
|
<view class="cu-list menu margin-bottom-xl">
|
|
<view class="cu-item arrow" wx:if="{{userInfo.is_manager==1}}">
|
|
<navigator class="content" url="/pages/member/member" hover-class="none">
|
|
<text class="cuIcon-friendfill text-orange"></text>
|
|
<text class="text-grey">会员管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.is_clean == 1}}">
|
|
<navigator class="content" url="/pages/clean/my" hover-class="none">
|
|
<text class="cuIcon-paint text-green"></text>
|
|
<text class="text-grey">保洁打扫</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{userInfo.id}}">
|
|
<navigator class="content" url="/pages/tenant/order" hover-class="none">
|
|
<text class="cuIcon-pay text-orange"></text>
|
|
<text class="text-grey">续费管理</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.is_manager==1}}">
|
|
<navigator class="content" url="/pages/member/order" hover-class="none">
|
|
<text class="cuIcon-pay text-orange"></text>
|
|
<text class="text-grey">订单中心</text>
|
|
</navigator>
|
|
</view>
|
|
|
|
<view class="cu-item arrow" wx:if="{{!userInfo.phone}}">
|
|
<button class="cu-btn content" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">
|
|
<text class="cuIcon-dianhua text-orange"></text>
|
|
<text class="text-grey">绑定手机号</text>
|
|
</button>
|
|
</view>
|
|
<!-- <view class="cu-item arrow" bindtap="CopyLink" data-link="zhouheran1">
|
|
<button class="cu-btn content">
|
|
<text class="cuIcon-servicefill text-cyan"></text>
|
|
<text class="text-grey">联系客服</text>
|
|
</button>
|
|
</view> -->
|
|
<view class="cu-item arrow">
|
|
<button class="cu-btn content" open-type='contact'>
|
|
<text class="cuIcon-servicefill text-cyan"></text>
|
|
<text class="text-grey">联系客服</text>
|
|
</button>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{!userInfo.id}}">
|
|
<navigator class="content" url="/pages/login/index" hover-class="none">
|
|
<text class="cuIcon-creativefill text-orange"></text>
|
|
<text class="text-grey">用户登录</text>
|
|
</navigator>
|
|
</view>
|
|
<view class="cu-item arrow" wx:if="{{userInfo.id}}">
|
|
<view class="content" bindtap="bingLogout">
|
|
<text class="cuIcon-upblock text-orange"></text>
|
|
<text class="text-grey">退出登录</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="cu-tabbar-height"></view>
|
|
</scroll-view>
|