orderDetail.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <template>
  2. <view class="all-container">
  3. <view class="bg"></view>
  4. <Loading :type="3" :loadStatus="loadStatus" :showText="errorText" />
  5. <zj-page-layout
  6. v-if="detail"
  7. :hasFooter="true"
  8. :isScroll="true"
  9. :refresherTriggered="refresherTriggered"
  10. @refresherrefresh="refresherrefresh"
  11. >
  12. <view class="content-container">
  13. <view class="status-container">{{ detail.payStatus | statusFilter }}</view>
  14. <view class="product-container card">
  15. <view class="title">产品信息</view>
  16. <view class="product">
  17. <view class="it" v-for="(item, index) in detail.workerOrderItems" :key="index">
  18. <view class="name"
  19. >{{ item.goodsName }}<text>×{{ item.num }}{{ item.unit }}</text></view
  20. >
  21. <view class="price">¥{{ item.totalAmount | priceFilter }}</view>
  22. </view>
  23. <view class="total">
  24. <view class="text">合计:</view>
  25. <view class="price">¥{{ detail.totalAmount | priceFilter }}</view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="info-container card">
  30. <view class="title">下单信息</view>
  31. <view class="row">
  32. <view class="label">订单单号</view>
  33. <view class="value">{{ detail.orderId }}</view>
  34. <view class="tag" @tap="$copy(detail.orderId)">复制</view>
  35. </view>
  36. <view class="row">
  37. <view class="label">关联工单</view>
  38. <view class="value">{{ detail.workerOrderId }}</view>
  39. <view class="tag" @tap="$copy(detail.workerOrderId)">复制</view>
  40. </view>
  41. <view class="row">
  42. <view class="label">客户电话</view>
  43. <view class="value">{{ detail.userMobile }}</view>
  44. </view>
  45. <view class="row">
  46. <view class="label">销售方式</view>
  47. <view class="value">{{ detail.settlementType | salesTypeFilter }}</view>
  48. </view>
  49. <view class="row">
  50. <view class="label">所属网点</view>
  51. <view class="value">{{ detail.websitName }}</view>
  52. </view>
  53. <view class="row">
  54. <view class="label">下单人员</view>
  55. <view class="value">{{ detail.workerName }}</view>
  56. </view>
  57. <view class="row">
  58. <view class="label">下单时间</view>
  59. <view class="value">{{ detail.createTime }}</view>
  60. </view>
  61. <view class="row">
  62. <view class="label">支付方式</view>
  63. <view class="value">{{ detail.payType | payTypeFilter }}</view>
  64. </view>
  65. <view class="row">
  66. <view class="label">备注信息</view>
  67. <view class="value">{{ detail.remark }}</view>
  68. </view>
  69. </view>
  70. </view>
  71. <template slot="footer">
  72. <view class="bottom-container" v-if="detail.payStatus == 'WAIT'">
  73. <view class="left"></view>
  74. <view class="right">
  75. <u-button text="取消订单" @click="cancelOrder"></u-button>
  76. </view>
  77. </view>
  78. </template>
  79. </zj-page-layout>
  80. </view>
  81. </template>
  82. <script>
  83. export default {
  84. filters: {
  85. statusFilter(val) {
  86. const MAP = {
  87. WAIT: '待支付',
  88. PAID: '已支付',
  89. CANCEL: '已取消'
  90. }
  91. return MAP[val]
  92. },
  93. salesTypeFilter(val) {
  94. const MAP = {
  95. OWN: '自有出库',
  96. OUT: '外购销售'
  97. }
  98. return MAP[val]
  99. },
  100. payTypeFilter(val) {
  101. const MAP = {
  102. WECHAT: '微信支付',
  103. LINE: '线下支付'
  104. }
  105. return MAP[val]
  106. }
  107. },
  108. data() {
  109. return {
  110. id: null,
  111. refresherTriggered: false,
  112. loadStatus: 0,
  113. errorText: '',
  114. detail: null
  115. }
  116. },
  117. onLoad({ id }) {
  118. this.id = id
  119. this.getDetail()
  120. },
  121. methods: {
  122. getDetail() {
  123. this.$api
  124. .post('/pay/getOrder', {
  125. orderId: this.id
  126. })
  127. .then(res => {
  128. this.detail = res.data
  129. this.loadStatus = 0
  130. })
  131. .catch(res => {
  132. this.errorText = res.message
  133. this.loadStatus = 2
  134. })
  135. .finally(res => {
  136. this.refresherTriggered = false
  137. })
  138. },
  139. // 下拉刷新
  140. refresherrefresh() {
  141. this.refresherTriggered = true
  142. this.getDetail()
  143. },
  144. // 取消订单
  145. cancelOrder() {
  146. this.$modal({
  147. content: '确认取消订单吗?'
  148. })
  149. .then(() => {
  150. this.$api
  151. .post('/pay/cancel', {
  152. orderId: this.id
  153. })
  154. .then(res => {
  155. this.$successToast()
  156. this.getDetail()
  157. })
  158. })
  159. .catch(() => {})
  160. }
  161. }
  162. }
  163. </script>
  164. <style lang="scss" scoped>
  165. .all-container {
  166. position: relative;
  167. }
  168. .bg {
  169. position: absolute;
  170. top: 0;
  171. left: 0;
  172. width: 100%;
  173. height: 300rpx;
  174. background: linear-gradient(179.48deg, rgba(200, 224, 251, 1) 0.45%, rgba(247, 247, 247, 1) 98.96%);
  175. }
  176. .card {
  177. @include zj-card;
  178. margin-top: 30rpx;
  179. padding: 30rpx;
  180. .title {
  181. font-size: 32rpx;
  182. font-weight: 600;
  183. }
  184. }
  185. .content-container {
  186. padding: 20rpx;
  187. }
  188. .status-container {
  189. font-size: 36rpx;
  190. font-weight: 500;
  191. margin-left: 30rpx;
  192. text {
  193. margin-left: 12rpx;
  194. }
  195. }
  196. .product-container {
  197. .title {
  198. display: flex;
  199. align-items: center;
  200. justify-content: space-between;
  201. .left {
  202. font-size: 32rpx;
  203. font-weight: 600;
  204. }
  205. .right {
  206. font-size: 28rpx;
  207. color: $theme-color;
  208. }
  209. }
  210. .product {
  211. background: #f5f5f5;
  212. border-radius: 12rpx;
  213. padding: 20rpx;
  214. margin-top: 20rpx;
  215. .it {
  216. display: flex;
  217. align-items: flex-end;
  218. margin-bottom: 20rpx;
  219. .name {
  220. flex: 1;
  221. font-size: 28rpx;
  222. font-weight: 500;
  223. text {
  224. color: $sec-font;
  225. margin-left: 12rpx;
  226. font-weight: normal;
  227. }
  228. }
  229. .price {
  230. margin-left: 30rpx;
  231. font-size: 28rpx;
  232. font-weight: 500;
  233. }
  234. }
  235. .total {
  236. display: flex;
  237. align-items: center;
  238. justify-content: flex-end;
  239. margin-top: 30rpx;
  240. .text {
  241. font-size: 28rpx;
  242. color: $sec-font;
  243. }
  244. .price {
  245. font-size: 28rpx;
  246. color: $minor-color;
  247. font-weight: 500;
  248. }
  249. }
  250. }
  251. }
  252. .info-container {
  253. .row {
  254. display: flex;
  255. align-items: center;
  256. margin-top: 20rpx;
  257. .label {
  258. font-size: 28rpx;
  259. color: $sec-font;
  260. margin-right: 20rpx;
  261. }
  262. .value {
  263. flex: 1;
  264. font-size: 28rpx;
  265. text {
  266. color: $minor-color;
  267. }
  268. &.price {
  269. color: $theme-color;
  270. }
  271. }
  272. .tag {
  273. font-size: 28rpx;
  274. color: $theme-color;
  275. }
  276. }
  277. }
  278. .bottom-container {
  279. padding: 20rpx;
  280. display: flex;
  281. justify-content: space-between;
  282. .right {
  283. display: flex;
  284. ::v-deep .u-button {
  285. margin-left: 20rpx;
  286. }
  287. }
  288. }
  289. </style>