mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 14:20:25 +08:00
79 lines
2.0 KiB
JavaScript
79 lines
2.0 KiB
JavaScript
|
|
Vue.component("dns-route-selector", {
|
||
|
|
props: ["v-all-routes", "v-routes"],
|
||
|
|
data: function () {
|
||
|
|
let routes = this.vRoutes
|
||
|
|
if (routes == null) {
|
||
|
|
routes = []
|
||
|
|
}
|
||
|
|
return {
|
||
|
|
routes: routes,
|
||
|
|
routeCodes: routes.$map(function (k, v) {
|
||
|
|
return v.code
|
||
|
|
}),
|
||
|
|
isAdding: false,
|
||
|
|
routeCode: ""
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
add: function () {
|
||
|
|
this.isAdding = true
|
||
|
|
},
|
||
|
|
cancel: function () {
|
||
|
|
this.isAdding = false
|
||
|
|
},
|
||
|
|
confirm: function () {
|
||
|
|
if (this.routeCode.length == 0) {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
if (this.routeCodes.$contains(this.routeCode)) {
|
||
|
|
teaweb.warn("已经添加过此线路,不能重复添加")
|
||
|
|
return
|
||
|
|
}
|
||
|
|
let that = this
|
||
|
|
let route = this.vAllRoutes.$find(function (k, v) {
|
||
|
|
return v.code == that.routeCode
|
||
|
|
})
|
||
|
|
if (route == null) {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
this.routeCodes.push(this.routeCode)
|
||
|
|
this.routes.push(route)
|
||
|
|
|
||
|
|
this.routeCode = ""
|
||
|
|
this.isAdding = false
|
||
|
|
},
|
||
|
|
remove: function (route) {
|
||
|
|
this.routeCodes.$removeValue(route.code)
|
||
|
|
this.routes.$removeIf(function (k, v) {
|
||
|
|
return v.code == route.code
|
||
|
|
})
|
||
|
|
}
|
||
|
|
},
|
||
|
|
template: `<div>
|
||
|
|
<input type="hidden" name="dnsRoutesJSON" :value="JSON.stringify(routeCodes)"/>
|
||
|
|
<div v-if="routes.length > 0">
|
||
|
|
<tiny-label v-for="route in routes" :key="route.code">
|
||
|
|
{{route.name}} <a href="" @click.prevent="remove(route)"><i class="icon remove"></i></a>
|
||
|
|
</tiny-label>
|
||
|
|
<div class="ui divider"></div>
|
||
|
|
</div>
|
||
|
|
<button type="button" class="ui button small" @click.prevent="add" v-if="!isAdding">+</button>
|
||
|
|
<div v-if="isAdding">
|
||
|
|
<div class="ui fields inline">
|
||
|
|
<div class="ui field">
|
||
|
|
<select class="ui dropdown auto-width" v-model="routeCode">
|
||
|
|
<option value="">[请选择]</option>
|
||
|
|
<option v-for="route in vAllRoutes" :value="route.code">{{route.name}}</option>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
<div class="ui field">
|
||
|
|
<button class="ui button tiny" type="button" @click.prevent="confirm">确定</button>
|
||
|
|
</div>
|
||
|
|
<div class="ui field">
|
||
|
|
<a href="" @click.prevent="cancel()"><i class="icon remove"></i></a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>`
|
||
|
|
})
|