|
@@ -7,14 +7,14 @@
|
|
|
label-width="80px"
|
|
|
:span="4"
|
|
|
label="角色名称"
|
|
|
- v-model:param="state.query.form.keyword"
|
|
|
+ v-model:param="state.query.form.roleName"
|
|
|
/>
|
|
|
<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.roleStatusList"
|
|
|
/>
|
|
|
<CusButton type="main" title="搜索" @click="onSearch"/>
|
|
|
<CusButton type="main" title="重置" @click="onReset"/>
|
|
@@ -30,8 +30,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.roleStatusMap.get(scope.row.status)}}
|
|
|
</template>
|
|
|
<template #do-column-value="{scope}">
|
|
|
<CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
@@ -47,10 +47,11 @@
|
|
|
|
|
|
<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 AuthCom from "./auth.vue";
|
|
|
import {useDictionaryStore} from "@/stores";
|
|
|
+import {rolesDelete, rolesGetByPage} from "@/api/modules/manage/role";
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
|
const DictionaryStore = useDictionaryStore()
|
|
@@ -62,12 +63,12 @@ const state: any = reactive({
|
|
|
pageSize: 10
|
|
|
},
|
|
|
tableHead: [
|
|
|
- {value: "indexName", label: "角色名称", fixed: 'left'},
|
|
|
- {value: "dataSource", label: "状态"},
|
|
|
+ {value: "roleName", 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: 240, fixed: 'right'},
|
|
|
],
|
|
|
form: {},
|
|
@@ -95,19 +96,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
|
|
|
+ rolesGetByPage(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))
|
|
@@ -141,9 +139,24 @@ const onAuth = (row) => {
|
|
|
state.auth.show = true
|
|
|
}
|
|
|
const onDel = (row) => {
|
|
|
+ ElMessageBox.confirm(`请确认是否删除${row.roleName}?`, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ } as any).then(() => {
|
|
|
+ state.loading = true
|
|
|
+ rolesDelete(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('role_status')
|
|
|
}
|
|
|
onMounted(() => {
|
|
|
initDictionary()
|