my-order.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <template>
  2. <view>
  3. <block v-for="(item,index) in list" :key="index">
  4. <view class="my-order" @click="toDetail(item.id)">
  5. <view class="top hflex acenter jbetween">
  6. <view class="order_no">订单编号:{{item.order_no}}</view>
  7. <view class="type" v-if="item.status== 1">未报价</view>
  8. <view class="type1" v-if="item.status == 2">已报价</view>
  9. <view class="type2" v-if="item.status == 3">已匹配</view>
  10. </view>
  11. <block v-for="(item2,index2) in item.items" :key="index">
  12. <view class="box">
  13. <view class="text_style1">{{item2.name}}</view>
  14. <view class="box_norm hflex acenter" v-if="item.tab !== 4">
  15. <view class="text_style2">规格:{{item2.spec}}kg/桶</view>
  16. <view class="text_style2">采购数量:{{item2.number}}吨</view>
  17. </view>
  18. <view class="box_norm hflex acenter" v-else>
  19. <view class="text_style2">数量/吨位:{{item2.weight}}吨</view>
  20. </view>
  21. <view class="text" v-if="item2.standard">质量标准:{{item2.standard}}</view>
  22. </view>
  23. </block>
  24. <view class="bottom hflex acenter jbetween" v-if="item.status != 1 && item.tab !== 1">
  25. <view class="offer">订单报价:<span style="font-size: 32rpx;color: #222;">{{item.user_order.amount}}</span></view>
  26. <view class="btn" @click.stop="toOffer(item.id)">查看详情</view>
  27. </view>
  28. <view class="hflex acenter jend" v-if="item.tab == 1">
  29. <view class="btn2 hflex acenter jcenter" @click.stop="toDetail(item.id)">查看详情</view>
  30. </view>
  31. </view>
  32. </block>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. name:"my-order",
  38. props: {
  39. list: {
  40. type: Array,
  41. value: []
  42. },
  43. },
  44. data() {
  45. return {
  46. }
  47. },
  48. methods: {
  49. // 订单详情
  50. toDetail(id) {
  51. this.$emit('toDetail', id)
  52. },
  53. toOffer(id) {
  54. this.$emit('toOffer', id)
  55. },
  56. toEdit(data) {
  57. this.$emit('toEdit', data)
  58. }
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. .my-order {
  64. width: 100%;
  65. box-sizing: border-box;
  66. padding: 26rpx 20rpx;
  67. margin-top: 20rpx;
  68. border-radius: 20rpx;
  69. background-color: #fff;
  70. .top {
  71. padding-bottom: 24rpx;
  72. width: 100%;
  73. border-bottom: 1rpx solid #f4f4f4;
  74. .order_no {
  75. font-size: 24rpx;
  76. color: #444;
  77. }
  78. .type {
  79. width: 96rpx;
  80. height: 40rpx;
  81. background-color: #fff4e8;
  82. border-radius: 4rpx;
  83. font-size: 22rpx;
  84. color: #fba94e;
  85. text-align: center;
  86. line-height: 40rpx;
  87. }
  88. .type1 {
  89. width: 96rpx;
  90. height: 40rpx;
  91. background-color: #e7ebf7;
  92. border-radius: 4rpx;
  93. font-size: 22rpx;
  94. color: #506dff;
  95. text-align: center;
  96. line-height: 40rpx;
  97. }
  98. .type2 {
  99. width: 96rpx;
  100. height: 40rpx;
  101. background-color: #E6F7E8;
  102. border-radius: 4rpx;
  103. font-size: 22rpx;
  104. color: #4AB256;
  105. text-align: center;
  106. line-height: 40rpx;
  107. }
  108. }
  109. .box {
  110. width: 100%;
  111. padding-top: 14rpx;
  112. border-bottom: 1rpx solid #f4f4f4;
  113. .text_style1 {
  114. font-size: 28rpx;
  115. color: #222;
  116. line-height: 40rpx;
  117. display: inline-block;
  118. }
  119. .urgent1 {
  120. width: 72rpx;
  121. height: 32rpx;
  122. background-color: #ff762C;
  123. border-radius: 4rpx;
  124. color: #fff;
  125. font-size: 24rpx;
  126. text-align: center;
  127. line-height: 32rpx;
  128. display: inline-block;
  129. margin-right: 8rpx;
  130. }
  131. .urgent {
  132. width: 72rpx;
  133. height: 32rpx;
  134. background-color: #5571ff;
  135. border-radius: 4rpx;
  136. color: #fff;
  137. font-size: 24rpx;
  138. text-align: center;
  139. line-height: 32rpx;
  140. display: inline-block;
  141. margin-right: 8rpx;
  142. }
  143. .box_norm {
  144. width: auto;
  145. background-color: #f4f4f4;
  146. border-radius: 8rpx;
  147. box-sizing: border-box;
  148. padding: 6rpx 20rpx;
  149. margin: 16rpx 0 24rpx;
  150. }
  151. .box_cell {
  152. margin: 16rpx 0 24rpx;
  153. }
  154. .text_style2 {
  155. font-size: 24rpx;
  156. color: #888;
  157. padding-right: 20rpx;
  158. }
  159. .text {
  160. width: 100%;
  161. padding-bottom: 20rpx;
  162. font-size: 26rpx;
  163. color: #888;
  164. line-height: 36rpx;
  165. }
  166. }
  167. .bottom {
  168. width: 100%;
  169. box-sizing: border-box;
  170. padding: 14rpx 20rpx;
  171. background-color: #eaf4ff;
  172. border-radius: 16rpx;
  173. .offer {
  174. font-size: 24rpx;
  175. color: #506dff;
  176. }
  177. .btn {
  178. width: 152rpx;
  179. height: 52rpx;
  180. background-color: #eaf4ff;
  181. border-radius: 28rpx;
  182. border: 1rpx solid #506dff;
  183. font-size: 26rpx;
  184. color: #506dff;
  185. text-align: center;
  186. line-height: 52rpx;
  187. }
  188. }
  189. .bottom1 {
  190. width: 100%;
  191. padding-top: 20rpx;
  192. border-top: 1rpx solid #f4f4f4;
  193. }
  194. .btn2 {
  195. width: 152rpx;
  196. height: 60rpx;
  197. border-radius: 32rpx;
  198. border: 1rpx solid #506DFF;
  199. font-size: 28rpx;
  200. font-weight: 400;
  201. color: #506DFF;
  202. line-height: 40rpx;
  203. margin: 20rpx 0 0;
  204. }
  205. .btn1 {
  206. width: 152rpx;
  207. height: 52rpx;
  208. // background-color: #eaf4ff;
  209. border-radius: 28rpx;
  210. border: 1rpx solid #e5e5e5;
  211. font-size: 26rpx;
  212. color: #2f2f2f;
  213. text-align: center;
  214. line-height: 52rpx;
  215. margin-left: 24rpx;
  216. }
  217. }
  218. </style>