Commit 1bb36f7f authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

fix: 已创建的应用不提示达到上限

See merge request !118
parents 9362cf04 90521216
...@@ -360,7 +360,7 @@ async function handleEquityInfoValidate() { ...@@ -360,7 +360,7 @@ async function handleEquityInfoValidate() {
await userStore.fetchUpdateEquityInfo() await userStore.fetchUpdateEquityInfo()
if (userStore.equityInfo.usedAgentCount >= userStore.equityInfo.maxAgentCount) { if (userStore.equityInfo.usedAgentCount >= userStore.equityInfo.maxAgentCount && !baseInfo.value.agentId) {
window.$message window.$message
.ctWarning(t('equity_module.agents_created_exceeds_tip'), '', t('common_module.back')) .ctWarning(t('equity_module.agents_created_exceeds_tip'), '', t('common_module.back'))
.then(() => { .then(() => {
......
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