order.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. <template>
  2. <view class="uni-flex uni-column cart order jz_order">
  3. <view class="uni-flex uni-column uni-flex-item ">
  4. <view v-if="!mode" class="order-address">
  5. <view class="order-address-box01">
  6. <view class="order-address-ico">
  7. <image src="../../../static/cart/location.png"></image>
  8. </view>
  9. <view v-if="showAddress" class="order-message" @click="goAddress">
  10. <view>
  11. <view>
  12. <view class="lf">收货人:{{address.nickName}}</view>
  13. <view class="rt">电话:{{address.mobile}}</view>
  14. </view>
  15. <view class="address">收货地址:{{province}}{{city}}{{district}}{{address.addStr}}</view>
  16. </view>
  17. </view>
  18. <view v-if="!showAddress" class="addAdress" @click="goAddressService">
  19. <text>添加地址</text>
  20. </view>
  21. <view class="order-address-ico2" @click="goAddress">
  22. <image src="../../../static/cart/image.png"></image>
  23. </view>
  24. </view>
  25. <view class=" order-address-line01">
  26. <image src="../../../static/cart/line.png"></image>
  27. </view>
  28. </view>
  29. <view v-if="mode" class="order-address">
  30. <view class=" order-address-box">
  31. <view class="">收货信息</view>
  32. <view class="expressMsg fontWnormal">
  33. {{addressStr}}
  34. </view>
  35. </view>
  36. <view class="uni-flex uni-flex-item order-address-line mg">
  37. <image src="../../../static/cart/line.png"></image>
  38. </view>
  39. </view>
  40. <!-- 列表循环 -->
  41. <view class="uni-flex uni-column uni-flex-item cart-list" v-for="(item,m) in json" :key="m">
  42. <view class="uni-flex uni-column item-shop ">
  43. <!-- 商家 -->
  44. <!-- <view class="uni-flex uni-row order-line">
  45. {{item.sj}}
  46. </view> -->
  47. <!-- 图片产品名称价格数量展示 -->
  48. <view class="uni-flex uni-row order-item" v-for="(pl,n) in json[m].items" :key="n">
  49. <!-- 商品图片 -->
  50. <view class="uni-flex uni-flex-item item-img">
  51. <image mode="widthFix" :src="pl.img"></image>
  52. </view>
  53. <view class="uni-flex uni-column item-padding uni-flex-item3">
  54. <view class="uni-flex uni-flex-item fontWnormal">
  55. {{pl.cp}}
  56. </view>
  57. <view class="uni-flex uni-flex-item">
  58. <view class="uni-flex text cart-attr" v-for="attr in pl.attr" :key="attr">
  59. {{attr.name}}:{{attr.value}}
  60. </view>
  61. </view>
  62. <view class="uni-flex uni-row uni-flex-item">
  63. <view class="uni-flex uni-flex-item5" v-if="status==1"><text class="price-red">¥{{pl.jg*pl.unitNum}}</text></view>
  64. <view class="uni-flex uni-flex-item5" v-if="status==0"><text class="price-red">¥{{pl.jg}}</text></view>
  65. <view class="uni-flex uni-flex-item ">x{{pl.sl}}</view>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="uni-flex uni-row order-line">
  70. 配送费用:<text class="price-red">¥{{item.expressCost}}</text>
  71. </view>
  72. <view class="uni-flex uni-row order-line">
  73. 订单小计:<text class="price-red">¥{{item.totalPrice}}</text>
  74. </view>
  75. <view class="uni-flex uni-row order-line msg">
  76. 买家留言:
  77. <input class="uni-input fontWnormal" v-model="item.message" placeholder="给卖家的留言(选填)" />
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. <view class="uni-flex uni-row footer">
  83. <view class="uni-flex uni-flex-item">合计: <text class="price-red">¥{{allPrice}}</text></view>
  84. <view class="uni-flex ">
  85. <view class="uni-flex uni-flex-item btn" @click='order()'>去付款</view>
  86. </view>
  87. </view>
  88. <attr-popup :show="showAttr" @hidePopup="hidePopup" :toptitle="toptitle" :productItems="items"></attr-popup>
  89. <pay-popup :show="showPay" :banks="banks" @hidePopup="hidePayPopup" @wxPay="wxPay" @bankPay="bankPay"></pay-popup>
  90. </view>
  91. </template>
  92. <script>
  93. import {
  94. mapState,
  95. mapMutations
  96. } from 'vuex'
  97. import util from '../../../common/util.js';
  98. import cart from '../../../common/cart.js';
  99. import province from '../../../components/mpvue-citypicker/city-data/province.js';
  100. import city from '../../../components/mpvue-citypicker/city-data/city.js';
  101. import area from '../../../components/mpvue-citypicker/city-data/area.js';
  102. import attrPopup from '../../../components/cartcommon/uni-popup-public.vue';
  103. import payPopup from '../../../components/uni-popup-pay.vue';
  104. export default {
  105. computed: {
  106. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser'])
  107. },
  108. components: {
  109. attrPopup,
  110. payPopup
  111. },
  112. data() {
  113. return {
  114. allPrice: '0.00',
  115. allNum: 0,
  116. json: [],
  117. showAddress: false,
  118. address: [],
  119. user: {},
  120. province: "",
  121. city: "",
  122. district: "",
  123. addressId: "",
  124. mode: false,
  125. addressStr: "",
  126. showAttr: false,
  127. showPay: false,
  128. items: [], //弹窗的数组,
  129. toptitle: '',
  130. banks: [],
  131. status: '',
  132. id: '',
  133. orderNo: ''
  134. };
  135. },
  136. onLoad(e) {
  137. //0为直接购买,1为订单列表处结算
  138. if (e.status == 1) {
  139. this.status = 1;
  140. } else {
  141. this.status = 0;
  142. }
  143. this.addressId = e.addressId;
  144. this.orderNo = e.orderNo;
  145. this.id = e.id;
  146. this.init();
  147. },
  148. onPullDownRefresh() {
  149. this.init();
  150. },
  151. methods: {
  152. init() {
  153. if (!this.hasLogin) {
  154. uni.navigateTo({
  155. url: '../login/login',
  156. });
  157. } else {
  158. this.user = JSON.parse(this.jyyUser);
  159. if (this.orderNo == undefined) {
  160. this.json = cart.getOrder();
  161. this.orderNo = this.json[0].no;
  162. this.getAddress();
  163. } else {
  164. this.getData();
  165. }
  166. }
  167. uni.stopPullDownRefresh();
  168. },
  169. hidePopup() {
  170. this.showAttr = false;
  171. },
  172. hidePayPopup() {
  173. this.showPay = false;
  174. },
  175. goAddress() {
  176. uni.redirectTo({
  177. url: "../address/address?url=../order/order"
  178. })
  179. },
  180. goAddressService() {
  181. uni.redirectTo({
  182. url: "../addressService/addressService?url=../order/order"
  183. })
  184. },
  185. getData() {
  186. uni.showLoading({
  187. title: "加载中"
  188. })
  189. uni.request({
  190. url: this.webUrl + 'GetOrder',
  191. method: 'POST',
  192. data: {
  193. userid: this.user.id,
  194. id: this.id
  195. },
  196. header: {
  197. 'content-type': 'application/x-www-form-urlencoded'
  198. },
  199. success: res => {
  200. uni.hideLoading();
  201. this.mode = true;
  202. this.json = [];
  203. this.json.push(res.data.uniOrder);
  204. this.addressStr = res.data.uniOrder.express;
  205. this.showAddress = true;
  206. this.allPrice = (parseFloat(this.json[0].expressCost) + parseFloat(this.json[0].totalPrice)).toFixed(2);
  207. //this.Refresh();
  208. this.banks = res.data.banks;
  209. },
  210. fail: () => {},
  211. complete: () => {}
  212. });
  213. },
  214. getAddress() {
  215. uni.showLoading({
  216. title: "加载中",
  217. mask: true
  218. })
  219. let data;
  220. if (this.addressId == undefined) {
  221. data = {
  222. userid: this.user.id,
  223. orderNo: this.orderNo
  224. };
  225. } else {
  226. data = {
  227. id: this.addressId,
  228. orderNo: this.orderNo
  229. };
  230. }
  231. uni.request({
  232. url: this.webUrl + 'Address',
  233. method: 'POST',
  234. data: data,
  235. header: {
  236. 'content-type': 'application/x-www-form-urlencoded'
  237. },
  238. success: res => {
  239. uni.hideLoading();
  240. if (res.data.result.isSuccess) {
  241. this.showAddress = true;
  242. this.address = res.data.address;
  243. const p = province[res.data.address.province];
  244. this.province = p.label;
  245. const c = city[res.data.address.province][res.data.address.city];
  246. this.city = c.label;
  247. const d = area[res.data.address.province][res.data.address.city][res.data.address.district];
  248. this.district = d.label;
  249. this.Refresh();
  250. this.banks = res.data.banks;
  251. }
  252. },
  253. fail: () => {
  254. uni.hideLoading();
  255. },
  256. complete: () => {
  257. uni.hideLoading();
  258. }
  259. });
  260. },
  261. Refresh() {
  262. let expressArr = [];
  263. let all = 0;
  264. for (let j = 0; j < this.json.length; j++) {
  265. let arr = this.json[j].items;
  266. let cost = 0;
  267. let count = 0;
  268. let totalPrice = 0;
  269. for (let i = 0; i < arr.length; i++) {
  270. //算同类型商品重量
  271. let exist = false;
  272. for (let k = 0; k < expressArr.length; k++) {
  273. if (expressArr[k].id == arr[i].id) {
  274. expressArr[k].weight += arr[i].weight * arr[i].sl * arr[i].unitNum;
  275. expressArr[k].expressFees = arr[i].expressFees;
  276. exist = true;
  277. break
  278. }
  279. }
  280. if (!exist) {
  281. expressArr.push({
  282. "id": arr[i].id,
  283. "weight": arr[i].weight * arr[i].sl * arr[i].unitNum,
  284. "expressFees": arr[i].expressFees
  285. });
  286. }
  287. count++;
  288. totalPrice += parseFloat(arr[i].jg * arr[i].sl);
  289. all += arr[i].jg * arr[i].sl;
  290. }
  291. //计算邮费
  292. for (let l = 0; l < expressArr.length; l++) {
  293. for (let m = 0; m < expressArr[l].expressFees.length; m++) {
  294. if (expressArr[l].expressFees[m].province === this.province) {
  295. cost += this.costExpress(expressArr[l].weight, expressArr[l].expressFees[m], l);
  296. }
  297. }
  298. }
  299. this.json[j].count = count;
  300. this.json[j].totalPrice = (totalPrice + cost).toFixed(2);
  301. this.json[j].expressCost = cost.toFixed(2);
  302. if (!this.mode) {
  303. this.json[j].express = this.address.nickName + " " + this.address.mobile + " " + this.province + " " + this.city +
  304. " " + this.district + " " + this.address.addStr;
  305. }
  306. all += cost;
  307. }
  308. this.allPrice = all.toFixed(2); //返回数据
  309. if (!this.mode) {
  310. this.ExpressCost();
  311. }
  312. },
  313. ExpressCost() {
  314. uni.request({
  315. url: this.webUrl + 'ExpressCost',
  316. method: 'POST',
  317. data: {
  318. user: JSON.stringify(this.user),
  319. data: JSON.stringify(this.json)
  320. },
  321. header: {
  322. 'content-type': 'application/x-www-form-urlencoded'
  323. },
  324. success: res => {},
  325. fail: () => {},
  326. complete: () => {}
  327. });
  328. },
  329. costExpress(weight, express, m) {
  330. if (parseInt(express.first) > 0) {
  331. if (weight > express.weight) {
  332. let n = Math.ceil((weight - express.weight) / express.weight);
  333. return parseFloat(express.first) + parseFloat(express.extend * n);
  334. } else {
  335. return parseFloat(express.first);
  336. }
  337. } else {
  338. return 0;
  339. }
  340. },
  341. order() {
  342. if (!this.showAddress || this.addressStr == null) {
  343. uni.showModal({
  344. content: "请设置收货地址!",
  345. showCancel: false
  346. });
  347. return;
  348. }
  349. uni.request({
  350. url: this.webUrl + 'CheckAgency',
  351. method: 'POST',
  352. data: {
  353. user: JSON.stringify(this.user),
  354. data: JSON.stringify(this.json)
  355. },
  356. header: {
  357. 'content-type': 'application/x-www-form-urlencoded'
  358. },
  359. success: res => {
  360. if (!res.data.result.isSuccess) {
  361. this.showAttr = true;
  362. this.items = res.data.items;
  363. this.toptitle = res.data.result.resultInfo;
  364. } else {
  365. this.showPay = true;
  366. }
  367. },
  368. fail: () => {},
  369. complete: () => {}
  370. });
  371. },
  372. bankPay(val) {
  373. uni.request({
  374. url: this.webUrl + 'BankPayment',
  375. method: 'POST',
  376. data: {
  377. data: JSON.stringify(this.json),
  378. user: JSON.stringify(this.user),
  379. pass: val.pass,
  380. bank: val.bank
  381. },
  382. header: {
  383. 'content-type': 'application/x-www-form-urlencoded'
  384. },
  385. success: (res) => {
  386. uni.hideLoading();
  387. if (res.data.result.isSuccess) {
  388. cart.updateCart([]);
  389. this.showPay = false;
  390. uni.reLaunch({
  391. url: "../orderSuccess/orderSuccess?no=" + this.json[0].no
  392. });
  393. } else {
  394. uni.showToast({
  395. icon: "none",
  396. title: res.data.result.resultInfo
  397. })
  398. }
  399. },
  400. fail: (e) => {
  401. uni.hideLoading();
  402. uni.showToast({
  403. icon: "none",
  404. title: "该订单还未完成支付"
  405. })
  406. }
  407. })
  408. },
  409. wxPay() {
  410. uni.showLoading({
  411. title: "提交中"
  412. })
  413. uni.login({
  414. success: (e) => {
  415. uni.request({
  416. url: this.webUrl + 'Payment',
  417. method: 'POST',
  418. data: {
  419. data: JSON.stringify(this.json),
  420. user: JSON.stringify(this.user),
  421. code: e.code
  422. },
  423. header: {
  424. 'content-type': 'application/x-www-form-urlencoded'
  425. },
  426. success: (res) => {
  427. console.log(res);
  428. uni.hideLoading();
  429. if (res.statusCode !== 200) {
  430. uni.showToast({
  431. icon: "none",
  432. title: "支付失败,请重试!"
  433. })
  434. return;
  435. }
  436. if (res.data.result.isSuccess) {
  437. let paymentData = JSON.parse(res.data.result.resultInfo);
  438. if (paymentData.resultcode == "SUCCESS") {
  439. uni.requestPayment({
  440. timeStamp: paymentData.timestamp.toString(),
  441. nonceStr: paymentData.noncestr,
  442. package: paymentData.package,
  443. signType: 'MD5',
  444. paySign: paymentData.sign,
  445. success: (res) => {
  446. cart.updateCart([]);
  447. uni.redirectTo({
  448. url: "../orderSuccess/orderSuccess?no=" + this.json[0].no
  449. });
  450. },
  451. fail: (res) => {
  452. uni.showToast({
  453. icon: "none",
  454. title: "该订单还未完成支付"
  455. })
  456. },
  457. complete: () => {
  458. this.loading = false;
  459. }
  460. })
  461. } else {
  462. uni.showToast({
  463. icon: "none",
  464. title: "该订单还未完成支付"
  465. })
  466. }
  467. }
  468. },
  469. fail: (e) => {
  470. uni.hideLoading();
  471. uni.showToast({
  472. icon: "none",
  473. title: "该订单还未完成支付"
  474. })
  475. }
  476. })
  477. },
  478. fail: (e) => {
  479. uni.hideLoading();
  480. uni.showModal({
  481. content: "支付失败,原因为: " + e.errMsg,
  482. showCancel: false
  483. })
  484. }
  485. })
  486. }
  487. }
  488. }
  489. </script>
  490. <style>
  491. </style>