orderDetail.vue 9.5 KB

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