| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <view class="setup">
- <view class="navigation-container" style="{{'height: ' + navStatusBarHeight +'px'}}">
- <!-- 空白来占位状态栏 -->
- <view style="{{'height: ' + statusBarHeight +'px'}}"></view>
- <!-- 自定义导航栏 -->
- <view class="navigation-bar" style="{{'height:' + navBarHeight +'px'}}">
- <!-- <view class="title">个人中心</view> -->
- </view>
- </view>
- <view style="width: 100%;height:60rpx"></view>
- <view class="user">
- <image bind:tap="onuser" class="user_to" src="{{user.partnerAvite||'https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132'}}" mode=""/>
- <view class="user_name">
- <view class="user_name1">{{user.partnerName||'微信用户'}}
- <view class="user_role" wx:if="{{user.partnerPosition==4}}">黄总</view>
- <view class="user_role" wx:if="{{user.partnerPosition==3}}">站长</view>
- <view class="user_role" wx:if="{{user.partnerPosition==2}}">值长</view>
- <view class="user_role" wx:if="{{user.partnerPosition==1}}">值班员</view>
- </view>
- <view class="user_name2">{{user.partnerPhone}}</view>
- </view>
- </view>
- <view style="width: 100%;height:40rpx"></view>
- <!---->
- <!-- <view class="allocation_box">
- <view class="allocation" data-name="project" bind:tap="toconfigure">
- <view class="allocation_3">排班</view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- </view>
- </view>
- </view> -->
- <view class="allocation_box">
-
- <view class="allocation">
- <view class="allocation_3">小程序版本</view>
- <view class="allocation_1">
- <view class="allocation_2" wx:if="{{accountInfo!=''}}">V {{accountInfo}}</view>
- <view class="allocation_2" wx:else>V 1.0.0</view>
- <!--
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- -->
- </view>
- </view>
- <view class="allocation">
- <view class="allocation_31">
- <button class="contact-button" open-type="contact" plain >
- <view>联系客服</view>
- </button>
- </view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- </view>
- </view>
- <view class="allocation" bind:tap="onsetup">
- <view class="allocation_3">设置</view>
- <view class="allocation_1">
- <view class="allocation_2"></view>
- <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
- </view>
- </view>
- </view>
- </view>
- <!---->
-
-
|