Browse Source

[Fix-5699][UI] Fix update user error in user information introduced by #5700 (#5735)

2.0.7-release
Shiwen Cheng 3 years ago committed by GitHub
parent
commit
00e76558be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue

6
dolphinscheduler-ui/src/js/conf/home/pages/security/pages/users/index.vue

@ -60,7 +60,7 @@
</template>
<script>
import _ from 'lodash'
import { mapActions, mapMutations } from 'vuex'
import { mapActions } from 'vuex'
import mList from './_source/list'
import mCreateUser from './_source/createUser'
import mSpin from '@/module/components/spin/spin'
@ -89,7 +89,6 @@
mixins: [listUrlParamHandle],
props: {},
methods: {
...mapMutations('user', ['setUserInfo']),
...mapActions('security', ['getUsersListP']),
/**
* Query
@ -114,9 +113,8 @@
this.item = item
this.createUserDialog = true
},
onUpdate (param) {
onUpdate () {
this._debounceGET('false')
this.setUserInfo(param)
this.createUserDialog = false
},
close () {

Loading…
Cancel
Save