pay.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <template>
  2. <view class="uni-flex uni-column cart jz_order order">
  3. <view class="uni-flex uni-column uni-flex-item">
  4. <!-- 列表循环 -->
  5. <view class="uni-flex uni-column uni-flex-item cart-list" v-for="(item,m) in json" :key="item">
  6. <view class="uni-flex uni-column order-address">
  7. <view class=" order-address-box">
  8. <view class="">收货信息</view>
  9. <view class="expressMsg fontWnormal">
  10. {{item.express}}
  11. </view>
  12. </view>
  13. <view class="uni-flex uni-flex-item order-address-line mg">
  14. <image src="../../../static/cart/line.png"></image>
  15. </view>
  16. </view>
  17. <view class="uni-flex uni-column item-shop ">
  18. <!-- 商家 -->
  19. <view class="uni-flex uni-row order-line">
  20. {{item.sj}}
  21. </view>
  22. <!-- 图片产品名称价格数量展示 -->
  23. <view class="uni-flex uni-row order-item" v-for="pl in json[m].items" :key="pl">
  24. <!-- 商品图片 -->
  25. <view class="uni-flex uni-flex-item item-padding item-img">
  26. <image mode="widthFix" :src="pl.img"></image>
  27. </view>
  28. <view class="uni-flex uni-column item-padding uni-flex-item3">
  29. <view class="uni-flex uni-flex-item">
  30. {{pl.cp}}
  31. </view>
  32. <view class="uni-flex uni-flex-item">
  33. <view class="uni-flex text cart-attr" v-for="(attr,n) in pl.attr" :key="attr">
  34. {{attr.name}}:{{attr.value}}
  35. </view>
  36. </view>
  37. <view class="uni-flex uni-row uni-flex-item">
  38. <view class="uni-flex uni-flex-item5 price-red">¥{{pl.jg}}</view>
  39. <view class="uni-flex uni-flex-item ">x{{pl.sl}}</view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="uni-flex uni-row order-line">
  44. 订单编号:<text class="fontWnormal">{{item.no}}</text>
  45. </view>
  46. <view class="uni-flex uni-row order-line">
  47. 配送费用:<text class="price-red">¥{{item.expressCost}}</text>
  48. </view>
  49. <view class="uni-flex uni-row order-line">
  50. 支付金额:<text class="price-red">¥{{allprice}}</text>
  51. </view>
  52. <view class="uni-flex uni-row order-line usermsg">
  53. <view class="usermsg-lf">买家留言:</view>
  54. <view class="fontWnormal usermsg-rt">{{item.message}}</view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="uni-btn-v uni-common-mt">
  60. <button type="primary" @click="weixinPay" :loading="loading">微信支付</button>
  61. </view>
  62. <view class="uni-flex uni-row footer">
  63. <!-- <view class="uni-flex-item uni-flex">付款金额: <text class="price-red">¥{{allprice}}</text></view>
  64. <view class="buttons">
  65. <view class="button" @click='home()'>再逛逛</view>
  66. </view> -->
  67. <view class="uni-flex uni-flex-item">付款金额: <text class="price-red">¥{{allPrice}}</text></view>
  68. <view class="uni-flex ">
  69. <view class="uni-flex uni-flex-item btn" @click='home()'>再逛逛</view>
  70. </view>
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. import {
  76. mapState,
  77. mapMutations
  78. } from 'vuex'
  79. import cart from '../../../common/cart.js';
  80. import smsPopup from '../../../components/uni-popup-sms.vue';
  81. export default {
  82. components: {
  83. smsPopup
  84. },
  85. computed: {
  86. ...mapState(['hasLogin', 'forcedLogin', 'jyyUser']),
  87. allprice: function() {
  88. let allprice = 0;
  89. for (let j = 0; j < this.json.length; j++) {
  90. let arr = this.json[j].items;
  91. for (let i = 0; i < arr.length; i++) {
  92. allprice += arr[i].jg * arr[i].sl;
  93. }
  94. allprice = allprice + parseFloat(this.json[j].expressCost)
  95. }
  96. return allprice.toFixed(2);
  97. }
  98. },
  99. data() {
  100. return {
  101. allPrice: "0.00",
  102. orderNo: "",
  103. loading: false,
  104. json: [],
  105. user: {},
  106. };
  107. },
  108. onLoad(e) {
  109. if (!this.hasLogin) {
  110. uni.navigateTo({
  111. url: '../login/login',
  112. });
  113. } else {
  114. this.user = JSON.parse(this.jyyUser);
  115. this.orderNo = e.orderNo;
  116. this.init();
  117. }
  118. },
  119. onPullDownRefresh() {
  120. this.init();
  121. setTimeout(function() {
  122. uni.stopPullDownRefresh();
  123. }, 1000);
  124. },
  125. methods: {
  126. weixinPay() {
  127. console.log("发起支付");
  128. this.loading = true;
  129. uni.login({
  130. success: (e) => {
  131. console.log("login success", e);
  132. uni.request({
  133. url: this.webUrl + 'Payment',
  134. method: 'POST',
  135. data: {
  136. data: JSON.stringify(this.json),
  137. user: JSON.stringify(this.user)
  138. },
  139. header: {
  140. 'content-type': 'application/x-www-form-urlencoded'
  141. },
  142. success: (res) => {
  143. if (res.statusCode !== 200) {
  144. uni.showModal({
  145. content: "支付失败,请重试!",
  146. showCancel: false
  147. });
  148. return;
  149. }
  150. if (res.data.ret === 0) {
  151. let paymentData = JSON.parse(res.data.payment);
  152. if (paymentData.resultcode == "SUCCESS") {
  153. uni.requestPayment({
  154. timeStamp: paymentData.timestamp.toString(),
  155. nonceStr: paymentData.noncestr,
  156. package: paymentData.package,
  157. signType: 'MD5',
  158. paySign: paymentData.sign,
  159. success: (res) => {
  160. uni.showToast({
  161. title: "支付成功!"
  162. })
  163. uni.navigateTo({
  164. url: "../orderSuccess/orderSuccess"
  165. });
  166. },
  167. fail: (res) => {
  168. uni.showModal({
  169. content: "支付失败,原因为: " + res
  170. .errMsg,
  171. showCancel: false
  172. })
  173. },
  174. complete: () => {
  175. this.loading = false;
  176. }
  177. })
  178. } else {
  179. uni.showModal({
  180. content: "支付失败,原因为: " + paymentData.errcode + paymentData.errcodedes,
  181. showCancel: false
  182. })
  183. }
  184. } else {
  185. uni.showModal({
  186. content: res.data.desc,
  187. showCancel: false
  188. })
  189. }
  190. },
  191. fail: (e) => {
  192. this.loading = false;
  193. uni.showModal({
  194. content: "支付失败,原因为: " + e.errMsg,
  195. showCancel: false
  196. })
  197. }
  198. })
  199. },
  200. fail: (e) => {
  201. this.loading = false;
  202. uni.showModal({
  203. content: "支付失败,原因为: " + e.errMsg,
  204. showCancel: false
  205. })
  206. }
  207. })
  208. },
  209. init() {
  210. if (this.orderNo == undefined) {
  211. this.json = cart.getOrder();
  212. } else {
  213. this.getData();
  214. }
  215. setTimeout(() => {
  216. this.price();
  217. }, 500)
  218. },
  219. getData() {
  220. uni.showLoading({
  221. title: "加载中"
  222. })
  223. uni.request({
  224. url: this.webUrl + 'GetOrder',
  225. method: 'POST',
  226. data: {
  227. userid: this.user.id,
  228. orderNo: this.orderNo
  229. },
  230. header: {
  231. 'content-type': 'application/x-www-form-urlencoded'
  232. },
  233. success: res => {
  234. uni.hideLoading();
  235. this.json = [];
  236. this.json.push(res.data.uniOrder);
  237. let express = this.json[0].express;
  238. let index = express.indexOf(" ");
  239. this.mobile = express.slice(index, index + 12);
  240. this.tip = this.mobile.substr(0, 3) + "******" + this.mobile.substr(10, 2);
  241. },
  242. fail: () => {},
  243. complete: () => {}
  244. });
  245. },
  246. price() {
  247. let all = 0;
  248. for (let j = 0; j < this.json.length; j++) {
  249. all = parseFloat(this.json[j].totalPrice)
  250. }
  251. this.allPrice = all.toFixed(2); //返回数据
  252. },
  253. home() {
  254. uni.switchTab({
  255. url: '../../home/home'
  256. });
  257. }
  258. }
  259. }
  260. </script>
  261. <style>
  262. .order .footer .button {
  263. width: 160upx;
  264. height: 64upx;
  265. margin: 0 8upx;
  266. color: #fff;
  267. line-height: 64upx;
  268. background: #f40;
  269. border-radius: 16px;
  270. padding: 0;
  271. font-size: 28upx;
  272. display: inline-block;
  273. text-align: center;
  274. }
  275. .mg {
  276. margin-top: 10upx;
  277. width: 100%;
  278. }
  279. .mg image {
  280. width: 100%;
  281. height: 10upx;
  282. }
  283. .expressMsg {
  284. width: calc(100% - 20upx);
  285. }
  286. </style>