mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 03:08:01 +08:00
[Improvement][UI] Update the update time after the user information is successfully modified (#5684)
* improve edit the userinfo success, but the updatetime is not the latest.
This commit is contained in:
parent
f508788689
commit
bae047e4a3
@ -80,7 +80,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import { mapState, mapMutations } from 'vuex'
|
||||
import { mapActions, mapState, mapMutations } from 'vuex'
|
||||
import mListBoxF from '@/module/components/listBoxF/listBoxF'
|
||||
import mCreateUser from '@/conf/home/pages/security/pages/users/_source/createUser'
|
||||
|
||||
@ -95,6 +95,7 @@
|
||||
props: {},
|
||||
methods: {
|
||||
...mapMutations('user', ['setUserInfo']),
|
||||
...mapActions('user', ['getUserInfo']),
|
||||
/**
|
||||
* edit
|
||||
*/
|
||||
@ -109,7 +110,9 @@
|
||||
email: param.email,
|
||||
phone: param.phone
|
||||
})
|
||||
this.getUserInfo().finally(() => {
|
||||
this.createUserDialog = false
|
||||
})
|
||||
},
|
||||
|
||||
close () {
|
||||
|
Loading…
Reference in New Issue
Block a user