menuList.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <template>
  2. <view class="content">
  3. <view class="header">
  4. <image src="../../static/images/skm_fn_bg.png" mode="aspectFill" class="bg-img"></image>
  5. <view class="info-block flex-y-center">
  6. <view class="info">
  7. <view class="title">智慧经营管理</view>
  8. <view class="desc">手机管理方便又快捷</view>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="content-row">
  13. <view class="setup flex-y-center ft32">
  14. 常用应用
  15. </view>
  16. <view class="table">
  17. <view class="table-tr">
  18. <!-- <navigator class="table-td" url="../partnerCenter/partnerCenter">
  19. <image src="../../static/images/icon_5.png" mode=""/>
  20. <view class="">合伙人设置</view>
  21. </navigator> -->
  22. <!--
  23. 暂时先去掉,有问题,下个版本修改
  24. <navigator class="table-td" url="../partnerList/add">
  25. <image src="../static/images/icon_3.png" mode=""></image>
  26. <view class="">新增合伙人</view>
  27. </navigator> -->
  28. <block v-for="(item,index) in power_list" :key='index'>
  29. <navigator class="table-td" :url="item.address">
  30. <image :src="item.image"></image>
  31. <view class="">{{item.name}}</view>
  32. </navigator>
  33. </block>
  34. <!--
  35. <navigator class="table-td" url="../partnerGrade/list">
  36. <image src="../../static/images/icon_3.png" mode=""></image>
  37. <view class="">合伙人等级</view>
  38. </navigator>
  39. <navigator class="table-td" url="../partnerList/index">
  40. <image src="../static/images/icon_2.png" mode=""></image>
  41. <view class="">合伙人</view>
  42. </navigator>
  43. <navigator class="table-td" url="../commission/index">
  44. <image src="../static/images/icon_4.png" mode=""></image>
  45. <view class="">佣金明细</view>
  46. </navigator>
  47. <navigator class="table-td" url="../TxDetail/TxDetail">
  48. <image src="../static/images/icon_5.png" mode=""></image>
  49. <view class="">提现明细</view>
  50. </navigator>
  51. <navigator class="table-td" url="../promotedMembers/membersList">
  52. <image src="../../static/images/icon_2.png" mode=""></image>
  53. <view class="">已推广的会员</view>
  54. </navigator> -->
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. </template>
  60. <script>
  61. export default {
  62. data() {
  63. return {
  64. power_list:[],
  65. }
  66. },
  67. onLoad(e) {
  68. this.sid=e.id;
  69. let { list } = this.$store.state.management_list_store.find((v, i) => v.id == e.id)
  70. this.power_list = list
  71. },
  72. methods: {
  73. }
  74. }
  75. </script>
  76. <style>
  77. .setup {
  78. width: 100%;
  79. height: 90rpx;
  80. opacity: 1;
  81. padding: 0 22rpx;
  82. }
  83. .table,
  84. .table div {
  85. margin: 0 auto;
  86. }
  87. .table {
  88. /* display: table; */
  89. width: 100%;
  90. border-collapse: collapse;
  91. box-sizing: border-box;
  92. }
  93. .table-tr {
  94. /* display: table-row; */
  95. /* height: 92rpx; */
  96. }
  97. .table-th {
  98. display: table-cell;
  99. font-weight: bold;
  100. border: 1rpx solid #FAFAFA;
  101. text-align: center;
  102. vertical-align: middle;
  103. }
  104. .table-td {
  105. display: inline-block;
  106. border: 1rpx solid #FAFAFA;
  107. text-align: center;
  108. vertical-align: middle;
  109. background: #fff;
  110. font-size: 27rpx;
  111. color: #666666;
  112. padding: 62rpx 0;
  113. width: 33.333%;
  114. }
  115. .table-td image {
  116. width: 50rpx;
  117. height: 50rpx;
  118. margin-bottom: 23rpx;
  119. }
  120. .header {
  121. width: 100%;
  122. height: 198rpx;
  123. position: relative;
  124. }
  125. .header .bg-img {
  126. display: block;
  127. position: absolute;
  128. left: 0;
  129. top: 0;
  130. z-index: 1;
  131. width: 100%;
  132. height: 198rpx;
  133. }
  134. .header .info-block {
  135. padding: 0 40rpx 0 48rpx;
  136. height: 198rpx;
  137. position: relative;
  138. z-index: 2;
  139. }
  140. .header .info-block .title {
  141. font-size: 36rpx;
  142. color: #fff;
  143. font-weight: 500;
  144. line-height: 50rpx;
  145. }
  146. .header .info-block .desc {
  147. font-size: 28rpx;
  148. font-weight: 500;
  149. color: #fff;
  150. line-height: 40rpx;
  151. margin-top: 8rpx;
  152. }
  153. .header .info-block .btn {
  154. width: 170rpx;
  155. height: 56rpx;
  156. border-radius: 28rpx;
  157. background-color: rgb(255, 255, 255);
  158. text-align: center;
  159. line-height: 52rpx;
  160. font-size: 28rpx;
  161. font-weight: 500;
  162. color: #3387FF;
  163. }
  164. </style>