修复注册域名页面域名所有者选项为空的问题

This commit is contained in:
jingrow 2025-10-02 15:55:21 +08:00
parent 0716acf714
commit 5439435b1b

View File

@ -952,7 +952,7 @@ export default {
url: 'jcloud.api.domain_west.get_domain_owners',
onSuccess(response) {
if (response.status === "Success") {
this.domainOwners = response.data || [];
this.domainOwners = response.data.items || [];
}
},
onError(error) {