|
@@ -6,20 +6,20 @@
|
|
|
<CusFormColumn
|
|
|
:span="4"
|
|
|
label="账号"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.username"
|
|
|
/>
|
|
|
<CusFormColumn
|
|
|
label-width="65px"
|
|
|
:span="4"
|
|
|
label="用户名"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.nickName"
|
|
|
/>
|
|
|
<CusFormColumn
|
|
|
:span="4"
|
|
|
label="状态"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.status"
|
|
|
link="select"
|
|
|
- :options="DictionaryStore.trueFalseList"
|
|
|
+ :options="DictionaryStore.userStatusList"
|
|
|
/>
|
|
|
<CusButton type="main" title="搜索" @click="onSearch"/>
|
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
@@ -35,8 +35,8 @@
|
|
|
:table-head="state.query.tableHead"
|
|
|
@handlePage="onPage"
|
|
|
>
|
|
|
- <template #shareMethod-column-value="{scope}">
|
|
|
- {{DictionaryStore.gxMethodMap.get(scope.row.shareMethod)}}
|
|
|
+ <template #status-column-value="{scope}">
|
|
|
+ {{DictionaryStore.userStatusMap.get(scope.row.status)}}
|
|
|
</template>
|
|
|
<template #do-column-value="{scope}">
|
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
@@ -54,11 +54,12 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import {getCurrentInstance, onMounted, reactive} from "vue";
|
|
|
-import {ElMessage} from "element-plus";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
import DetailCom from "./detail.vue";
|
|
|
import PasswordCom from "./password.vue";
|
|
|
import RoleCom from "./role.vue";
|
|
|
import {useDictionaryStore} from "@/stores";
|
|
|
+import {usersDeleteUser, usersGetPageUser} from "@/api/modules/manage/user";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
const DictionaryStore = useDictionaryStore()
|
|
@@ -70,20 +71,20 @@ const state: any = reactive({
|
|
|
pageSize: 10
|
|
|
},
|
|
|
tableHead: [
|
|
|
- {value: "indexName", label: "账号", fixed: 'left'},
|
|
|
- {value: "indexName", label: "用户名", fixed: 'left'},
|
|
|
- {value: "dataSource", label: "状态"},
|
|
|
+ {value: "username", label: "账号", fixed: 'left'},
|
|
|
+ {value: "nickName", label: "用户名", fixed: 'left'},
|
|
|
+ {value: "status", label: "状态"},
|
|
|
{value: "createTime", label: "创建时间", width: 200},
|
|
|
- {value: "indexName", label: "创建人"},
|
|
|
+ {value: "createByName", label: "创建人"},
|
|
|
{value: "updateTime", label: "最后修改时间", width: 200},
|
|
|
- {value: "updateTime", label: "最后修改人"},
|
|
|
+ {value: "updateByName", label: "最后修改人"},
|
|
|
{value: "do", label: "操作", width: 320, fixed: 'right'},
|
|
|
],
|
|
|
form: {},
|
|
|
formReal: {},
|
|
|
result: {
|
|
|
total: 0,
|
|
|
- data: [{}]
|
|
|
+ data: []
|
|
|
}
|
|
|
},
|
|
|
detail: {
|
|
@@ -108,19 +109,16 @@ const onPage = (pageNum, pageSize) => {
|
|
|
page: state.query.page.pageNum,
|
|
|
size: state.query.page.pageSize,
|
|
|
}
|
|
|
- if (proxy.$util.isValue(state.query.formReal.keyword)) {
|
|
|
- params.keyword = state.query.formReal.keyword
|
|
|
- }
|
|
|
- // state.query.loading = true
|
|
|
- // sysIndexFindIndexByPage(proxy.$util.formatGetParam(params)).then(res => {
|
|
|
- // if (res.code === 200) {
|
|
|
- // state.query.result.total = res.data.totalElements
|
|
|
- // state.query.result.data = res.data.content
|
|
|
- // state.query.loading = false
|
|
|
- // } else {
|
|
|
- // ElMessage.error(res.msg)
|
|
|
- // }
|
|
|
- // })
|
|
|
+ state.query.loading = true
|
|
|
+ usersGetPageUser(proxy.$util.formatGetParam(params)).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ state.query.result.total = res.data.totalElements
|
|
|
+ state.query.result.data = res.data.content
|
|
|
+ state.query.loading = false
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.msg)
|
|
|
+ }
|
|
|
+ })
|
|
|
}
|
|
|
const onSearch = () => {
|
|
|
state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
|
|
@@ -160,9 +158,24 @@ const onRole = (row) => {
|
|
|
state.role.show = true
|
|
|
}
|
|
|
const onDel = (row) => {
|
|
|
+ ElMessageBox.confirm(`请确认是否删除${row.nickName}?`, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ } as any).then(() => {
|
|
|
+ state.loading = true
|
|
|
+ usersDeleteUser(row.id).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ ElMessage.success('删除成功!')
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.msg)
|
|
|
+ }
|
|
|
+ onSearch()
|
|
|
+ })
|
|
|
+ }).catch(() => {})
|
|
|
}
|
|
|
const initDictionary = () => {
|
|
|
- DictionaryStore.initDict('true_false')
|
|
|
+ DictionaryStore.initDict('user_status')
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
initDictionary()
|