diff --git a/zfb-reduce.css b/zfb-reduce.css index 8e12e21..4c61ee5 100644 --- a/zfb-reduce.css +++ b/zfb-reduce.css @@ -200,7 +200,7 @@ body { text-align: center; } .disable { - background-color: rgb(253, 138, 142) !important; + background-color: rgb(103, 164, 235) !important; } .information { text-align: center; diff --git a/zfb-reduce.html b/zfb-reduce.html index f989205..8302a18 100644 --- a/zfb-reduce.html +++ b/zfb-reduce.html @@ -44,9 +44,8 @@

云闪付账号

- - + +

您可在支付宝的个人信息中查看【支付宝账号】

@@ -118,7 +117,7 @@ is: false, loading: false, form: { - receive_name: null, + confirm: null, receive_account: null } }; @@ -149,10 +148,10 @@ methods: { /* 立即领取 */ submit () { - const { receive_name, receive_account } = this.form; + const { confirm, receive_account } = this.form; if (this.goods.available !== 1) return; if (this.loading) return; - if (!receive_name) return this.tips('请输入真实姓名'); + if (confirm !== receive_account) return this.tips('支付宝账号不一致'); if ((phoneReg.test(receive_account) || emailReg.test(receive_account))) { this.finalSubmit(); } else { @@ -186,13 +185,11 @@ /* 核销支付宝立减金 */ verificationYsf ({ order_number }) { - console.log(order_number); let params = { order_number, channel: "3", //立减金发放渠道,1:支付宝;2:微信 3:云闪付 receive_mode: 2, /* 领取方式 1:支付宝 2:H5 */ channel_user_id: this.form.receive_account, - real_name: this.form.receive_name, }; req.axiosPost("/voucher/grant", params) .then(({ code, message }) => {