order.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. <block v-for="(item,index) in power_list" :key='index'>
  19. <navigator class="table-td" :url="item.address">
  20. <image :src="item.image"></image>
  21. <view>{{item.name}}</view>
  22. </navigator>
  23. </block>
  24. <!-- <navigator class="table-td" url="../order/juheOrder?type=1">
  25. <image src="../static/images/icon_2.png"></image>
  26. <view class="">订单列表</view>
  27. </navigator>
  28. <navigator class="table-td" url="../order/delivery?type=1">
  29. <image src="../static/images/ps.png"></image>
  30. <view class="">聚合配送费记录</view>
  31. </navigator>
  32. <navigator class="table-td" url="/saomaDiancan/orderList/orderList">
  33. <image src="/static/images/gn_icon_3.png"></image>
  34. <view class="">小程序订单</view>
  35. </navigator>
  36. <navigator class="table-td" url="/saomaDiancan/order/refundRecord">
  37. <image src="/static/images/gn_icon_2.png"></image>
  38. <view class="">退款记录</view>
  39. </navigator> -->
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. data() {
  48. return {
  49. power_list:[],
  50. }
  51. },
  52. onLoad(e) {
  53. let { list } = this.$store.state.management_list_store.find((v, i) => v.id == e.id)
  54. this.power_list = list
  55. },
  56. methods: {
  57. }
  58. }
  59. </script>
  60. <style>
  61. .setup {
  62. width: 100%;
  63. height: 90rpx;
  64. opacity: 1;
  65. padding: 0 22rpx;
  66. }
  67. .table,
  68. .table div {
  69. margin: 0 auto;
  70. }
  71. .table {
  72. /* display: table; */
  73. width: 100%;
  74. border-collapse: collapse;
  75. box-sizing: border-box;
  76. }
  77. .table-tr {
  78. /* display: table-row; */
  79. /* height: 92rpx; */
  80. }
  81. .table-th {
  82. display: table-cell;
  83. font-weight: bold;
  84. border: 1rpx solid #FAFAFA;
  85. text-align: center;
  86. vertical-align: middle;
  87. }
  88. .table-td {
  89. display: inline-block;
  90. border: 1rpx solid #FAFAFA;
  91. text-align: center;
  92. vertical-align: middle;
  93. background: #fff;
  94. font-size: 27rpx;
  95. color: #666666;
  96. padding: 62rpx 0;
  97. width: 33.333%;
  98. }
  99. .table-td image {
  100. width: 50rpx;
  101. height: 50rpx;
  102. margin-bottom: 23rpx;
  103. }
  104. .header {
  105. width: 100%;
  106. height: 198rpx;
  107. position: relative;
  108. }
  109. .header .bg-img {
  110. display: block;
  111. position: absolute;
  112. left: 0;
  113. top: 0;
  114. z-index: 1;
  115. width: 100%;
  116. height: 198rpx;
  117. }
  118. .header .info-block {
  119. padding: 0 40rpx 0 48rpx;
  120. height: 198rpx;
  121. position: relative;
  122. z-index: 2;
  123. }
  124. .header .info-block .title {
  125. font-size: 36rpx;
  126. color: #fff;
  127. font-weight: 500;
  128. line-height: 50rpx;
  129. }
  130. .header .info-block .desc {
  131. font-size: 28rpx;
  132. font-weight: 500;
  133. color: #fff;
  134. line-height: 40rpx;
  135. margin-top: 8rpx;
  136. }
  137. .header .info-block .btn {
  138. width: 170rpx;
  139. height: 56rpx;
  140. border-radius: 28rpx;
  141. background-color: rgb(255, 255, 255);
  142. text-align: center;
  143. line-height: 52rpx;
  144. font-size: 28rpx;
  145. font-weight: 500;
  146. color: #3387FF;
  147. }
  148. </style>