12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!--pages/ucenter/index/index.wxml-->
- <view class='title'>
- </view>
- <view class="container">
- <view class="user_text" bindtap='{{isLogin?"toUserCenter":"tologin"}}' hover-class='active'>
- <!--<open-data class="userAvatarUrl" bindtap="" type='userAvatarUrl'></open-data>-->
- <view class="userAvatarUrl" bindtap="">
- <image src='{{isLogin?userInfo.avatar:"/images/userhead.png"}}'></image>
- </view>
- <text class='bold'>{{isLogin?userInfo.userName:'点击登录'}}</text>
- <text class="h1">{{isLogin?userInfo.loginName:'工作人员登录后进行操作'}}</text>
- </view>
- <view class="user-menu">
- <view class="zan-panel">
- <view class="zan-cell" wx:if='{{!userInfo.flag}}' hover-class="active" bindtap="goCharginglog">
- <view class="zan-icon charginglog">
- <image src='/images/charginglog.png'></image>
- </view>
- <view class="zan-text">
- <text>充电记录</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <view class="zan-cell" wx:if='{{!userInfo.flag}}' hover-class="active" bindtap="goChargemoneylog">
- <view class="zan-icon chargemoneylog">
- <image src='/images/chargemoneylog.png'></image>
- </view>
- <view class="zan-text">
- <text>充值记录</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <view class="zan-cell" wx:if='{{!userInfo.flag}}' hover-class="active" bindtap="goPurse">
- <view class="zan-icon purse">
- <image src='/images/purse.png'></image>
- </view>
- <view class="zan-text">
- <text>我的钱包</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <!-- 运维用户 -->
- <view class="zan-cell" wx:if='{{userInfo.flag}}' hover-class="active" bindtap="goMyChargeSation">
- <view class="zan-icon charging3">
- <image src='/images/charging3.png'></image>
- </view>
- <view class="zan-text">
- <text>责任场站</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <view class="zan-cell" wx:if='{{userInfo.flag}}' hover-class="active" bindtap="goMyWorksheet">
- <view class="zan-icon worksheet">
- <image src='/images/worksheet.png'></image>
- </view>
- <view class="zan-text">
- <text>我的工单</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- <!-- 运维用户 -->
- <view class="zan-cell" hover-class="active" bindtap="goHelp">
- <view class="zan-icon help">
- <image src='/images/help.png'></image>
- </view>
- <view class="zan-text">
- <text>帮助中心</text>
- </view>
- <view class="zan-ft">
- <image src='/images/enter.png'></image>
- </view>
- </view>
- </view>
- </view>
- <view class="logout" hover-class="active" wx:if="{{isLogin}}" bindtap="logout">退出账号</view>
- </view>
- <view class='footer' bindtap='phoneCall'>
- <text class="h1">客服电话:18211188302</text>
- <text class="h1">工作时间:工作日 08:00-17:00</text>
- </view>
|