|
@@ -905,7 +905,7 @@
|
|
|
}
|
|
|
this.applyType = false
|
|
|
//#ifdef MP-TOUTIAO
|
|
|
- this.form.pay_type = 4
|
|
|
+ this.form.pay_type = 6
|
|
|
this.form.platform_type = 'dy_mini'
|
|
|
//#endif
|
|
|
// 是否是H5支付
|
|
@@ -998,54 +998,87 @@
|
|
|
})
|
|
|
|
|
|
} else {
|
|
|
- uni.requestPayment({
|
|
|
- "provider": res.provider[0],
|
|
|
- "orderInfo": val.res,
|
|
|
- "service": 5,
|
|
|
- getOrderStatus: res => new Promise((resolve, reject) => {
|
|
|
- console.log(res)
|
|
|
- resolve(res)
|
|
|
- }),
|
|
|
- success(res) {
|
|
|
- console.log(res)
|
|
|
- // 支付成功
|
|
|
- if (res.code == 0) {
|
|
|
- this_.$refs.uToast.show({
|
|
|
- title: '支付成功',
|
|
|
- type: 'success ',
|
|
|
- })
|
|
|
- uni.navigateTo({
|
|
|
- url: '/pages/flowOrderDetails/flowOrderDetails?id=' +
|
|
|
- res.data.data.id,
|
|
|
- });
|
|
|
- } else if (res.code == 4) {
|
|
|
- this_.$refs.uToast.show({
|
|
|
- title: '支付取消',
|
|
|
- type: 'error ',
|
|
|
- })
|
|
|
- } else if (res.code == 1) {
|
|
|
- this_.$refs.uToast.show({
|
|
|
- title: '支付超时',
|
|
|
- type: 'error ',
|
|
|
- })
|
|
|
- } else if (res.code == 2) {
|
|
|
- this_.$refs.uToast.show({
|
|
|
- title: '支付失败',
|
|
|
- type: 'error ',
|
|
|
- })
|
|
|
- } else if (res.code == 3) {
|
|
|
- this_.$refs.uToast.show({
|
|
|
- title: '支付关闭 ',
|
|
|
- type: 'error ',
|
|
|
- })
|
|
|
- } else {
|
|
|
+ // uni.requestPayment({
|
|
|
+ // "provider": res.provider[0],
|
|
|
+ // "orderInfo": val.res,
|
|
|
+ // "service": 5,
|
|
|
+ // getOrderStatus: res => new Promise((resolve, reject) => {
|
|
|
+ // console.log(res)
|
|
|
+ // resolve(res)
|
|
|
+ // }),
|
|
|
+ // success(res) {
|
|
|
+ // console.log(res)
|
|
|
+ // // 支付成功
|
|
|
+ // if (res.code == 0) {
|
|
|
+ // this_.$refs.uToast.show({
|
|
|
+ // title: '支付成功',
|
|
|
+ // type: 'success ',
|
|
|
+ // })
|
|
|
+ // uni.navigateTo({
|
|
|
+ // url: '/pages/flowOrderDetails/flowOrderDetails?id=' +
|
|
|
+ // res.data.data.id,
|
|
|
+ // });
|
|
|
+ // } else if (res.code == 4) {
|
|
|
+ // this_.$refs.uToast.show({
|
|
|
+ // title: '支付取消',
|
|
|
+ // type: 'error ',
|
|
|
+ // })
|
|
|
+ // } else if (res.code == 1) {
|
|
|
+ // this_.$refs.uToast.show({
|
|
|
+ // title: '支付超时',
|
|
|
+ // type: 'error ',
|
|
|
+ // })
|
|
|
+ // } else if (res.code == 2) {
|
|
|
+ // this_.$refs.uToast.show({
|
|
|
+ // title: '支付失败',
|
|
|
+ // type: 'error ',
|
|
|
+ // })
|
|
|
+ // } else if (res.code == 3) {
|
|
|
+ // this_.$refs.uToast.show({
|
|
|
+ // title: '支付关闭 ',
|
|
|
+ // type: 'error ',
|
|
|
+ // })
|
|
|
+ // } else {
|
|
|
|
|
|
- }
|
|
|
- },
|
|
|
- fail(e) {
|
|
|
- console.log(e)
|
|
|
- }
|
|
|
- })
|
|
|
+ // }
|
|
|
+ // },
|
|
|
+ // fail(e) {
|
|
|
+ // console.log(e)
|
|
|
+ // }
|
|
|
+ // })
|
|
|
+
|
|
|
+ tt.requestOrder({
|
|
|
+ data: val.data,
|
|
|
+ byteAuthorization: val.byteAuthorization,
|
|
|
+ success({ orderId }) {
|
|
|
+ tt.getOrderPayment({
|
|
|
+ orderId,
|
|
|
+ success(res) {
|
|
|
+ this_.$refs.uToast.show({
|
|
|
+ title: "支付成功",
|
|
|
+ type: "success ",
|
|
|
+ });
|
|
|
+ uni.navigateTo({
|
|
|
+ url: "/pages/flowOrderDetails/flowOrderDetails?id=" + val.id,
|
|
|
+ });
|
|
|
+ },
|
|
|
+ fail(err) {
|
|
|
+ console.log(err, "err");
|
|
|
+ if (err.errMsg == "pay:fail request payment cancel") {
|
|
|
+ this_.$refs.uToast.show({
|
|
|
+ title: "支付取消",
|
|
|
+ type: "error ",
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this_.$refs.uToast.show({
|
|
|
+ title: "支付失败",
|
|
|
+ type: "error ",
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
});
|