my-order.vue 4.9 KB

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