orderDetail.vue 9.1 KB

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