mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-01 11:47:51 +08:00
[Improvement-4740][UI] Set the default Tenant as default or the first exist tenant in save process (#4742)
This commit is contained in:
parent
cbada7c16d
commit
60016fbd66
@ -213,10 +213,10 @@
|
|||||||
this.timeout = dag.timeout || 0
|
this.timeout = dag.timeout || 0
|
||||||
this.checkedTimeout = this.timeout !== 0
|
this.checkedTimeout = this.timeout !== 0
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
if (dag.tenantId === -1) {
|
if (dag.tenantId > -1) {
|
||||||
this.tenantId = this.store.state.user.userInfo.tenantId
|
|
||||||
} else {
|
|
||||||
this.tenantId = dag.tenantId
|
this.tenantId = dag.tenantId
|
||||||
|
} else if (this.store.state.user.userInfo.tenantId) {
|
||||||
|
this.tenantId = this.store.state.user.userInfo.tenantId
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
@ -293,7 +293,7 @@
|
|||||||
this.email = this.item.email
|
this.email = this.item.email
|
||||||
this.phone = this.item.phone
|
this.phone = this.item.phone
|
||||||
this.userState = this.item.state + '' || '1'
|
this.userState = this.item.state + '' || '1'
|
||||||
if (this.item.tenantName) {
|
if (this.item.tenantId) {
|
||||||
this.tenantId = this.item.tenantId
|
this.tenantId = this.item.tenantId
|
||||||
}
|
}
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
@ -311,7 +311,7 @@
|
|||||||
this.email = this.item.email
|
this.email = this.item.email
|
||||||
this.phone = this.item.phone
|
this.phone = this.item.phone
|
||||||
this.userState = this.state + '' || '1'
|
this.userState = this.state + '' || '1'
|
||||||
if (this.item.tenantName) {
|
if (this.item.tenantId) {
|
||||||
this.tenantId = this.item.tenantId
|
this.tenantId = this.item.tenantId
|
||||||
}
|
}
|
||||||
if (this.queueList.length > 0) {
|
if (this.queueList.length > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user