Files
waf-platform/EdgeUser/web/views/@default/ns/domains/batch/index.js
2026-02-04 20:27:13 +08:00

24 lines
519 B
JavaScript

Tea.context(function () {
this.$delay(function () {
this.$refs.namesInput.focus()
this.changeUserId(0)
})
this.success = NotifyReloadSuccess("保存成功")
this.hasGroups = false
this.changeUserId = function (userId) {
this.$post("/ns/domains/groups/options")
.params({
userId: userId
})
.success(function (resp) {
this.hasGroups = resp.data.groups.length > 0
if (this.hasGroups) {
this.$delay(function () {
this.$refs.groupSelector.reload(userId)
})
}
})
}
})