运维小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.wxml 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <view class="setup">
  2. <view class="navigation-container" style="{{'height: ' + navStatusBarHeight +'px'}}">
  3. <!-- 空白来占位状态栏 -->
  4. <view style="{{'height: ' + statusBarHeight +'px'}}"></view>
  5. <!-- 自定义导航栏 -->
  6. <view class="navigation-bar" style="{{'height:' + navBarHeight +'px'}}">
  7. <!-- <view class="title">个人中心</view> -->
  8. </view>
  9. </view>
  10. <view style="width: 100%;height:60rpx"></view>
  11. <view class="user">
  12. <image bind:tap="onuser" class="user_to" src="{{user.partnerAvite||'https://thirdwx.qlogo.cn/mmopen/vi_32/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg/132'}}" mode=""/>
  13. <view class="user_name">
  14. <view class="user_name1">{{user.partnerName||'微信用户'}}
  15. <view class="user_roless" wx:if="{{user.partnerPosition==4||user.partnerPosition==5}}">BOSS</view>
  16. <view class="user_role" wx:if="{{user.partnerPosition==3}}">站长</view>
  17. <view class="user_role" wx:if="{{user.partnerPosition==2}}">值长</view>
  18. <view class="user_role" wx:if="{{user.partnerPosition==1}}">值班员</view>
  19. </view>
  20. <view class="user_name2">{{user.partnerPhone}}</view>
  21. </view>
  22. </view>
  23. <view style="width: 100%;height:40rpx"></view>
  24. <!---->
  25. <view class="allocation_box" wx:if="{{user.partnerPosition!=5}}">
  26. <view class="allocation" data-name="dailyreport" bind:tap="onqrcode" wx:if="{{user.partnerName=='董国起'||user.partnerName=='穆青原'}}">
  27. <view class="allocation_3">获取二维码</view>
  28. <view class="allocation_1">
  29. <view class="allocation_2"></view>
  30. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  31. </view>
  32. </view>
  33. <view class="allocation" data-name="dailyreport" bind:tap="toconfigure">
  34. <view class="allocation_3">生产日报</view>
  35. <view class="allocation_1">
  36. <view class="allocation_2"></view>
  37. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="allocation_box">
  42. <view class="allocation">
  43. <view class="allocation_3">小程序版本</view>
  44. <view class="allocation_1">
  45. <view class="allocation_2" wx:if="{{accountInfo!=''}}">V {{accountInfo}}</view>
  46. <view class="allocation_2" wx:else>V 1.0.0</view>
  47. <!--
  48. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  49. -->
  50. </view>
  51. </view>
  52. <view class="allocation">
  53. <view class="allocation_31">
  54. <button class="contact-button" open-type="contact" plain >
  55. <view>联系客服</view>
  56. </button>
  57. </view>
  58. <view class="allocation_1">
  59. <view class="allocation_2"></view>
  60. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  61. </view>
  62. </view>
  63. <view class="allocation" bind:tap="onsetup">
  64. <view class="allocation_3">设置</view>
  65. <view class="allocation_1">
  66. <view class="allocation_2"></view>
  67. <t-icon name="chevron-right-s" size="40rpx" data-name="chevron-right-s"/>
  68. </view>
  69. </view>
  70. </view>
  71. </view>
  72. <!---->