bug 修复

This commit is contained in:
lf 2024-07-09 18:13:29 +08:00
parent ddb1651e28
commit 66d6081a18
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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>