orderDetail.vue 9.2 KB

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