orderDetail.vue 8.9 KB

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