12345678910111213141516171819202122232425262728293031323334 |
- <!--pages/my/my.wxml-->
- <wxs src="./my.wxs" module="tools" />
- <view class="personal-center">
- <view class="personal-panel">
- <image class="topHeaderBg" src="../../static/images/top.png" mode="heightFix" />
- <view class="info-box">
- <t-avatar image="{{ isLogin ? userInfo.avatarUrl :avatar}}" class="avatar" size="large" />
- <view class="personal-info" wx:if="{{isLogin}}" bindtap="handleToPersonalEdit">
- <text class="title">{{ (userInfo.nickName && userInfo.nickName.length > 14 ) ? tools.subStr(userInfo.nickName,0,14)+'...': userInfo.nickName || ('微信用户' + tools.subStr(userInfo.wxUserId,0,8))}}</text>
- <text class="desc">点击查看个人信息></text>
- </view>
- <view class="personal-info" wx:else>
- <text class="title" bindtap="login">登录/注册</text>
- </view>
- </view>
- </view>
- <view class="cell-list-contianer">
- <t-cell title="我的带看" arrow url="/pages/myScene/myScene">
- <t-icon name="root-list" color="#ed7b2f" slot="left-icon" />
- </t-cell>
- <t-cell title="关注公众号" url="/pages/mp/mp" jump-type="navigateTo" note="获取最新资讯,咨询" arrow>
- <t-icon name="logo-wechat" color="#ed7b2f" slot="left-icon" />
- </t-cell>
- <t-cell title="客服电话" note="0756-6996790-800" arrow bindtap="makeCall">
- <t-icon name="call" color="#ed7b2f" slot="left-icon" />
- </t-cell>
- <t-cell title="关于我们" url="/pages/about/about" jump-type="navigateTo" arrow>
- <t-icon name="precise-monitor" color="#ed7b2f" slot="left-icon" />
- </t-cell>
- </view>
- <t-toast id="t-toast" />
- </view>
|