|
@@ -5,7 +5,6 @@
|
|
|
<text class="price">{{ money }}</text>
|
|
|
</view>
|
|
|
<view class="pay-type-list">
|
|
|
- <!-- v-if="ispg == 'android'" -->
|
|
|
<!-- #ifdef APP-PLUS -->
|
|
|
<!-- <view class="type-item b-b" @click="changePayType(1)">
|
|
|
<text class="icon iconfont iconweixin"></text>
|
|
@@ -18,7 +17,9 @@
|
|
|
<view class="type-item b-b" @click="changePayType(2)">
|
|
|
<text class="icon iconfont iconzhifubao"></text>
|
|
|
<view class="con"><text class="tit">支付宝支付</text></view>
|
|
|
- <label class="radio"><radio value="" color="#5dbc7c" :checked="payType == 2"></radio></label>
|
|
|
+ <label class="radio">
|
|
|
+ <radio value="" color="#5dbc7c" :checked="payType == 2"></radio>
|
|
|
+ </label>
|
|
|
</view>
|
|
|
<!-- #endif -->
|
|
|
<view class="type-item" @click="changePayType(3)">
|
|
@@ -27,7 +28,9 @@
|
|
|
<text class="tit">余额支付</text>
|
|
|
<text>可用余额 ¥{{ now_money }}</text>
|
|
|
</view>
|
|
|
- <label class="radio"><radio value="" color="#5dbc7c" :checked="payType == 3"></radio></label>
|
|
|
+ <label class="radio">
|
|
|
+ <radio value="" color="#5dbc7c" :checked="payType == 3"></radio>
|
|
|
+ </label>
|
|
|
</view>
|
|
|
</view>
|
|
|
<text class="mix-btn" :class="{ clickbg: payLoding }" @click="!payLoding ? confirm() : ''">确认支付</text>
|
|
@@ -35,394 +38,478 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { balance } from '@/api/wallet.js';
|
|
|
-import { createOrderkey, computedOrderkey, orderPay } from '@/api/order.js';
|
|
|
-import { mapState } from 'vuex';
|
|
|
-import { isIOS } from '@/utils/platform.js';
|
|
|
-export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- payType: 3, //支付类型
|
|
|
- payName: 'yue',
|
|
|
- orderInfo: {},
|
|
|
- money: 0.0, //订单金额
|
|
|
- now_money: 0.0, //余额
|
|
|
- orderKey: '',
|
|
|
- orderId: '', //保存订单id
|
|
|
- payLoding: false, //判断是否支付中
|
|
|
- type: '', //判断是否从订单中进入
|
|
|
+ import {
|
|
|
+ balance
|
|
|
+ } from '@/api/wallet.js';
|
|
|
+ import {
|
|
|
+ createOrderkey,
|
|
|
+ computedOrderkey,
|
|
|
+ orderPay,
|
|
|
+ nftPay
|
|
|
+ } from '@/api/order.js';
|
|
|
+ import {
|
|
|
+ mapState
|
|
|
+ } from 'vuex';
|
|
|
+ import {
|
|
|
+ isIOS
|
|
|
+ } from '@/utils/platform.js';
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ payType: 3, //支付类型
|
|
|
+ payName: 'yue',
|
|
|
+ orderInfo: {},
|
|
|
+ money: 0.0, //订单金额
|
|
|
+ now_money: 0.0, //余额
|
|
|
+ orderKey: '',
|
|
|
+ orderId: '', //保存订单id
|
|
|
+ payLoding: false, //判断是否支付中
|
|
|
+ type: '', //1为已创建过订单2为未创建过订单
|
|
|
+ // #ifdef H5
|
|
|
+ froms: '', //保存h5中数据来源对象
|
|
|
+ // #endif
|
|
|
+ pinkid: '', //保存拼团商品id
|
|
|
+ orderType: 1 //1为普通订单2为市场订单
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
// #ifdef H5
|
|
|
- froms: '', //保存h5中数据来源对象
|
|
|
+ ...mapState(['weichatObj'])
|
|
|
// #endif
|
|
|
- pinkid: '', //保存拼团商品id
|
|
|
- ispg: '' //是否是苹果
|
|
|
- };
|
|
|
- },
|
|
|
- computed: {
|
|
|
- // #ifdef H5
|
|
|
- ...mapState(['weichatObj'])
|
|
|
- // #endif
|
|
|
- },
|
|
|
- onLoad(options) {
|
|
|
- console.log(options, 'options');
|
|
|
- this.ispg = uni.getSystemInfoSync().platform;
|
|
|
- console.log(this.ispg);
|
|
|
- if (options.type == 1) {
|
|
|
- this.type = 1;
|
|
|
- this.orderId = options.ordid;
|
|
|
- this.money = options.money;
|
|
|
- } else {
|
|
|
- this.orderKey = options.key;
|
|
|
- let prepage = this.$api.prePage();
|
|
|
- computedOrderkey({
|
|
|
- orderkey: this.orderKey,
|
|
|
- couponId: prepage.couponChecked.id, //优惠券编号
|
|
|
- addressId: prepage.addressData.id, //地址编号
|
|
|
- useIntegral: prepage.checkedPoints ? 1 : 0
|
|
|
- }).then(({ data }) => {
|
|
|
- // 获取支付金额
|
|
|
- this.money = data.result.pay_price;
|
|
|
- });
|
|
|
- }
|
|
|
- // 保存pinkid
|
|
|
- if (options.pinkid) {
|
|
|
- this.pinkid = options.pinkid;
|
|
|
- }
|
|
|
- // 载入余额
|
|
|
- balance({}).then(({ data }) => {
|
|
|
- // 获取余额
|
|
|
- this.now_money = data.now_money;
|
|
|
- });
|
|
|
- },
|
|
|
- methods: {
|
|
|
- //选择支付方式
|
|
|
- changePayType(type) {
|
|
|
- this.payType = type;
|
|
|
- if (this.payType == 1) {
|
|
|
- this.payName = 'weixin';
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ console.log(options, 'options');
|
|
|
+ this.type = options.type;
|
|
|
+ this.orderType = options.orderType;
|
|
|
+ // 是否已经创建过订单
|
|
|
+ if (options.type == 1) {
|
|
|
+ this.orderId = options.ordid;
|
|
|
+ this.money = options.money;
|
|
|
}
|
|
|
- if (this.payType == 2) {
|
|
|
- this.payName = 'ali';
|
|
|
+ // 判断是否市场订单
|
|
|
+ if(this.orderType=2){
|
|
|
+ this.orderId = options.ordid;
|
|
|
}
|
|
|
- if (this.payType == 3) {
|
|
|
- this.payName = 'yue';
|
|
|
+ // 判断是否未创建过订单
|
|
|
+ if (options.type == 2) {
|
|
|
+ this.orderKey = options.key;
|
|
|
+ let prepage = this.$api.prePage();
|
|
|
+ computedOrderkey({
|
|
|
+ orderkey: this.orderKey,
|
|
|
+ couponId: prepage.couponChecked.id, //优惠券编号
|
|
|
+ addressId: prepage.addressData.id, //地址编号
|
|
|
+ useIntegral: prepage.checkedPoints ? 1 : 0
|
|
|
+ }).then(({
|
|
|
+ data
|
|
|
+ }) => {
|
|
|
+ // 获取支付金额
|
|
|
+ this.money = data.result.pay_price;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ // 保存pinkid
|
|
|
+ if (options.pinkid) {
|
|
|
+ this.pinkid = options.pinkid;
|
|
|
}
|
|
|
+ // 载入余额
|
|
|
+ balance({}).then(({
|
|
|
+ data
|
|
|
+ }) => {
|
|
|
+ // 获取余额
|
|
|
+ this.now_money = data.now_money;
|
|
|
+ });
|
|
|
},
|
|
|
- // 支付金额
|
|
|
- orderMoneyPay() {
|
|
|
- let obj = this;
|
|
|
- orderPay({
|
|
|
- uni: obj.orderId,
|
|
|
- // #ifdef H5
|
|
|
- from: obj.froms ? 'weixin' : 'H5', //来源
|
|
|
- // #endif
|
|
|
- // #ifdef MP-WEIXIN
|
|
|
- from: 'routine', //来源
|
|
|
- // #endif
|
|
|
- // #ifdef APP-PLUS
|
|
|
- from: 'app', //来源
|
|
|
- // #endif
|
|
|
- paytype: obj.payName //支付类型 weixin-微信 yue-余额
|
|
|
- })
|
|
|
- .then(e => {
|
|
|
- // 判断是否为余额支付
|
|
|
- if (obj.payName == 'yue' && e.data.status == 'SUCCESS') {
|
|
|
- if (e.status == 200) {
|
|
|
- obj.paySuccessTo();
|
|
|
- } else {
|
|
|
- obj.$api.msg(msg);
|
|
|
+ methods: {
|
|
|
+ //选择支付方式
|
|
|
+ changePayType(type) {
|
|
|
+ this.payType = type;
|
|
|
+ if (this.payType == 1) {
|
|
|
+ this.payName = 'weixin';
|
|
|
+ }
|
|
|
+ if (this.payType == 2) {
|
|
|
+ this.payName = 'ali';
|
|
|
+ }
|
|
|
+ if (this.payType == 3) {
|
|
|
+ this.payName = 'yue';
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 支付金额
|
|
|
+ orderMoneyPay() {
|
|
|
+ let obj = this;
|
|
|
+ orderPay({
|
|
|
+ uni: obj.orderId,
|
|
|
+ // #ifdef H5
|
|
|
+ from: obj.froms ? 'weixin' : 'H5', //来源
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP-WEIXIN
|
|
|
+ from: 'routine', //来源
|
|
|
+ // #endif
|
|
|
+ // #ifdef APP-PLUS
|
|
|
+ from: 'app', //来源
|
|
|
+ // #endif
|
|
|
+ paytype: obj.payName //支付类型 weixin-微信 yue-余额
|
|
|
+ })
|
|
|
+ .then(e => {
|
|
|
+ // 判断是否为余额支付
|
|
|
+ if (obj.payName == 'yue' && e.data.status == 'SUCCESS') {
|
|
|
+ if (e.status == 200) {
|
|
|
+ obj.paySuccessTo();
|
|
|
+ } else {
|
|
|
+ obj.$api.msg(msg);
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
- //#ifndef APP-PLUS
|
|
|
- if (obj.payName == 'weixin' || obj.payName == 'routine') {
|
|
|
- let da = e.data.result.jsConfig;
|
|
|
- console.log(da, '支付打印');
|
|
|
- let data = {
|
|
|
+ //#ifndef APP-PLUS
|
|
|
+ if (obj.payName == 'weixin' || obj.payName == 'routine') {
|
|
|
+ let da = e.data.result.jsConfig;
|
|
|
+ console.log(da, '支付打印');
|
|
|
+ let data = {
|
|
|
+ // #ifdef H5
|
|
|
+ timestamp: da.timestamp,
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP
|
|
|
+ timeStamp: da.timestamp,
|
|
|
+ // #endif
|
|
|
+ nonceStr: da.nonceStr,
|
|
|
+ package: da.package,
|
|
|
+ signType: da.signType,
|
|
|
+ paySign: da.paySign,
|
|
|
+ success: function(res) {
|
|
|
+ obj.paySuccessTo();
|
|
|
+ },
|
|
|
+ fail: () => {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/order/order?state=0'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ };
|
|
|
// #ifdef H5
|
|
|
- timestamp: da.timestamp,
|
|
|
- // #endif
|
|
|
- // #ifdef MP
|
|
|
- timeStamp: da.timestamp,
|
|
|
+ if (obj.payName == 'weixin') {
|
|
|
+ obj.weichatObj.chooseWXPay(data);
|
|
|
+ }
|
|
|
// #endif
|
|
|
- nonceStr: da.nonceStr,
|
|
|
- package: da.package,
|
|
|
- signType: da.signType,
|
|
|
- paySign: da.paySign,
|
|
|
- success: function(res) {
|
|
|
- obj.paySuccessTo();
|
|
|
- },
|
|
|
- fail: () => {
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/order/order?state=0'
|
|
|
- });
|
|
|
+ // #ifdef MP-WEIXIN
|
|
|
+ if (obj.payName == 'routine') {
|
|
|
+ wx.requestPayment(data);
|
|
|
}
|
|
|
- };
|
|
|
- // #ifdef H5
|
|
|
- if (obj.payName == 'weixin') {
|
|
|
- obj.weichatObj.chooseWXPay(data);
|
|
|
+ // #endif
|
|
|
}
|
|
|
// #endif
|
|
|
- // #ifdef MP-WEIXIN
|
|
|
- if (obj.payName == 'routine') {
|
|
|
- wx.requestPayment(data);
|
|
|
+ //#ifdef APP-PLUS
|
|
|
+ if (obj.payName == 'weixin' || obj.payName == 'routine') {
|
|
|
+ let da = e.data.result.jsConfig;
|
|
|
+ console.log('--da--', da);
|
|
|
+ let data = {
|
|
|
+ appid: da.appid,
|
|
|
+ noncestr: da.noncestr,
|
|
|
+ package: da.package,
|
|
|
+ partnerid: da.partnerid,
|
|
|
+ prepayid: da.prepayid,
|
|
|
+ timestamp: da.timestamp,
|
|
|
+ sign: da.sign
|
|
|
+ };
|
|
|
+ console.log('--data--', data);
|
|
|
+ uni.requestPayment({
|
|
|
+ provider: 'wxpay',
|
|
|
+ orderInfo: data,
|
|
|
+ success(res) {
|
|
|
+ console.log(res);
|
|
|
+ uni.showToast({
|
|
|
+ title: '支付成功',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ obj.paySuccessTo();
|
|
|
+ },
|
|
|
+ fail(res) {
|
|
|
+ console.log(res, '失败');
|
|
|
+ }
|
|
|
+ });
|
|
|
}
|
|
|
- // #endif
|
|
|
- }
|
|
|
- // #endif
|
|
|
- //#ifdef APP-PLUS
|
|
|
- if (obj.payName == 'weixin' || obj.payName == 'routine') {
|
|
|
- let da = e.data.result.jsConfig;
|
|
|
- console.log('--da--', da);
|
|
|
- let data = {
|
|
|
- appid: da.appid,
|
|
|
- noncestr: da.noncestr,
|
|
|
- package: da.package,
|
|
|
- partnerid: da.partnerid,
|
|
|
- prepayid: da.prepayid,
|
|
|
- timestamp: da.timestamp,
|
|
|
- sign: da.sign
|
|
|
- };
|
|
|
- console.log('--data--', data);
|
|
|
- uni.requestPayment({
|
|
|
- provider: 'wxpay',
|
|
|
- orderInfo: data,
|
|
|
- success(res) {
|
|
|
- console.log(res);
|
|
|
- uni.showToast({
|
|
|
- title: '支付成功',
|
|
|
- duration: 2000
|
|
|
- });
|
|
|
- obj.paySuccessTo();
|
|
|
- },
|
|
|
- fail(res) {
|
|
|
- console.log(res, '失败');
|
|
|
- }
|
|
|
- });
|
|
|
+ if (obj.payName == 'ali') {
|
|
|
+ const url = e.data.result.jsConfig;
|
|
|
+ console.log(url, 'url');
|
|
|
+ uni.requestPayment({
|
|
|
+ provider: 'alipay',
|
|
|
+ orderInfo: url,
|
|
|
+ success: res => {
|
|
|
+ console.log(res);
|
|
|
+ uni.showToast({
|
|
|
+ title: '支付成功',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ obj.paySuccessTo();
|
|
|
+ },
|
|
|
+ fail: e => {
|
|
|
+ console.log(e);
|
|
|
+ },
|
|
|
+ complete: () => {}
|
|
|
+ });
|
|
|
+ obj.payLoding = false;
|
|
|
+ }
|
|
|
+ //#endif
|
|
|
+ uni.hideLoading();
|
|
|
+ obj.payLoding = false;
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ // 支付完成
|
|
|
+ uni.hideLoading();
|
|
|
+ obj.payLoding = false;
|
|
|
+ console.log(e);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 支付成功跳转
|
|
|
+ paySuccessTo() {
|
|
|
+ uni.hideLoading();
|
|
|
+ uni.redirectTo({
|
|
|
+ url: '/pages/money/paySuccess?orderid=' + this.orderId
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //确认支付
|
|
|
+ confirm: async function() {
|
|
|
+ let obj = this;
|
|
|
+ // 判断是否余额不足
|
|
|
+ if (obj.payName == 'yue' && +obj.now_money < obj.money) {
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: '账户余额不足!',
|
|
|
+ showCancel: false,
|
|
|
+ success: res => {},
|
|
|
+ fail: () => {},
|
|
|
+ complete: () => {}
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ uni.showLoading({
|
|
|
+ title: '支付中',
|
|
|
+ mask: true
|
|
|
+ });
|
|
|
+ // 支付中
|
|
|
+ obj.payLoding = true;
|
|
|
+ // 判断是否普通订单
|
|
|
+ if (obj.orderType == 1) {
|
|
|
+ obj.orderPayBase();
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 判断是否市场订单
|
|
|
+ if (obj.orderType == 2) {
|
|
|
+ obj.orderPayNew();
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ // 市场订单
|
|
|
+ orderPayNew() {
|
|
|
+ const obj = this;
|
|
|
+ nftPay({
|
|
|
+ pay_type: obj.payName
|
|
|
+ }, obj.orderId).then(res => {
|
|
|
+ obj.payLoding = false;
|
|
|
+ uni.hideLoading()
|
|
|
+ if (obj.payName == 'yue') {
|
|
|
+ obj.paySuccessTo();
|
|
|
}
|
|
|
+ // #ifdef APP-PLUS
|
|
|
if (obj.payName == 'ali') {
|
|
|
- const url = e.data.result.jsConfig;
|
|
|
+ const url = res.data.payConfig;
|
|
|
console.log(url, 'url');
|
|
|
uni.requestPayment({
|
|
|
provider: 'alipay',
|
|
|
orderInfo: url,
|
|
|
success: res => {
|
|
|
- console.log(res);
|
|
|
- uni.showToast({
|
|
|
- title: '支付成功',
|
|
|
- duration: 2000
|
|
|
- });
|
|
|
obj.paySuccessTo();
|
|
|
},
|
|
|
fail: e => {
|
|
|
+ uni.showModal({
|
|
|
+ title: '错误',
|
|
|
+ content: '未成功支付',
|
|
|
+ showCancel: false,
|
|
|
+ });
|
|
|
console.log(e);
|
|
|
},
|
|
|
- complete: () => {}
|
|
|
});
|
|
|
- obj.payLoding = false;
|
|
|
}
|
|
|
- //#endif
|
|
|
- uni.hideLoading();
|
|
|
+ // #endif
|
|
|
+ }).catch(() => {
|
|
|
obj.payLoding = false;
|
|
|
})
|
|
|
- .catch(e => {
|
|
|
- // 支付完成
|
|
|
- uni.hideLoading();
|
|
|
- obj.payLoding = false;
|
|
|
- console.log(e);
|
|
|
- });
|
|
|
- },
|
|
|
- // 支付成功跳转
|
|
|
- paySuccessTo() {
|
|
|
- uni.hideLoading();
|
|
|
- uni.redirectTo({
|
|
|
- url: '/pages/money/paySuccess?orderid=' + this.orderId
|
|
|
- });
|
|
|
- },
|
|
|
- //确认支付
|
|
|
- confirm: async function() {
|
|
|
- let obj = this;
|
|
|
-
|
|
|
- // 判断是否余额不足
|
|
|
- if (obj.payName == 'yue' && +obj.now_money < obj.money) {
|
|
|
- uni.showModal({
|
|
|
- title: '提示',
|
|
|
- content: '账户余额不足!',
|
|
|
- showCancel: false,
|
|
|
- success: res => {},
|
|
|
- fail: () => {},
|
|
|
- complete: () => {}
|
|
|
- });
|
|
|
- return;
|
|
|
- }
|
|
|
- uni.showLoading({
|
|
|
- title: '支付中',
|
|
|
- mask: true
|
|
|
- });
|
|
|
- // 支付中
|
|
|
- obj.payLoding = true;
|
|
|
- // #ifdef H5
|
|
|
- // 获取当前是否为微信浏览器
|
|
|
- obj.froms = uni.getStorageSync('weichatBrowser') || '';
|
|
|
- // #endif
|
|
|
- // 判断是否为未支付订单中跳转进入
|
|
|
- if (obj.type != 1) {
|
|
|
- // 初次生成订单
|
|
|
- obj.firstCreateOrder();
|
|
|
- } else {
|
|
|
- // 已经生成订单未支付
|
|
|
- obj.orderMoneyPay();
|
|
|
- }
|
|
|
- },
|
|
|
- // 初次订单创建
|
|
|
- firstCreateOrder() {
|
|
|
- let obj = this;
|
|
|
- // 获取下单页面数据
|
|
|
- let prepage = obj.$api.prePage();
|
|
|
-
|
|
|
- let data = {
|
|
|
- real_name: prepage.addressData.real_name, //联系人名称
|
|
|
- phone: prepage.addressData.phone, //联系人号码
|
|
|
- couponId: prepage.couponChecked.id, //优惠券编号
|
|
|
- addressId: prepage.addressData.id, //支付地址id
|
|
|
- useIntegral: prepage.checkedPoints ? 1 : 0, //是否积分抵扣1为是0为否
|
|
|
- payType: obj.payName, //支付类型 weixin-微信 yue-余额
|
|
|
- mark: prepage.desc, //备注
|
|
|
+ return
|
|
|
+ },
|
|
|
+ // 普通订单
|
|
|
+ orderPayBase() {
|
|
|
+ const obj = this;
|
|
|
// #ifdef H5
|
|
|
- from: obj.froms ? 'weixin' : 'H5', //来源
|
|
|
- // #endif
|
|
|
- // #ifdef MP-WEIXIN
|
|
|
- from: 'routine', //来源
|
|
|
- // #endif
|
|
|
- // #ifdef APP-PLUS
|
|
|
- from: 'app', //来源
|
|
|
+ // 获取当前是否为微信浏览器
|
|
|
+ obj.froms = uni.getStorageSync('weichatBrowser') || '';
|
|
|
// #endif
|
|
|
- shipping_type: 1 //提货方式 1 快递 2自提
|
|
|
- };
|
|
|
- // 判断是否拼团商品
|
|
|
- if (obj.pinkid) {
|
|
|
- data.pinkId = obj.pinkid;
|
|
|
- }
|
|
|
- // 生成订单
|
|
|
- createOrderkey(data, obj.orderKey)
|
|
|
- .then(({ data, status, msg }) => {
|
|
|
- console.log(status);
|
|
|
- // 判断是否支付失败
|
|
|
- if (data.status == 'ORDER_EXIST') {
|
|
|
- uni.showModal({
|
|
|
- title: '提示',
|
|
|
- content: msg,
|
|
|
- showCancel: false
|
|
|
- });
|
|
|
- uni.hideLoading();
|
|
|
- obj.payLoding = false;
|
|
|
- return;
|
|
|
- }
|
|
|
- // 保存订单号
|
|
|
- obj.orderId = data.result.orderId;
|
|
|
- // 判断是否为余额支付
|
|
|
- if (obj.payName == 'yue') {
|
|
|
- if (status == 200) {
|
|
|
- obj.paySuccessTo();
|
|
|
+ // 判断是否为未支付订单中跳转进入
|
|
|
+ if (obj.type != 1) {
|
|
|
+ // 初次生成订单
|
|
|
+ obj.firstCreateOrder();
|
|
|
+ } else {
|
|
|
+ // 已经生成订单未支付
|
|
|
+ obj.orderMoneyPay();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 初次订单创建
|
|
|
+ firstCreateOrder() {
|
|
|
+ let obj = this;
|
|
|
+ // 获取下单页面数据
|
|
|
+ let prepage = obj.$api.prePage();
|
|
|
+
|
|
|
+ let data = {
|
|
|
+ real_name: prepage.addressData.real_name, //联系人名称
|
|
|
+ phone: prepage.addressData.phone, //联系人号码
|
|
|
+ couponId: prepage.couponChecked.id, //优惠券编号
|
|
|
+ addressId: prepage.addressData.id, //支付地址id
|
|
|
+ useIntegral: prepage.checkedPoints ? 1 : 0, //是否积分抵扣1为是0为否
|
|
|
+ payType: obj.payName, //支付类型 weixin-微信 yue-余额
|
|
|
+ mark: prepage.desc, //备注
|
|
|
+ // #ifdef H5
|
|
|
+ from: obj.froms ? 'weixin' : 'H5', //来源
|
|
|
+ // #endif
|
|
|
+ // #ifdef MP-WEIXIN
|
|
|
+ from: 'routine', //来源
|
|
|
+ // #endif
|
|
|
+ // #ifdef APP-PLUS
|
|
|
+ from: 'app', //来源
|
|
|
+ // #endif
|
|
|
+ shipping_type: 1 //提货方式 1 快递 2自提
|
|
|
+ };
|
|
|
+ // 判断是否拼团商品
|
|
|
+ if (obj.pinkid) {
|
|
|
+ data.pinkId = obj.pinkid;
|
|
|
+ }
|
|
|
+ // 生成订单
|
|
|
+ createOrderkey(data, obj.orderKey)
|
|
|
+ .then(({
|
|
|
+ data,
|
|
|
+ status,
|
|
|
+ msg
|
|
|
+ }) => {
|
|
|
+ console.log(status);
|
|
|
+ // 判断是否支付失败
|
|
|
+ if (data.status == 'ORDER_EXIST') {
|
|
|
+ uni.showModal({
|
|
|
+ title: '提示',
|
|
|
+ content: msg,
|
|
|
+ showCancel: false
|
|
|
+ });
|
|
|
+ uni.hideLoading();
|
|
|
+ obj.payLoding = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 保存订单号
|
|
|
+ obj.orderId = data.result.orderId;
|
|
|
+ // 判断是否为余额支付
|
|
|
+ if (obj.payName == 'yue') {
|
|
|
+ if (status == 200) {
|
|
|
+ obj.paySuccessTo();
|
|
|
+ } else {
|
|
|
+ obj.$api.msg(msg);
|
|
|
+ }
|
|
|
} else {
|
|
|
- obj.$api.msg(msg);
|
|
|
+ // 立即支付
|
|
|
+ obj.orderMoneyPay();
|
|
|
}
|
|
|
- } else {
|
|
|
- // 立即支付
|
|
|
- obj.orderMoneyPay();
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(e => {
|
|
|
- uni.hideLoading();
|
|
|
- obj.payLoding = false;
|
|
|
- console.log(e, '123456789');
|
|
|
- });
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ uni.hideLoading();
|
|
|
+ obj.payLoding = false;
|
|
|
+ console.log(e, '123456789');
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
-};
|
|
|
+ };
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
-.app {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
-
|
|
|
-.price-box {
|
|
|
- background-color: #fff;
|
|
|
- height: 265upx;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- font-size: 28upx;
|
|
|
- color: #909399;
|
|
|
-
|
|
|
- .price {
|
|
|
- font-size: 50upx;
|
|
|
- color: #303133;
|
|
|
- margin-top: 12upx;
|
|
|
- &:before {
|
|
|
- content: '¥';
|
|
|
- font-size: 40upx;
|
|
|
- }
|
|
|
+ .app {
|
|
|
+ width: 100%;
|
|
|
}
|
|
|
-}
|
|
|
|
|
|
-.pay-type-list {
|
|
|
- margin-top: 20upx;
|
|
|
- background-color: #fff;
|
|
|
- padding-left: 60upx;
|
|
|
- .type-item {
|
|
|
- height: 120upx;
|
|
|
- padding: 20upx 0;
|
|
|
+ .price-box {
|
|
|
+ background-color: #fff;
|
|
|
+ height: 265upx;
|
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
align-items: center;
|
|
|
- padding-right: 60upx;
|
|
|
- font-size: 30upx;
|
|
|
- position: relative;
|
|
|
- }
|
|
|
+ font-size: 28upx;
|
|
|
+ color: #909399;
|
|
|
|
|
|
- .icon {
|
|
|
- width: 100upx;
|
|
|
- font-size: 52upx;
|
|
|
- }
|
|
|
- .iconyue {
|
|
|
- color: #fe8e2e;
|
|
|
- }
|
|
|
- .iconweixin {
|
|
|
- color: #36cb59;
|
|
|
- }
|
|
|
- .iconzhifubao {
|
|
|
- color: #01aaef;
|
|
|
+ .price {
|
|
|
+ font-size: 50upx;
|
|
|
+ color: #303133;
|
|
|
+ margin-top: 12upx;
|
|
|
+
|
|
|
+ &:before {
|
|
|
+ content: '¥';
|
|
|
+ font-size: 40upx;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
- .tit {
|
|
|
- font-size: $font-lg;
|
|
|
- color: $font-color-dark;
|
|
|
- margin-bottom: 4upx;
|
|
|
+
|
|
|
+ .pay-type-list {
|
|
|
+ margin-top: 20upx;
|
|
|
+ background-color: #fff;
|
|
|
+ padding-left: 60upx;
|
|
|
+
|
|
|
+ .type-item {
|
|
|
+ height: 120upx;
|
|
|
+ padding: 20upx 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding-right: 60upx;
|
|
|
+ font-size: 30upx;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .icon {
|
|
|
+ width: 100upx;
|
|
|
+ font-size: 52upx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .iconyue {
|
|
|
+ color: #fe8e2e;
|
|
|
+ }
|
|
|
+
|
|
|
+ .iconweixin {
|
|
|
+ color: #36cb59;
|
|
|
+ }
|
|
|
+
|
|
|
+ .iconzhifubao {
|
|
|
+ color: #01aaef;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tit {
|
|
|
+ font-size: $font-lg;
|
|
|
+ color: $font-color-dark;
|
|
|
+ margin-bottom: 4upx;
|
|
|
+ }
|
|
|
+
|
|
|
+ .con {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ font-size: $font-sm;
|
|
|
+ color: $font-color-light;
|
|
|
+ }
|
|
|
}
|
|
|
- .con {
|
|
|
- flex: 1;
|
|
|
+
|
|
|
+ .mix-btn {
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
- font-size: $font-sm;
|
|
|
- color: $font-color-light;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ width: 630upx;
|
|
|
+ height: 80upx;
|
|
|
+ margin: 80upx auto 30upx;
|
|
|
+ font-size: $font-lg;
|
|
|
+ color: #fff;
|
|
|
+ background-color: $base-color;
|
|
|
+ border-radius: 10upx;
|
|
|
+ /* box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4); */
|
|
|
}
|
|
|
-}
|
|
|
-.mix-btn {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- width: 630upx;
|
|
|
- height: 80upx;
|
|
|
- margin: 80upx auto 30upx;
|
|
|
- font-size: $font-lg;
|
|
|
- color: #fff;
|
|
|
- background-color: $base-color;
|
|
|
- border-radius: 10upx;
|
|
|
- /* box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4); */
|
|
|
-}
|
|
|
|
|
|
-.clickbg {
|
|
|
- background-color: $color-gray !important;
|
|
|
-}
|
|
|
+ .clickbg {
|
|
|
+ background-color: $color-gray !important;
|
|
|
+ }
|
|
|
</style>
|