|
@@ -15,7 +15,7 @@
|
|
|
<div class="userId">
|
|
|
<!-- <p class="userText">{{ accountDetail.stockNum }}</p> -->
|
|
|
<p class="userText">{{ stockShares }}</p>
|
|
|
- <p class="userText">剩余份额</p>
|
|
|
+ <p class="userText">最大限额</p>
|
|
|
</div>
|
|
|
<!-- 竖线 -->
|
|
|
<div class="userLine"></div>
|
|
@@ -43,7 +43,7 @@
|
|
|
<div>
|
|
|
<van-field class="relationClass" v-model="cofficentForm.phone" :placeholder="$t('user.phoneNumberPlace')">
|
|
|
<template #button>
|
|
|
- <van-button type="primary" @click="mailboxChg(cofficentForm.phone, 1)" size="small">确定
|
|
|
+ <van-button type="primary" @click="mailboxChg(cofficentForm.phone, 1)" size="small" disabled >确定
|
|
|
</van-button>
|
|
|
</template>
|
|
|
</van-field>
|
|
@@ -372,13 +372,13 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
- // 剩余份额-allowSellNum 允许售卖的数量
|
|
|
+ // 最大允许买入的份额-allowBuyNum
|
|
|
const stockShares = ref(0)
|
|
|
|
|
|
async function getStockShares() {
|
|
|
const { data } = await queryAllowNum()
|
|
|
if (data.code === '00000') {
|
|
|
- stockShares.value = data.data.allowSellNum;
|
|
|
+ stockShares.value = data.data.allowBuyNum;
|
|
|
}
|
|
|
}
|
|
|
|