| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <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_roless" wx:if="{{user.partnerPosition==4||user.partnerPosition==5}}">BOSS</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" wx:if="{{user.partnerPosition!=5}}">
- <view class="allocation" data-name="dailyreport" bind:tap="onqrcode" wx:if="{{user.partnerName=='董国起'||user.partnerName=='穆青原'}}">
- <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 class="allocation" data-name="dailyreport" 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>
- <!---->
-
-
|