mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
54 lines
1.3 KiB
JavaScript
54 lines
1.3 KiB
JavaScript
|
|
Vue.component("dns-domain-selector", {
|
||
|
|
props: ["v-domain-id", "v-domain-name"],
|
||
|
|
data: function () {
|
||
|
|
let domainId = this.vDomainId
|
||
|
|
if (domainId == null) {
|
||
|
|
domainId = 0
|
||
|
|
}
|
||
|
|
let domainName = this.vDomainName
|
||
|
|
if (domainName == null) {
|
||
|
|
domainName = ""
|
||
|
|
}
|
||
|
|
return {
|
||
|
|
domainId: domainId,
|
||
|
|
domainName: domainName
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
select: function () {
|
||
|
|
let that = this
|
||
|
|
teaweb.popup("/dns/domains/selectPopup", {
|
||
|
|
callback: function (resp) {
|
||
|
|
that.domainId = resp.data.domainId
|
||
|
|
that.domainName = resp.data.domainName
|
||
|
|
}
|
||
|
|
})
|
||
|
|
},
|
||
|
|
remove: function() {
|
||
|
|
this.domainId = 0
|
||
|
|
this.domainName = ""
|
||
|
|
},
|
||
|
|
update: function () {
|
||
|
|
let that = this
|
||
|
|
teaweb.popup("/dns/domains/selectPopup?domainId=" + this.domainId, {
|
||
|
|
callback: function (resp) {
|
||
|
|
that.domainId = resp.data.domainId
|
||
|
|
that.domainName = resp.data.domainName
|
||
|
|
}
|
||
|
|
})
|
||
|
|
}
|
||
|
|
},
|
||
|
|
template: `<div>
|
||
|
|
<input type="hidden" name="dnsDomainId" :value="domainId"/>
|
||
|
|
<div v-if="domainName.length > 0">
|
||
|
|
<span class="ui label small">
|
||
|
|
{{domainName}}
|
||
|
|
<a href="" @click.prevent="update"><i class="icon pencil small"></i></a>
|
||
|
|
<a href="" @click.prevent="remove()"><i class="icon remove"></i></a>
|
||
|
|
</span>
|
||
|
|
</div>
|
||
|
|
<div v-if="domainName.length == 0">
|
||
|
|
<a href="" @click.prevent="select()">[选择域名]</a>
|
||
|
|
</div>
|
||
|
|
</div>`
|
||
|
|
})
|