orderList.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. <template>
  2. <view>
  3. <view class="list" v-for="(item,index) in list" :key="index" @click="goGroupBuyDetails(item.id)">
  4. <view class="myclient_list">
  5. <view class="myclient_list_name">
  6. <view class="nl">
  7. {{item.mainTitle}}
  8. </view>
  9. <view v-if="item.grouponStateDesc == '发布中'" class="status">{{item.grouponStateDesc}}</view>
  10. <view v-else-if="item.grouponStateDesc == '申请中'" class="sqz_status">{{item.grouponStateDesc}}</view>
  11. <view v-else-if="item.grouponStateDesc == '已结束'" class="js_status">{{item.grouponStateDesc}}</view>
  12. <view v-else-if="item.grouponStateDesc == '已拒绝'" class="refuse_status">{{item.grouponStateDesc}}</view>
  13. </view>
  14. <view class="myclient_list_content">
  15. <view class="subtitle">{{item.subTitle}}</view>
  16. <view class="phone">
  17. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  18. <text>
  19. 团购日期:{{item.grouponStartTimeStr}} 至 {{item.grouponEndTimeStr}}
  20. </text>
  21. </view>
  22. <view class="time">
  23. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
  24. <text>
  25. 提货时间:{{item.takeStartTimeStr}} 至 {{item.takeEndTimeStr}}
  26. </text>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- <view class="self-pickup-point">-->
  31. <!-- <view class="a-b">-->
  32. <!-- <view class="a-b1">-->
  33. <!-- 对接团长:-->
  34. <!-- <text class="red">-->
  35. <!-- 上海市浦东新区秀浦路29号三层303室-->
  36. <!-- </text>-->
  37. <!-- </view>-->
  38. <!-- <view class="a-b2">-->
  39. <!-- </view>-->
  40. <!-- </view>-->
  41. <!-- </view>-->
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. export default {
  47. name: "orderList",
  48. props: {
  49. list: {
  50. type: Array,
  51. default () {
  52. return []
  53. }
  54. }
  55. },
  56. data() {
  57. return {
  58. };
  59. },
  60. methods: {
  61. /**
  62. * 去订单详情
  63. */
  64. goGroupBuyDetails(id) {
  65. uni.navigateTo({
  66. url: '/pages/groupbuying/groupbuying_order_details/index?id=' + id
  67. });
  68. },
  69. }
  70. }
  71. </script>
  72. <style lang="scss" scoped>
  73. .list {
  74. width: 100%;
  75. background: white;
  76. margin: 14rpx auto 0 auto;
  77. padding-bottom: 30rpx;
  78. }
  79. .myclient_list {
  80. padding: 30rpx;
  81. background: #FFFFFF;
  82. }
  83. .myclient_list_name {
  84. margin-bottom: 15rpx;
  85. min-height: 44rpx;
  86. font-size: 28rpx;
  87. font-weight: 500;
  88. color: #111111;
  89. line-height: 44rpx;
  90. display: flex;
  91. flex-direction: row;
  92. justify-content: space-between;
  93. }
  94. .status {
  95. text-align: right;
  96. margin-left: 30rpx;
  97. color: #75BE00;
  98. }
  99. .sqz_status {
  100. text-align: right;
  101. margin-left: 30rpx;
  102. color: #FEA800;
  103. }
  104. .refuse_status {
  105. text-align: right;
  106. margin-left: 30rpx;
  107. color: #B42A3E;
  108. }
  109. .js_status {
  110. text-align: right;
  111. margin-left: 30rpx;
  112. color: #666666;
  113. }
  114. .myclient_list_content {
  115. .subtitle {
  116. height: 44rpx;
  117. margin: 20rpx 0;
  118. font-size: 28rpx;
  119. font-weight: 400;
  120. color: #666666;
  121. line-height: 44rpx;
  122. }
  123. image {
  124. width: 24rpx;
  125. height: 24rpx;
  126. margin-right: 20rpx;
  127. }
  128. .phone {
  129. margin-bottom: 15rpx;
  130. height: 44rpx;
  131. font-size: 24rpx;
  132. font-weight: 400;
  133. color: #999999;
  134. line-height: 44rpx;
  135. }
  136. .time {
  137. height: 44rpx;
  138. font-size: 24rpx;
  139. font-weight: 400;
  140. color: #999999;
  141. line-height: 44rpx;
  142. }
  143. }
  144. .self-pickup-point {
  145. background: #FFF7F8;
  146. margin: 0 30rpx;
  147. }
  148. .a-b {
  149. padding: 0 30rpx;
  150. width: 100%;
  151. background: #FFF7F8;
  152. border: 1px solid dashed #333333;
  153. height: 60rpx;
  154. line-height: 60rpx;
  155. display: flex;
  156. justify-content: space-between;
  157. .a-b1 {
  158. font-size: 20rpx;
  159. font-weight: 400;
  160. color: #666666;
  161. .red {
  162. font-size: 20rpx;
  163. font-weight: 500;
  164. color: #B22338;
  165. }
  166. }
  167. .a-b2 {
  168. image {
  169. vertical-align: middle;
  170. margin-right: 30rpx;
  171. margin-left: 30rpx;
  172. height: 34rpx;
  173. width: 34rpx;
  174. }
  175. }
  176. }
  177. </style>