orderInfo.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. <template>
  2. <view class="uni-flex uni-column orderInfo ">
  3. <view class="uni-flex uni-column orderInfo-status">
  4. <!-- <image mode="widthFix" src="../../../static/order/status1.jpg"></image> -->
  5. <view class="uni-flex uni-flex-item"></view>
  6. <view class="uni-flex uni-flex-item2 item-padding fontWt">{{ orderStatus }}</view>
  7. <view v-if="showTimer" class="uni-flex uni-flex-item2 item-padding">
  8. <uni-order-countdown
  9. bgrColor="transparent"
  10. borderColor="transparent"
  11. splitorColor="#fff"
  12. fontColor="#fff"
  13. :orderStr="orderStr"
  14. :timer="timer"
  15. ></uni-order-countdown>
  16. </view>
  17. <view class="uni-flex uni-flex-item"></view>
  18. </view>
  19. <!-- <view class="uni-flex uni-column order-address">
  20. <view class="uni-flex uni-column order-address-box">
  21. <view class="uni-flex uni-flex-item uni-row orderMsg">收货信息</view>
  22. <view class="uni-flex uni-flex-item uni-row">
  23. {{data.express}}
  24. </view>
  25. </view>
  26. <view class="uni-flex uni-flex-item order-address-line">
  27. <image src="../../../static/cart/line.png" mode="widthFix"></image>
  28. </view>
  29. </view> -->
  30. <view class=" order-address">
  31. <view class=" order-address-box">
  32. <view class=" orderMsg">收货信息</view>
  33. <view class=" uni-row">{{ orderInfo.express }}</view>
  34. </view>
  35. <view class="uni-flex uni-flex-item order-address-line"><image src="../../../static/cart/line.png"></image></view>
  36. </view>
  37. <view class="uni-flex uni-column order-items">
  38. <view class="uni-flex uni-row uni-flex-item order-shop-name order-boder">{{ orderInfo.shopName }}</view>
  39. <view class="uni-flex uni-row order-item" v-for="(item, key) in orderInfo.items" :key="key">
  40. <view class="uni-flex uni-flex-item pic item-padding"><image mode="widthFix" :src="item.pic"></image></view>
  41. <view class="uni-flex uni-column uni-flex-item3 item-padding">
  42. <text class="uni-text order-title">{{ item.title }}</text>
  43. <text class="uni-text order-specs">{{ item.productSpecsStr }}</text>
  44. <text class="uni-text order-specs">小计</text>
  45. </view>
  46. <view class="uni-flex uni-column uni-flex-item item-padding">
  47. <text class="uni-text color-f40">¥{{ item.totalPrice / item.amount }}</text>
  48. <text class="uni-text">x{{ item.amount }}</text>
  49. <text class="uni-text color-f40">¥{{ item.totalPrice }}</text>
  50. </view>
  51. </view>
  52. <view class="uni-flex order-line item-padding order-boder order-line-small">
  53. <view class="uni-flex uni-flex-item">商品总件</view>
  54. <view class="uni-flex uni-flex-item justify-flex-end">{{ orderInfo.orderItemCount }}</view>
  55. </view>
  56. <view class="uni-flex order-line item-padding order-boder order-line-small">
  57. <view class="uni-flex uni-flex-item">商品总价</view>
  58. <view class="uni-flex uni-flex-item justify-flex-end">¥{{ orderInfo.totalPrice }}</view>
  59. </view>
  60. <view class="uni-flex order-line item-padding order-boder order-line-small">
  61. <view class="uni-flex uni-flex-item">运费(快递)</view>
  62. <view class="uni-flex uni-flex-item justify-flex-end">¥{{ orderInfo.expressCost }}</view>
  63. </view>
  64. <view class="uni-flex order-line item-padding totalPrice ">
  65. <view class="uni-flex uni-flex-item">订单总价</view>
  66. <view class="uni-flex uni-flex-item justify-flex-end color-f40">¥{{ allPrice }}</view>
  67. </view>
  68. </view>
  69. <view class="uni-flex uni-column oderinfo-other">
  70. <view class="uni-flex order-line-small item-padding order-boder">订单编号:{{ orderInfo.orderNo }}</view>
  71. <view class="uni-flex order-line-small item-padding order-boder">创建时间:{{ orderInfo.createDate }}</view>
  72. <!-- 收款信息:<text style="font-size: 28upx; color: #FF0000;">{{orderInfo.payBankInfo}}</text> -->
  73. <view v-if="orderInfo.payBankCode" class="uni-flex order-line-small item-padding order-boder uni-column">
  74. <view class="uni-flex order-line-small order-boder space-between">
  75. <view>收款对象:{{ payBankInfo.getMoneyPeople }}</view>
  76. <view class="setClipboardData" @click="setClipboardData(payBankInfo.getMoneyPeople)">复制</view>
  77. </view>
  78. <view class="uni-flex order-line-small order-boder space-between">
  79. <view>银行名称:{{ payBankInfo.bankName }}</view>
  80. <view class="setClipboardData" @click="setClipboardData(payBankInfo.bankName)">复制</view>
  81. </view>
  82. <view class="uni-flex order-line-small order-boder space-between">
  83. <view>银行账号:{{ payBankInfo.bankNum }}</view>
  84. <view class="setClipboardData" @click="setClipboardData(payBankInfo.bankNum)">复制</view>
  85. </view>
  86. <view class="uni-flex order-line-small order-boder space-between">
  87. <view>银行地址:{{ payBankInfo.bankAddress }}</view>
  88. <view class="setClipboardData" @click="setClipboardData(payBankInfo.bankAddress)">复制</view>
  89. </view>
  90. </view>
  91. <view v-if="orderInfo.payBankCode" class="uni-flex order-line-small item-padding order-boder">
  92. 汇款识别码:
  93. <text style="font-size: 28upx; color: #FF0000;">{{ orderInfo.payBankCode }}</text>
  94. </view>
  95. <view v-if="waitPayBtn" class="uni-flex order-line-small item-padding order-boder align-items" style="height: 220upx;">
  96. <view class="">上传汇款单:</view>
  97. <view class="uni-flex-item">
  98. <robby-image-upload
  99. v-model="imageData"
  100. fileKeyName="data"
  101. :limit="3"
  102. :server-url="serverUrl"
  103. :showUploadProgress="show"
  104. :form-data="formData"
  105. @delete="deleteImage"
  106. @add="addImage"
  107. ></robby-image-upload>
  108. </view>
  109. </view>
  110. </view>
  111. <view class="uni-flex uni-row footer justify-flex-end">
  112. <view v-if="delBtn" class="btn" @click="bindDel">删除订单</view>
  113. <view v-if="cancelBtn" class="btn" @click="bindCancel">取消订单</view>
  114. <view v-if="payBtn" class="btn" @click="bindPay">付款</view>
  115. <view v-if="waitPayBtn" class="btn">等待汇款</view>
  116. <view v-if="refundBtn" class="btn" @click="bindRefund">{{ refundStr }}</view>
  117. <view v-if="emsBtn" class="btn" @click="bindEms">查看物流</view>
  118. <view v-if="doneBtn" class="btn" @click="bindDone">确认收货</view>
  119. <!-- <view v-if="evaluateBtn" class="btn" @click="bindEvaluate">
  120. {{evaluateStr}}
  121. </view> -->
  122. </view>
  123. </view>
  124. </template>
  125. <script>
  126. import order from '../../../common/order.js';
  127. import util from '../../../common/util.js';
  128. import uniOrderCountdown from '../../../components/uni-order-countdown.vue';
  129. import robbyImageUpload from '../../../components/robby-image-upload/robby-image-upload.vue';
  130. import { mapState, mapMutations } from 'vuex';
  131. export default {
  132. components: {
  133. uniOrderCountdown,
  134. robbyImageUpload
  135. },
  136. computed: {
  137. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser']),
  138. allPrice: function() {
  139. return (parseFloat(this.orderInfo.totalPrice) + parseFloat(this.orderInfo.expressCost)).toFixed(2);
  140. },
  141. delBtn: function() {
  142. return this.orderInfo.orderStatus == 99;
  143. },
  144. cancelBtn: function() {
  145. return this.orderInfo.orderStatus == 1;
  146. },
  147. payBtn: function() {
  148. return (this.orderInfo.orderStatus == 1) & (this.orderInfo.payMode == 0);
  149. },
  150. waitPayBtn: function() {
  151. return (this.orderInfo.orderStatus == 1) & (this.orderInfo.payMode == 2);
  152. },
  153. refundBtn: function() {
  154. return this.orderInfo.orderStatus == 2 || this.orderInfo.orderStatus == 3;
  155. },
  156. refundStr: function() {
  157. let str = '';
  158. switch (parseInt(this.orderInfo.refundState)) {
  159. case 0:
  160. str = '申请退款';
  161. break;
  162. case 1:
  163. str = '退款中';
  164. break;
  165. case 2:
  166. str = '退款成功';
  167. break;
  168. case 3:
  169. str = '退款失败';
  170. }
  171. return str;
  172. },
  173. emsBtn: function() {
  174. return this.orderInfo.orderStatus == 3 || this.orderInfo.orderStatus == 4;
  175. },
  176. doneBtn: function() {
  177. return this.orderInfo.orderStatus == 3;
  178. },
  179. evaluateBtn: function() {
  180. return this.orderInfo.orderStatus == 4;
  181. },
  182. evaluateStr: function() {
  183. let str = '';
  184. switch (parseInt(this.orderInfo.evaluateState)) {
  185. case 0:
  186. str = '立即评价';
  187. break;
  188. case 1:
  189. str = '查看评价';
  190. break;
  191. }
  192. return str;
  193. },
  194. orderStatus: function() {
  195. let str = '';
  196. switch (parseInt(this.orderInfo.orderStatus)) {
  197. case 1:
  198. str = '待付款';
  199. break;
  200. case 2:
  201. str = '已支付';
  202. break;
  203. case 3:
  204. str = '已发货';
  205. break;
  206. case 4:
  207. str = '交易成功';
  208. break;
  209. case 99:
  210. str = '订单取消';
  211. break;
  212. }
  213. return str;
  214. }
  215. },
  216. methods: {
  217. setClipboardData(val) {
  218. uni.setClipboardData({
  219. data: val,
  220. success() {
  221. uni.showToast({
  222. title: '复制成功',
  223. icon: 'none'
  224. });
  225. }
  226. });
  227. },
  228. bindDone(e) {
  229. order.done(this.webUrl, this.orderInfo, this.user);
  230. },
  231. bindDel() {
  232. order.del(this.webUrl, this.orderInfo, this.user.id);
  233. },
  234. bindCancel(e) {
  235. order.cancel(this.webUrl, this.orderInfo, this.user.id);
  236. },
  237. bindPay(e) {
  238. order.pay(this.orderInfo);
  239. },
  240. bindRefund(e) {
  241. order.refund(this.orderInfo);
  242. },
  243. bindEms(e) {
  244. order.ems(this.orderInfo);
  245. },
  246. bindEvaluate(e) {
  247. order.evaluate(this.orderInfo);
  248. },
  249. init() {
  250. this.getData();
  251. },
  252. deleteImage: function(e) {
  253. let imageData2 = [];
  254. if (e.allImages.length > 0) {
  255. for (let i = 0; i < e.allImages.length; i++) {
  256. imageData2.push({ pic: e.allImages[i] });
  257. }
  258. }
  259. uni.request({
  260. url: this.webUrl + 'OrderPayBankPic',
  261. method: 'POST',
  262. data: {
  263. orderNo: this.orderInfo.orderNo,
  264. userid: this.user.id,
  265. pic: JSON.stringify(imageData2)
  266. },
  267. header: {
  268. 'content-type': 'application/x-www-form-urlencoded'
  269. },
  270. success: res => {
  271. if (res.data.result.isSuccess) {
  272. uni.showToast({
  273. title: res.data.result.resultInfo,
  274. icon: 'none'
  275. });
  276. }
  277. },
  278. fail: () => {},
  279. complete: () => {}
  280. });
  281. },
  282. addImage: function(e) {
  283. let imageData2 = [];
  284. if (e.allImages.length > 0) {
  285. for (let i = 0; i < e.allImages.length; i++) {
  286. imageData2.push({ pic: e.allImages[i] });
  287. }
  288. uni.request({
  289. url: this.webUrl + 'OrderPayBankPic',
  290. method: 'POST',
  291. data: {
  292. orderNo: this.orderInfo.orderNo,
  293. userid: this.user.id,
  294. pic: JSON.stringify(imageData2)
  295. },
  296. header: {
  297. 'content-type': 'application/x-www-form-urlencoded'
  298. },
  299. success: res => {
  300. if (res.data.result.isSuccess) {
  301. uni.showToast({
  302. title: res.data.result.resultInfo,
  303. icon: 'none'
  304. });
  305. }
  306. },
  307. fail: () => {},
  308. complete: () => {}
  309. });
  310. }
  311. },
  312. getData() {
  313. uni.showLoading({
  314. title: '加载中'
  315. });
  316. uni.request({
  317. url: this.webUrl + 'GetOrderInfo',
  318. method: 'POST',
  319. data: {
  320. orderNo: this.orderNo,
  321. userId: this.user.id
  322. },
  323. header: {
  324. 'content-type': 'application/x-www-form-urlencoded'
  325. },
  326. success: res => {
  327. uni.hideLoading();
  328. if (res.data.result.isSuccess) {
  329. this.orderInfo = res.data.result.uniOrder;
  330. if (this.orderInfo.payBankPic != null) {
  331. let arr = JSON.parse(this.orderInfo.payBankPic);
  332. for (let i = 0; i < arr.length; i++) {
  333. this.imageData.push(arr[i].Pic);
  334. }
  335. }
  336. this.payBankInfo.getMoneyPeople = this.orderInfo.payBankInfo.split(',')[0];
  337. this.payBankInfo.bankName = this.orderInfo.payBankInfo.split(',')[1];
  338. this.payBankInfo.bankNum = this.orderInfo.payBankInfo.split(',')[2];
  339. this.payBankInfo.bankAddress = this.orderInfo.payBankInfo.split(',')[3];
  340. let s = '';
  341. switch (parseInt(this.orderInfo.orderStatus)) {
  342. case 1:
  343. s = '后自动关闭';
  344. this.timer = util.dateAddDays(this.orderInfo.createDate, 1 / 96);
  345. this.showTimer = true;
  346. break;
  347. case 2:
  348. break;
  349. case 3:
  350. this.showTimer = true;
  351. this.timer = util.dateAddDays(this.orderInfo.expressDate, 7);
  352. s = '后自动确认';
  353. break;
  354. case 4:
  355. break;
  356. case 99:
  357. break;
  358. }
  359. this.orderStr = s;
  360. switch (parseInt(this.orderInfo.orderStatus)) {
  361. case 1:
  362. break;
  363. case 2:
  364. break;
  365. case 3:
  366. break;
  367. case 4:
  368. break;
  369. case 99:
  370. break;
  371. }
  372. } else {
  373. uni.showToast({
  374. title: res.data.result.resultInfo,
  375. icon: 'none'
  376. });
  377. }
  378. },
  379. fail: () => {},
  380. complete: () => {}
  381. });
  382. }
  383. },
  384. onPullDownRefresh() {
  385. this.getData();
  386. setTimeout(function() {
  387. uni.stopPullDownRefresh();
  388. }, 1000);
  389. },
  390. onLoad(e) {
  391. if (!this.hasLogin) {
  392. uni.navigateTo({
  393. url: '../login/login'
  394. });
  395. } else {
  396. this.user = JSON.parse(this.jyyUser);
  397. this.orderNo = e.order.replace(/"/g, '');
  398. /*let arr = JSON.parse(e.arr);
  399. this.newsitems = arr[0];
  400. this.one = arr[1];
  401. this.two = arr[2]; */
  402. this.init();
  403. }
  404. },
  405. data() {
  406. return {
  407. orderStr: '关闭交易',
  408. timer: '',
  409. showTimer: false,
  410. one: '',
  411. two: '',
  412. orderInfo: {},
  413. user: {},
  414. newsitems: [],
  415. imageData: [],
  416. serverUrl: this.webUrl + 'Upload',
  417. show: true,
  418. formData: {
  419. userId: 2
  420. },
  421. orderNo: '',
  422. payBankInfo: {
  423. getMoneyPeople: '',
  424. bankName: '',
  425. bankNum: '',
  426. bankAddress: ''
  427. }
  428. };
  429. }
  430. };
  431. </script>
  432. <style>
  433. .order-items .order-specs {
  434. width: auto;
  435. }
  436. .orderMsg {
  437. /* font-weight: 700; */
  438. color: #000000;
  439. }
  440. .orderInfo .order-line-small {
  441. height: auto;
  442. }
  443. .setClipboardData {
  444. margin-left: 30upx;
  445. color: #ff4400;
  446. }
  447. .orderInfo .imageItem,
  448. .orderInfo .imageUpload {
  449. width: 140upx;
  450. height: 140upx;
  451. }
  452. .imageItem image, .moveImage{
  453. width: 140upx!important;
  454. height: 140upx!important;
  455. }
  456. </style>