bug 修复
This commit is contained in:
parent
ddb1651e28
commit
66d6081a18
|
@ -244,6 +244,8 @@ export default {
|
|||
if (res.code === 200) {
|
||||
// eslint-disable-next-line camelcase
|
||||
const { activity_info, status, lottery_code, lottery_count, use_lottery_count } = res.data
|
||||
// eslint-disable-next-line camelcase
|
||||
this.freeNum = lottery_count - use_lottery_count
|
||||
this.freeNum = this.freeNum > 0 ? this.freeNum : 0
|
||||
// eslint-disable-next-line camelcase
|
||||
this.status = activity_info?.status || 0
|
||||
|
|
|
@ -87,9 +87,11 @@
|
|||
class="mt30"
|
||||
fontSize="14"
|
||||
:placeholder="
|
||||
info.account_type === 1 || info.account_type === 2
|
||||
? '请输入充值手机号'
|
||||
: '请输入手机/QQ'
|
||||
info.account_type === 1
|
||||
? '请输入手机号'
|
||||
: info.account_type === 2
|
||||
? '请输入QQ'
|
||||
: '请输入充值手机号'
|
||||
"
|
||||
v-model="info.mobile"
|
||||
></wd-input>
|
||||
|
|
Loading…
Reference in New Issue