Commit b809a695 authored by FE-安焕焕's avatar FE-安焕焕 👣

联调

parent ebe2eb93
...@@ -77,12 +77,12 @@ function payByWeixinH5(info) { ...@@ -77,12 +77,12 @@ function payByWeixinH5(info) {
* @return: * @return:
*/ */
function payByALIH5(info) { function payByALIH5(info) {
if (!info.order_string) return; if (!info.url) return;
console.log('ali:', info.order_string); console.log('ali:', info.url);
const aliWrap = document.createElement('div'); const aliWrap = document.createElement('div');
aliWrap.id = 'ALIWEB_WRAP'; aliWrap.id = 'ALIWEB_WRAP';
aliWrap.setAttribute('id', 'ALIWEB_WRAP'); aliWrap.setAttribute('id', 'ALIWEB_WRAP');
aliWrap.innerHTML = info.order_string; aliWrap.innerHTML = info.url;
document.body.appendChild(aliWrap); document.body.appendChild(aliWrap);
document.forms[0].submit(); document.forms[0].submit();
......
...@@ -10,17 +10,17 @@ ...@@ -10,17 +10,17 @@
class="center-phone-field" class="center-phone-field"
placeholder="请输入手机号码" placeholder="请输入手机号码"
@input="changeTelFormat" @input="changeTelFormat"
@blur="searchPhoneNoHome" @blur="searchPhoneNo(rechargeTel)"
@focus="inputBlur = true"
/> />
<div class="center-phone__list" :class="{ show: inputBlur }"> <div class="center-phone__list" :class="{ show: inputBlur }">
<div <div
v-for="(item, index) in list" v-for="(item, index) in list"
:key="index" :key="index"
class="center-phone__list-item" class="center-phone__list-item"
@click="searchPhoneNoHome(item)" @click="selectPhone(item)"
> >
<span class="phone">{{ phoneFormat(item.phone) }}</span> <span class="phone">{{ phoneFormat(item) }}</span>
<span class="phone-home">{{ item.home }}</span>
<span v-if="index === 0" class="current">上次充值</span> <span v-if="index === 0" class="current">上次充值</span>
</div> </div>
</div> </div>
...@@ -65,18 +65,29 @@ export default { ...@@ -65,18 +65,29 @@ export default {
this.queryhome(); this.queryhome();
} }
}, },
async searchPhoneNoHome() { async searchPhoneNo() {
if (!this.phoneNo) return; if (!this.phoneNo) return;
if (!checkPhoneFormat(this.phoneNo)) { if (!checkPhoneFormat(this.phoneNo)) {
this.$toast.fail('请您输入正确的手机号'); this.$toast.fail('请您输入正确的手机号');
this.$emit('input', { phoneNo: '', phoneNoHome: this.phoneNoHome }); this.input();
return; return;
} }
this.$emit('input', { phoneNo: this.phoneNo, phoneNoHome: this.phoneNoHome }); !this.phoneHome && this.queryhome();
this.input();
},
selectPhone(phone) {
this.inputBlur = false;
if (phone) {
this.rechargeTel = phoneFormat(phone);
}
this.searchPhoneNo();
}, },
async queryhome() { async queryhome() {
const [data] = await getPhoneHome(this.phoneNo); const [data] = await getPhoneHome(this.phoneNo);
this.phoneNoHome = data?.phoneHome; this.phoneNoHome = data?.phoneHome;
this.input();
},
input() {
this.$emit('input', { phoneNo: this.phoneNo, phoneNoHome: this.phoneNoHome }); this.$emit('input', { phoneNo: this.phoneNo, phoneNoHome: this.phoneNoHome });
} }
} }
...@@ -87,6 +98,9 @@ export default { ...@@ -87,6 +98,9 @@ export default {
position: relative; position: relative;
&-phone { &-phone {
border-bottom: @border-width-base solid @gray-2; border-bottom: @border-width-base solid @gray-2;
.cr-field:not(:last-child)::after {
display: none;
}
.cr-cell__title { .cr-cell__title {
display: none; display: none;
} }
...@@ -103,9 +117,11 @@ export default { ...@@ -103,9 +117,11 @@ export default {
text-indent: -2px; text-indent: -2px;
} }
&__list { &__list {
// display: none; display: none;
position: absolute; position: absolute;
top: 50px; top: 100px;
width: 100%;
margin: auto;
left: -@padding-lg; left: -@padding-lg;
right: -@padding-lg; right: -@padding-lg;
z-index: 3; z-index: 3;
......
...@@ -51,7 +51,7 @@ export default { ...@@ -51,7 +51,7 @@ export default {
methods: { methods: {
async changeRechargeType(name) { async changeRechargeType(name) {
const [data] = await getSkuList( const [data] = await getSkuList(
this.phoneRecharge[`${name}SpuNo`], this.phoneRecharge[`${name}SpuNos`],
this.phoneRecharge[`${name}Type`] this.phoneRecharge[`${name}Type`]
); );
this.$emit('changeRechargetype', name); this.$emit('changeRechargetype', name);
......
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
phoneRecharge: {}, phoneRecharge: {},
userPhoneInfo: {}, userPhoneInfo: {},
rechargeType: 'recharge', rechargeType: 'recharge',
historyRecordList: [{}, {}], historyRecordList: ['17611682272', '222222222'],
rechargePhoneInfo: {}, rechargePhoneInfo: {},
selectedRechargeInfo: {} selectedRechargeInfo: {}
}; };
...@@ -80,7 +80,7 @@ export default { ...@@ -80,7 +80,7 @@ export default {
}, },
async goOrderApi() { async goOrderApi() {
/* 需要加防抖 */ /* 需要加防抖 */
const { skuNo, salePrice } = this.selectedRechargeInfo; const { skuNos, salePrice } = this.selectedRechargeInfo;
const token = localStorage.get('vccToken'); const token = localStorage.get('vccToken');
if (!token) { if (!token) {
await getTokenFromNative(); await getTokenFromNative();
...@@ -93,7 +93,7 @@ export default { ...@@ -93,7 +93,7 @@ export default {
virtualRechargeType: this.phoneRecharge[`${this.rechargeType}Type`], virtualRechargeType: this.phoneRecharge[`${this.rechargeType}Type`],
skuList: [ skuList: [
{ {
skuNo, skuNo: skuNos,
count: 1 count: 1
} }
] ]
......
...@@ -185,7 +185,8 @@ export default { ...@@ -185,7 +185,8 @@ export default {
this.showCancelPopup = true; this.showCancelPopup = true;
}, },
toPay() { toPay() {
this.$router.push({ path: '/pay', query: { orderNo: this.currentOrder.orderNo } }); console.log(this.currentOrder.orderNo);
this.$router.push({ path: '/pay', query: { orderNo: this.orderNo } });
}, },
toGoods() { toGoods() {
this.$router.push({ path: '/goods' }); this.$router.push({ path: '/goods' });
......
...@@ -118,6 +118,8 @@ import { ...@@ -118,6 +118,8 @@ import {
ACCOUNT_APPLY_FAIL, ACCOUNT_APPLY_FAIL,
creditPayStatusType, creditPayStatusType,
ACCOUNT_APPLY_SUCCESS, ACCOUNT_APPLY_SUCCESS,
CREDIT_AND_WECHAT_PAY,
CREDIT_AND_ALIPAY_PAY,
ACCOUNT_APPLY_AUDIT_FAIL, ACCOUNT_APPLY_AUDIT_FAIL,
SMS_VERIFICATION_CODE_PAY, //短信验证码 SMS_VERIFICATION_CODE_PAY, //短信验证码
FACE_VERIFICATION_CODE_PAY FACE_VERIFICATION_CODE_PAY
...@@ -380,6 +382,7 @@ export default { ...@@ -380,6 +382,7 @@ export default {
this.goH5(url); this.goH5(url);
return; return;
} }
localStorage.set('orderNo', this.orderNo);
const paramsData = { const paramsData = {
...params, ...params,
quitUrl: `${window.location.origin}/payWaiting`, quitUrl: `${window.location.origin}/payWaiting`,
...@@ -406,35 +409,29 @@ export default { ...@@ -406,35 +409,29 @@ export default {
const creditPayStatus = creditPayInfo.creditPayStatus; const creditPayStatus = creditPayInfo.creditPayStatus;
this.flowOrderNo = flowOrderNo; this.flowOrderNo = flowOrderNo;
if (!params && this.payType === WECHAT_PAY) { if (!params && (this.payType === WECHAT_PAY || this.payType === CREDIT_AND_WECHAT_PAY)) {
/* 微信支付 */ /* 微信支付 */
payByWay(this.tradeType, { ...wxPayInfo, url: wxPayInfo.mwebUrl }); payByWay(this.tradeType, { ...wxPayInfo, url: wxPayInfo.mwebUrl });
return; return;
} } else if (!params && (this.payType === ALIPAY_PAY || CREDIT_AND_ALIPAY_PAY)) {
if (!params && this.payType === ALIPAY_PAY) {
/* 支付宝支付 */ /* 支付宝支付 */
payByWay('ALIWEB', aliPayInfo); payByWay('ALIWEB', { ...aliPayInfo, url: aliPayInfo.order_string });
return;
}
if (creditPayStatus === PAY_SUCCESS) {
if (IS_GROUP_PAY(this.payType)) {
//组合支付成功后跳转支付中
this.payResult('Waiting');
return; return;
} } else if (creditPayStatus === PAY_SUCCESS) {
/* 支付成功 */ /* 信用支付成功 */
this.close(); this.close();
this.payResult('Success'); this.payResult('Success');
return; return;
} } else if (
if (creditPayStatus === PAYMENT_CODE_PAY || creditPayStatus === SMS_VERIFICATION_CODE_PAY) { creditPayStatus === PAYMENT_CODE_PAY ||
creditPayStatus === SMS_VERIFICATION_CODE_PAY
) {
/* 密码或者短信鉴权 */ /* 密码或者短信鉴权 */
this.close(); this.close();
this[`${creditPayStatusType[creditPayStatus]}Modal`] = true; this[`${creditPayStatusType[creditPayStatus]}Modal`] = true;
return; return;
} } else if (creditPayStatus === FACE_VERIFICATION_CODE_PAY) {
/* 人脸鉴权 */ /* 人脸鉴权 */
if (creditPayStatus === FACE_VERIFICATION_CODE_PAY) {
this.goOcr(); this.goOcr();
} }
}, },
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
<script> <script>
import { registeredEvents } from '@/service/sa.service'; import { registeredEvents } from '@/service/sa.service';
import { queryPayStatus } from '@/api/pay.api'; import { queryPayStatus } from '@/api/pay.api';
import localStorage from '@/service/localStorage.service';
export default { export default {
components: {}, components: {},
data() { data() {
...@@ -35,19 +36,14 @@ export default { ...@@ -35,19 +36,14 @@ export default {
}; };
}, },
created() { created() {
const { orderNo } = this.$route.query; this.orderNo = this.$route.query.orderNo || localStorage.set('orderNo');
this.orderNo = orderNo;
}, },
mounted() { mounted() {
// eslint-disable-next-line space-before-function-paren // eslint-disable-next-line space-before-function-paren
this.timer = setInterval(async () => { this.timer = setInterval(async () => {
this.time -= 1; this.time -= 1;
if (this.time % 2 === 0) { if (this.time % 2 === 0) {
const [data] = await queryPayStatus({ orderNo: this.orderNo }); this.query();
if (data.payStatus === 3) {
this.goPay();
}
// 结果处理,如果未支付弹窗提示是否支付成功,跳转支付中页面
} }
if (this.time < 1) { if (this.time < 1) {
clearInterval(this.timer); clearInterval(this.timer);
...@@ -59,18 +55,33 @@ export default { ...@@ -59,18 +55,33 @@ export default {
}, },
methods: { methods: {
goHome() { goHome() {
// 去页面 // 去首页
this.$router.replace({ name: 'home' }); this.$router.replace({ name: 'home' });
}, },
goSuccess() {
// 支付成功
this.$router.replace({ name: 'paySuccess' });
},
goOrderDetail() { goOrderDetail() {
this.$router.replace({ name: 'orderDetail', query: { order: this.orderNo } }); this.$router.replace({ name: 'orderDetail', query: { orderNo: this.orderNo } });
// 去订单详情页面 // 去订单详情页面
}, },
goPay() { async query() {
registeredEvents('PD_YXMMAEC_UserClickCashierPaymentAgainBtn', { const [data] = await queryPayStatus({ orderNo: this.orderNo });
order_id: this.orderNo if (+data?.payStatus === 3) {
this.goSuccess();
} else if (+data?.payStatus === 1) {
this.$dialog({
message: '是否支付成功?',
confirmButtonText: '确定',
cancelButtonText: '取消',
confirmButtonColor: '#EC1500',
onCancel: () => {},
onConfirm: () => {
this.query();
}
}); });
this.$router.replace({ name: 'pay', query: { order: this.orderNo } }); }
} }
} }
}; };
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
v-for="(item, index) in list" v-for="(item, index) in list"
:key="index" :key="index"
class="Vl__spu-item" class="Vl__spu-item"
:class="{ 'Vl__spu-item_active': info.spuNo === item.spuNo }" :class="{ 'Vl__spu-item_active': info.spuNos === item.spuNos }"
@click="handleSpuClick($event, item, index)" @click="handleSpuClick($event, item, index)"
> >
<cr-image :src="item.icon" height="1.093333rem" width="1.093333rem" class="Vl__spu-icon" /> <cr-image :src="item.icon" height="1.093333rem" width="1.093333rem" class="Vl__spu-icon" />
......
...@@ -64,7 +64,7 @@ export default { ...@@ -64,7 +64,7 @@ export default {
return this.spuData[this.currentTab - 1] ? this.spuData[this.currentTab - 1].itemList : []; return this.spuData[this.currentTab - 1] ? this.spuData[this.currentTab - 1].itemList : [];
}, },
tips() { tips() {
return tipsData[this.spuInfo.spuNo]; return tipsData[this.spuInfo.spuNos];
} }
}, },
mounted() { mounted() {
...@@ -117,7 +117,7 @@ export default { ...@@ -117,7 +117,7 @@ export default {
}, },
async getSkuList() { async getSkuList() {
this.skuList = []; this.skuList = [];
const { spuNo: spuNos, type } = this.spuInfo; const { spuNos, type } = this.spuInfo;
const [res] = await rechargeApi.getSkuList(spuNos, type); const [res] = await rechargeApi.getSkuList(spuNos, type);
if (res) { if (res) {
this.skuList = res.rechargeList; this.skuList = res.rechargeList;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment