perf: 推送账号 社区版定时任务关闭

This commit is contained in:
feng
2023-02-28 11:41:39 +08:00
parent c2706bbafa
commit be9cef64af

View File

@@ -16,7 +16,7 @@ export default {
data() {
return {
initial: {
is_periodic: true,
is_periodic: this.$store.getters.hasValidLicense,
password_rules: {
length: 30
},
@@ -64,6 +64,10 @@ export default {
el: {
readonly: true
}
},
is_periodic: {
type: 'switch',
disabled: !this.$store.getters.hasValidLicense
}
},
createSuccessNextRoute: { name: 'AccountPushList' },