orderDetail.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <template>
  2. <view class="page">
  3. <!-- 订单状态 -->
  4. <view class="title">
  5. <view>
  6. <view class="payment">
  7. {{ title }}
  8. </view>
  9. </view>
  10. </view>
  11. <!-- 订单状态 -->
  12. <!-- 地址信息 -->
  13. <view class="address">
  14. <view class="name-phone">
  15. <u-icon name="map" size="22"></u-icon>
  16. <view style="margin: 0 20rpx; font-size: 32rpx">{{
  17. orderDetail.address_name
  18. }}</view>
  19. <text class="phone">{{ orderDetail.address_mobile }}</text>
  20. </view>
  21. <view class="address-detail">
  22. {{ orderDetail.full_address }}
  23. </view>
  24. <view
  25. class="logistics"
  26. v-if="
  27. orderDetail.simplify_status == 'merdelivered' ||
  28. orderDetail.simplify_status == 'delivered'
  29. "
  30. >
  31. <text class="_label">物流单号</text>
  32. <view class="num">
  33. <text>{{ orderDetail.delivery_company }}</text>
  34. <text>{{ "&nbsp;" + "|" + "&nbsp;" }}</text>
  35. <text>{{ orderDetail.delivery_no }}</text>
  36. <image
  37. class="cope-icon"
  38. src="../../static/mine/349.png"
  39. mode=""
  40. ></image>
  41. </view>
  42. </view>
  43. </view>
  44. <commodityDetailVue
  45. :status="orderDetail.simplify_status"
  46. :commodityInformation="orderDetail"
  47. />
  48. <view class="order">
  49. <view class="order-number">
  50. <text> 订单编号 </text>
  51. <view>
  52. {{ orderDetail.order_no }} |
  53. <text decode @click="cope(orderDetail.order_no)">{{
  54. "&nbsp;" + "复制"
  55. }}</text>
  56. </view>
  57. </view>
  58. <view class="order-number">
  59. <text> 支付方式 </text>
  60. <view> {{ orderDetail.pay_type_name }} </view>
  61. </view>
  62. <view class="order-number">
  63. <text> 支付时间 </text>
  64. <view> {{ orderDetail.updated_at }} </view>
  65. </view>
  66. <view class="order-number">
  67. <text> 创建时间 </text>
  68. <view> {{ orderDetail.created_at }} </view>
  69. </view>
  70. <view class="order-number">
  71. <text> 运输方式 </text>
  72. <view>
  73. {{ transportType }}
  74. </view>
  75. </view>
  76. <!-- <view class="order-number">
  77. <text> 包裹类型 </text>
  78. <view> 海运 </view>
  79. </view> -->
  80. <!-- <view class="order-number">
  81. <text> 包裹数量 </text>
  82. <view> 210 </view>
  83. </view> -->
  84. </view>
  85. <view class="footer" v-if="orderDetail.simplify_status != 'undelivered'">
  86. <button
  87. class="status-2"
  88. v-if="orderDetail.simplify_status == 'unfill'"
  89. @click="toPay"
  90. >
  91. 缴纳保证金
  92. </button>
  93. <button
  94. class="status-1"
  95. v-if="orderDetail.simplify_status == 'undelivered'"
  96. >
  97. 备注
  98. </button>
  99. <button
  100. class="status-2"
  101. v-if="orderDetail.simplify_status == 'undelivered'"
  102. @click="toSendOutGoods"
  103. >
  104. 立即发货
  105. </button>
  106. <button
  107. class="status-1"
  108. v-if="orderDetail.simplify_status == 'delivered'"
  109. >
  110. 查看物流
  111. </button>
  112. </view>
  113. </view>
  114. </template>
  115. <script>
  116. import commodityDetailVue from "./component/commodityDetail.vue";
  117. export default {
  118. components: {
  119. commodityDetailVue,
  120. },
  121. data() {
  122. return {
  123. status: 6,
  124. show: false,
  125. title: "",
  126. orderDetail: {},
  127. transportType: "",
  128. };
  129. },
  130. onLoad(option) {
  131. //获取上个页面传输的值,通过该值获取接口数据
  132. this.status = option.orderStatus;
  133. if (option.status == "unfill") {
  134. this.getUnfillOrderDetail(option.orderStatus);
  135. } else {
  136. this.getDetail(option.orderStatus);
  137. }
  138. },
  139. methods: {
  140. //复制
  141. cope(e) {
  142. uni.setClipboardData({
  143. data: e,
  144. success() {
  145. uni.showToast({
  146. title: "复制成功",
  147. icon: "none",
  148. });
  149. },
  150. });
  151. },
  152. getUnfillOrderDetail(id) {
  153. uni.$u.http
  154. .post(`/api/order/merchant_order_detail`, { id })
  155. .then((res) => {
  156. this.orderDetail = res;
  157. //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
  158. if (res.container) {
  159. this.transportType = res.container.transport_type_name;
  160. }
  161. this.title = "待缴纳保证金";
  162. });
  163. },
  164. //获取订单详情
  165. getDetail(id) {
  166. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  167. this.orderDetail = res;
  168. //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
  169. if (res.container) {
  170. this.transportType = res.container.transport_type_name;
  171. }
  172. this.title = res.status_name;
  173. //根据订单状态,显示不同的字段
  174. // if (res.simplify_status == "unfill") {
  175. // this.title = "待缴纳保证金";
  176. // } else if (res.simplify_status == "undelivered") {
  177. // this.title = "待团长发货";
  178. // } else if (res.simplify_status == "merdelivered") {
  179. // this.title = "待总部发货";
  180. // } else if (res.simplify_status == "delivered") {
  181. // this.title = "总部已发货";
  182. // }
  183. });
  184. },
  185. //跳转支付
  186. toPay() {
  187. uni.navigateTo({
  188. url: `/pageA/payorder?num=${this.orderDetail.earnest_money}&orderid=${this.orderDetail.id}`,
  189. });
  190. },
  191. //跳转发货页面
  192. toSendOutGoods() {
  193. uni.navigateTo({
  194. url: `/pageD/deliverGoods/deliverGoods?id=${this.orderDetail.id}`,
  195. });
  196. },
  197. },
  198. created() {
  199. //设置顶部标题栏颜色
  200. uni.setNavigationBarColor({
  201. frontColor: "#000000",
  202. backgroundColor: "#f4f4f4",
  203. });
  204. },
  205. };
  206. </script>
  207. <style scoped lang="scss">
  208. .page {
  209. padding: 20rpx 24rpx 180rpx;
  210. .title {
  211. .payment {
  212. font-size: 44rpx;
  213. font-weight: 600;
  214. margin-bottom: 20rpx;
  215. }
  216. .timer {
  217. font-size: 28rpx;
  218. color: #666;
  219. }
  220. }
  221. .address {
  222. background-color: #fff;
  223. border-radius: 16rpx;
  224. padding: 34rpx 24rpx 28rpx;
  225. margin-top: 24rpx;
  226. .name-phone {
  227. display: flex;
  228. align-items: center;
  229. align-items: flex-end;
  230. .phone {
  231. font-size: 26rpx;
  232. color: #666;
  233. }
  234. }
  235. .address-detail {
  236. margin-top: 20rpx;
  237. font-size: 24rpx;
  238. color: #444;
  239. margin-left: 60rpx;
  240. }
  241. .logistics {
  242. display: flex;
  243. justify-content: space-between;
  244. align-items: center;
  245. font-size: 28rpx;
  246. padding-top: 20rpx;
  247. border-top: 2rpx solid #f4f4f4;
  248. margin-top: 20rpx;
  249. ._label {
  250. color: #222;
  251. }
  252. .num {
  253. color: #555;
  254. display: flex;
  255. align-items: center;
  256. }
  257. .cope-icon {
  258. width: 28rpx;
  259. height: 28rpx;
  260. margin-left: 6rpx;
  261. }
  262. }
  263. }
  264. .order {
  265. background-color: #fff;
  266. border-radius: 16rpx;
  267. color: rgba(54, 54, 54, 0.7);
  268. font-size: 28rpx;
  269. margin-top: 20rpx;
  270. padding: 20rpx 20rpx;
  271. .order-number {
  272. display: flex;
  273. justify-content: space-between;
  274. margin-bottom: 32rpx;
  275. }
  276. }
  277. .contact {
  278. padding: 20rpx 0;
  279. background-color: #fff;
  280. display: flex;
  281. justify-content: center;
  282. align-items: center;
  283. border-radius: 16rpx;
  284. margin-top: 20rpx;
  285. margin-bottom: 160rpx;
  286. }
  287. .footer {
  288. position: fixed;
  289. bottom: 0;
  290. left: 0;
  291. background-color: #fff;
  292. display: flex;
  293. justify-content: flex-end;
  294. align-items: center;
  295. padding-top: 20rpx;
  296. padding-bottom: 80rpx;
  297. height: 66rpx;
  298. width: 100%;
  299. .status-1 {
  300. background-color: #fff;
  301. border-radius: 34rpx;
  302. margin: 0;
  303. padding: 0;
  304. font-size: 28rpx;
  305. color: #222;
  306. width: 168rpx;
  307. height: 68rpx;
  308. margin-right: 20rpx;
  309. border: 2rpx solid #979797;
  310. }
  311. .status-2 {
  312. background-color: #ffffff;
  313. border-radius: 34rpx;
  314. margin: 0;
  315. padding: 0;
  316. font-size: 28rpx;
  317. color: #f83224;
  318. height: 68rpx;
  319. border: 2rpx solid #f83224;
  320. margin-right: 24rpx;
  321. line-height: 68rpx;
  322. padding: 0 34rpx;
  323. }
  324. }
  325. .transition {
  326. width: 164rpx;
  327. height: 88rpx;
  328. background: #ffffff;
  329. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  330. position: fixed;
  331. bottom: 160rpx;
  332. text-align: center;
  333. line-height: 88rpx;
  334. font-size: 26rpx;
  335. color: #222;
  336. }
  337. }
  338. </style>