手动领取_手机号不可改
This commit is contained in:
parent
21b01a2d7e
commit
6f16ec5a51
|
@ -54,8 +54,8 @@
|
||||||
<div class="form">
|
<div class="form">
|
||||||
<div v-show="ysf.available!==9">
|
<div v-show="ysf.available!==9">
|
||||||
<p class="form-label">云闪付账号</p>
|
<p class="form-label">云闪付账号</p>
|
||||||
<input class="form-input" maxlength="11" v-model="account" type="text" placeholder="请输入手机号" />
|
<input class="form-input" maxlength="11" v-model="account" :disabled="!!ysf.account" type="text" placeholder="请输入手机号" />
|
||||||
<input class="form-input mt0" maxlength="11" v-model="confirmAccount" type="text"
|
<input class="form-input mt0" maxlength="11" v-model="confirmAccount" :disabled="!!ysf.account" type="text"
|
||||||
placeholder="请再次输入手机号" />
|
placeholder="请再次输入手机号" />
|
||||||
<p class="form-note">
|
<p class="form-note">
|
||||||
温馨提示:单笔交易大于{{parseFloat(ysf.entity.denomination)}}元可立减{{parseFloat(ysf.entity.reduce_amount)}}元
|
温馨提示:单笔交易大于{{parseFloat(ysf.entity.denomination)}}元可立减{{parseFloat(ysf.entity.reduce_amount)}}元
|
||||||
|
@ -142,6 +142,8 @@
|
||||||
req.axiosPost('/key/products', { token }).then(res => {
|
req.axiosPost('/key/products', { token }).then(res => {
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
this.ysf = res.data[0];
|
this.ysf = res.data[0];
|
||||||
|
this.account = this.ysf.account;
|
||||||
|
this.confirmAccount = this.ysf.account;
|
||||||
this.receive_time = res.data[0].entity.time_limit;
|
this.receive_time = res.data[0].entity.time_limit;
|
||||||
|
|
||||||
/* 初始弹窗 */
|
/* 初始弹窗 */
|
||||||
|
|
Loading…
Reference in New Issue