123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <!--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.flag?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="goChargpileMonitor">
- <view class="zan-icon monitor">
- <image src='/images/monitor.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="goNotice">
- <view class="zan-icon notice">
- <image src='/images/notice_icon.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>
|