orderDetail.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  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 != 'merdelivered'">
  86. <button class="status-2" v-if="orderDetail.simplify_status == 'unfill'">
  87. 缴纳保证金
  88. </button>
  89. <button
  90. class="status-1"
  91. v-if="orderDetail.simplify_status == 'undelivered'"
  92. >
  93. 备注
  94. </button>
  95. <button
  96. class="status-2"
  97. v-if="orderDetail.simplify_status == 'undelivered'"
  98. @click="toSendOutGoods"
  99. >
  100. 立即发货
  101. </button>
  102. <button
  103. class="status-1"
  104. v-if="orderDetail.simplify_status == 'delivered'"
  105. >
  106. 查看物流
  107. </button>
  108. </view>
  109. </view>
  110. </template>
  111. <script>
  112. import commodityDetailVue from "./component/commodityDetail.vue";
  113. export default {
  114. components: {
  115. commodityDetailVue,
  116. },
  117. data() {
  118. return {
  119. status: 6,
  120. show: false,
  121. title: "",
  122. orderDetail: {},
  123. transportType: "",
  124. };
  125. },
  126. onLoad(option) {
  127. //获取上个页面传输的值,通过该值获取接口数据
  128. this.status = option.orderStatus;
  129. this.getDetail(option.orderStatus);
  130. },
  131. methods: {
  132. //复制
  133. cope(e) {
  134. uni.setClipboardData({
  135. data: e,
  136. success() {
  137. uni.showToast({
  138. title: "复制成功",
  139. icon: "none",
  140. });
  141. },
  142. });
  143. },
  144. getDetail(id) {
  145. uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
  146. this.orderDetail = res;
  147. //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
  148. if (res.container) {
  149. this.transportType = res.container.transport_type_name;
  150. }
  151. //根据订单状态,显示不同的字段
  152. if (res.simplify_status == "unfill") {
  153. this.title = "待缴纳保证金";
  154. } else if (res.simplify_status == "undelivered") {
  155. this.title = "待团长发货";
  156. } else if (res.simplify_status == "merdelivered") {
  157. this.title = "待总部发货";
  158. } else if (res.simplify_status == "delivered") {
  159. this.title = "总部已发货";
  160. }
  161. });
  162. },
  163. //跳转发货页面
  164. toSendOutGoods() {
  165. uni.navigateTo({
  166. url: `/pageD/deliverGoods/deliverGoods?id=${this.orderDetail.id}`,
  167. });
  168. },
  169. },
  170. created() {
  171. //设置顶部标题栏颜色
  172. uni.setNavigationBarColor({
  173. frontColor: "#000000",
  174. backgroundColor: "#f4f4f4",
  175. });
  176. },
  177. };
  178. </script>
  179. <style scoped lang="scss">
  180. .page {
  181. padding: 20rpx 24rpx 180rpx;
  182. .title {
  183. .payment {
  184. font-size: 44rpx;
  185. font-weight: 600;
  186. margin-bottom: 20rpx;
  187. }
  188. .timer {
  189. font-size: 28rpx;
  190. color: #666;
  191. }
  192. }
  193. .address {
  194. background-color: #fff;
  195. border-radius: 16rpx;
  196. padding: 34rpx 24rpx 28rpx;
  197. margin-top: 24rpx;
  198. .name-phone {
  199. display: flex;
  200. align-items: center;
  201. align-items: flex-end;
  202. .phone {
  203. font-size: 26rpx;
  204. color: #666;
  205. }
  206. }
  207. .address-detail {
  208. margin-top: 20rpx;
  209. font-size: 24rpx;
  210. color: #444;
  211. margin-left: 60rpx;
  212. }
  213. .logistics {
  214. display: flex;
  215. justify-content: space-between;
  216. align-items: center;
  217. font-size: 28rpx;
  218. padding-top: 20rpx;
  219. border-top: 2rpx solid #f4f4f4;
  220. margin-top: 20rpx;
  221. ._label {
  222. color: #222;
  223. }
  224. .num {
  225. color: #555;
  226. display: flex;
  227. align-items: center;
  228. }
  229. .cope-icon {
  230. width: 28rpx;
  231. height: 28rpx;
  232. margin-left: 6rpx;
  233. }
  234. }
  235. }
  236. .order {
  237. background-color: #fff;
  238. border-radius: 16rpx;
  239. color: rgba(54, 54, 54, 0.7);
  240. font-size: 28rpx;
  241. margin-top: 20rpx;
  242. padding: 20rpx 20rpx;
  243. .order-number {
  244. display: flex;
  245. justify-content: space-between;
  246. margin-bottom: 32rpx;
  247. }
  248. }
  249. .contact {
  250. padding: 20rpx 0;
  251. background-color: #fff;
  252. display: flex;
  253. justify-content: center;
  254. align-items: center;
  255. border-radius: 16rpx;
  256. margin-top: 20rpx;
  257. margin-bottom: 160rpx;
  258. }
  259. .footer {
  260. position: fixed;
  261. bottom: 0;
  262. left: 0;
  263. background-color: #fff;
  264. display: flex;
  265. justify-content: flex-end;
  266. align-items: center;
  267. padding-top: 20rpx;
  268. padding-bottom: 80rpx;
  269. height: 66rpx;
  270. width: 100%;
  271. .status-1 {
  272. background-color: #fff;
  273. border-radius: 34rpx;
  274. margin: 0;
  275. padding: 0;
  276. font-size: 28rpx;
  277. color: #222;
  278. width: 168rpx;
  279. height: 68rpx;
  280. margin-right: 20rpx;
  281. border: 2rpx solid #979797;
  282. }
  283. .status-2 {
  284. background-color: #ffffff;
  285. border-radius: 34rpx;
  286. margin: 0;
  287. padding: 0;
  288. font-size: 28rpx;
  289. color: #f83224;
  290. height: 68rpx;
  291. border: 2rpx solid #f83224;
  292. margin-right: 24rpx;
  293. line-height: 68rpx;
  294. padding: 0 34rpx;
  295. }
  296. }
  297. .transition {
  298. width: 164rpx;
  299. height: 88rpx;
  300. background: #ffffff;
  301. box-shadow: 0rpx 0rpx 20rpx -6rpx rgba(0, 0, 0, 0.3);
  302. position: fixed;
  303. bottom: 160rpx;
  304. text-align: center;
  305. line-height: 88rpx;
  306. font-size: 26rpx;
  307. color: #222;
  308. }
  309. }
  310. </style>