查询域名页面当输入框有值时,切换域名后缀自动触发查询

This commit is contained in:
jingrow 2025-08-12 12:28:11 +08:00
parent 4b635041a5
commit 2a6e3f0611

View File

@ -701,6 +701,16 @@ export default {
]
};
},
watch: {
//
selectedSuffix: {
handler(newSuffix, oldSuffix) {
if (oldSuffix && this.domainName && this.domainName.trim()) {
this.checkDomain();
}
}
}
},
computed: {
fullDomain() {
if (!this.domainName) return '';