pay.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <template>
  2. <view class="app">
  3. <view class="price-box">
  4. <text>支付金额</text>
  5. <text class="price">{{ money }}</text>
  6. </view>
  7. <view class="pay-type-list">
  8. <view class="type-item b-b" @click="changePayType(1)">
  9. <text class="icon iconfont iconweixin"></text>
  10. <view class="con">
  11. <text class="tit">微信支付</text>
  12. <text>推荐使用微信支付</text>
  13. </view>
  14. <label class="radio"><radio value="" color="#5dbc7c" :checked="payType == 1"></radio></label>
  15. </view>
  16. <!-- #ifdef APP-PLUS -->
  17. <view class="type-item b-b" @click="changePayType(2)">
  18. <text class="icon iconfont iconzhifubao"></text>
  19. <view class="con"><text class="tit">支付宝支付</text></view>
  20. <label class="radio"><radio value="" color="#5dbc7c" :checked="payType == 2"></radio></label>
  21. </view>
  22. <!-- #endif -->
  23. <view class="type-item" @click="changePayType(3)">
  24. <text class="icon iconfont iconyue"></text>
  25. <view class="con">
  26. <text class="tit">余额支付</text>
  27. <text>可用余额 ¥{{ now_money }}</text>
  28. </view>
  29. <label class="radio"><radio value="" color="#5dbc7c" :checked="payType == 3"></radio></label>
  30. </view>
  31. </view>
  32. <text class="mix-btn" :class="{ clickbg: payLoding }" @click="!payLoding ? confirm() : ''">确认支付</text>
  33. </view>
  34. </template>
  35. <script>
  36. import { balance } from '@/api/wallet.js';
  37. // import { createOrderkey,computedOrderkey,orderPay } from '@/api/order.js';
  38. import { mapState } from 'vuex';
  39. export default {
  40. data() {
  41. return {
  42. payType: 1, //支付类型
  43. // #ifdef H5
  44. payName: 'weixin',
  45. // #endif
  46. // #ifdef MP-WEIXIN
  47. payName: 'weixin',
  48. // #endif
  49. orderInfo: {},
  50. money: 0.0, //订单金额
  51. now_money: 0.0, //余额
  52. orderKey: '',
  53. orderId: '', //保存订单id
  54. payLoding: false, //判断是否支付中
  55. type: '', //判断是否从订单中进入
  56. // #ifdef H5
  57. froms: '', //保存h5中数据来源对象
  58. // #endif
  59. pinkid: '' //保存拼团商品id
  60. };
  61. },
  62. computed: {
  63. // #ifdef H5
  64. ...mapState(['weichatObj'])
  65. // #endif
  66. },
  67. onLoad(options) {
  68. if (options.type == 1) {
  69. this.type = 1;
  70. this.orderId = options.ordid;
  71. this.money = options.money;
  72. } else {
  73. this.orderKey = options.key;
  74. let prepage = this.$api.prePage();
  75. computedOrderkey({
  76. orderkey: this.orderKey,
  77. couponId: prepage.couponChecked.id, //优惠券编号
  78. addressId: prepage.addressData.id, //地址编号
  79. useIntegral: prepage.checkedPoints ? 1 : 0
  80. }).then(({ data }) => {
  81. // 获取支付金额
  82. this.money = data.result.pay_price;
  83. });
  84. }
  85. // 保存pinkid
  86. if (options.pinkid) {
  87. this.pinkid = options.pinkid;
  88. }
  89. // 载入余额
  90. balance({}).then(({ data }) => {
  91. // 获取余额
  92. this.now_money = data.now_money;
  93. });
  94. },
  95. methods: {
  96. //选择支付方式
  97. changePayType(type) {
  98. this.payType = type;
  99. if (this.payType == 1) {
  100. this.payName = 'weixin';
  101. }
  102. if (this.payType == 2) {
  103. this.payName = 'ali';
  104. }
  105. if (this.payType == 3) {
  106. this.payName = 'yue';
  107. }
  108. },
  109. // 支付金额
  110. orderMoneyPay() {
  111. let obj = this;
  112. orderPay({
  113. uni: obj.orderId,
  114. // #ifdef H5
  115. from: obj.froms ? 'weixin' : 'H5', //来源
  116. // #endif
  117. // #ifdef MP-WEIXIN
  118. from: 'routine', //来源
  119. // #endif
  120. // #ifdef APP-PLUS
  121. from: 'app', //来源
  122. // #endif
  123. paytype: obj.payName //支付类型 weixin-微信 yue-余额
  124. })
  125. .then(e => {
  126. // 判断是否为余额支付
  127. if (obj.payName == 'yue' && e.data.status == 'SUCCESS') {
  128. if (e.status == 200) {
  129. obj.paySuccessTo();
  130. } else {
  131. obj.$api.msg(msg);
  132. }
  133. }
  134. if (obj.payName == 'weixin' || obj.payName == 'routine') {
  135. let da = e.data.result.jsConfig;
  136. let data = {
  137. // #ifdef H5
  138. timestamp: da.timestamp,
  139. // #endif
  140. // #ifdef MP
  141. timeStamp: da.timestamp,
  142. // #endif
  143. nonceStr: da.nonceStr,
  144. package: da.package,
  145. signType: da.signType,
  146. paySign: da.paySign,
  147. success: function(res) {
  148. obj.paySuccessTo();
  149. },
  150. fail: () => {
  151. uni.navigateTo({
  152. url: '/pages/order/order?state=0'
  153. });
  154. }
  155. };
  156. // #ifdef H5
  157. if(obj.payName == 'weixin'){
  158. obj.weichatObj.chooseWXPay(data);
  159. }
  160. // #endif
  161. // #ifdef MP-WEIXIN
  162. if(obj.payName == 'routine'){
  163. wx.requestPayment(data);
  164. }
  165. // #endif
  166. }
  167. uni.hideLoading();
  168. obj.payLoding = false;
  169. })
  170. .catch(e => {
  171. // 支付完成
  172. uni.hideLoading();
  173. obj.payLoding = false;
  174. console.log(e);
  175. });
  176. },
  177. // 支付成功跳转
  178. paySuccessTo() {
  179. uni.hideLoading();
  180. uni.redirectTo({
  181. url: '/pages/money/paySuccess?orderid=' + this.orderId
  182. });
  183. },
  184. //确认支付
  185. confirm: async function() {
  186. let obj = this;
  187. uni.showLoading({
  188. title: '支付中',
  189. mask: true
  190. })
  191. // 判断是否余额不足
  192. if (obj.payName == 'yue' && +obj.now_money < obj.money) {
  193. uni.showModal({
  194. title: '提示',
  195. content: '账户余额不足!',
  196. showCancel: false,
  197. success: res => {},
  198. fail: () => {},
  199. complete: () => {}
  200. });
  201. return;
  202. }
  203. // 支付中
  204. obj.payLoding = true;
  205. // #ifdef H5
  206. // 获取当前是否为微信浏览器
  207. obj.froms = uni.getStorageSync('weichatBrowser') || '';
  208. // #endif
  209. // 判断是否为未支付订单中跳转进入
  210. if (obj.type != 1) {
  211. // 初次生成订单
  212. obj.firstCreateOrder();
  213. } else {
  214. // 已经生成订单未支付
  215. obj.orderMoneyPay();
  216. }
  217. },
  218. // 初次订单创建
  219. firstCreateOrder() {
  220. let obj = this;
  221. // 获取下单页面数据
  222. let prepage = obj.$api.prePage();
  223. let data = {
  224. real_name: prepage.addressData.real_name, //联系人名称
  225. phone: prepage.addressData.phone, //联系人号码
  226. couponId: prepage.couponChecked.id, //优惠券编号
  227. addressId: prepage.addressData.id, //支付地址id
  228. useIntegral: prepage.checkedPoints ? 1 : 0, //是否积分抵扣1为是0为否
  229. payType: obj.payName, //支付类型 weixin-微信 yue-余额
  230. mark: prepage.desc, //备注
  231. // #ifdef H5
  232. from: obj.froms ? 'weixin' : 'H5', //来源
  233. // #endif
  234. // #ifdef MP-WEIXIN
  235. from: 'routine', //来源
  236. // #endif
  237. // #ifdef APP-PLUS
  238. from: 'app', //来源
  239. // #endif
  240. shipping_type: 1 //提货方式 1 快递 2自提
  241. };
  242. // 判断是否拼团商品
  243. if (obj.pinkid) {
  244. data.pinkId = obj.pinkid;
  245. }
  246. // 生成订单
  247. createOrderkey(data, obj.orderKey)
  248. .then(({ data, status, msg }) => {
  249. // 判断是否支付失败
  250. if (data.status == 'ORDER_EXIST') {
  251. uni.showModal({
  252. title: '提示',
  253. content: msg,
  254. showCancel: false
  255. });
  256. uni.hideLoading();
  257. obj.payLoding = false;
  258. return;
  259. }
  260. // 保存订单号
  261. obj.orderId = data.result.orderId;
  262. // 判断是否为余额支付
  263. if (obj.payName == 'yue') {
  264. if (status == 200 && data.status == 'SUCCESS') {
  265. obj.paySuccessTo();
  266. } else {
  267. obj.$api.msg(msg);
  268. }
  269. } else {
  270. // 立即支付
  271. obj.orderMoneyPay();
  272. }
  273. })
  274. .catch(e => {
  275. uni.hideLoading();
  276. obj.payLoding = false;
  277. console.log(e);
  278. });
  279. }
  280. }
  281. };
  282. </script>
  283. <style lang="scss">
  284. .app {
  285. width: 100%;
  286. }
  287. .price-box {
  288. background-color: #fff;
  289. height: 265upx;
  290. display: flex;
  291. flex-direction: column;
  292. justify-content: center;
  293. align-items: center;
  294. font-size: 28upx;
  295. color: #909399;
  296. .price {
  297. font-size: 50upx;
  298. color: #303133;
  299. margin-top: 12upx;
  300. &:before {
  301. content: '¥';
  302. font-size: 40upx;
  303. }
  304. }
  305. }
  306. .pay-type-list {
  307. margin-top: 20upx;
  308. background-color: #fff;
  309. padding-left: 60upx;
  310. .type-item {
  311. height: 120upx;
  312. padding: 20upx 0;
  313. display: flex;
  314. justify-content: space-between;
  315. align-items: center;
  316. padding-right: 60upx;
  317. font-size: 30upx;
  318. position: relative;
  319. }
  320. .icon {
  321. width: 100upx;
  322. font-size: 52upx;
  323. }
  324. .iconyue {
  325. color: #fe8e2e;
  326. }
  327. .iconweixin {
  328. color: #36cb59;
  329. }
  330. .iconzhifubao {
  331. color: #01aaef;
  332. }
  333. .tit {
  334. font-size: $font-lg;
  335. color: $font-color-dark;
  336. margin-bottom: 4upx;
  337. }
  338. .con {
  339. flex: 1;
  340. display: flex;
  341. flex-direction: column;
  342. font-size: $font-sm;
  343. color: $font-color-light;
  344. }
  345. }
  346. .mix-btn {
  347. display: flex;
  348. align-items: center;
  349. justify-content: center;
  350. width: 630upx;
  351. height: 80upx;
  352. margin: 80upx auto 30upx;
  353. font-size: $font-lg;
  354. color: #fff;
  355. background-color: $base-color;
  356. border-radius: 10upx;
  357. /* box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4); */
  358. }
  359. .clickbg {
  360. background-color: $color-gray !important;
  361. }
  362. </style>