203 lines
4.7 KiB
Vue
203 lines
4.7 KiB
Vue
<template>
|
|
<div>
|
|
<div class="tool-bar">
|
|
<ElForm inline @submit.prevent="paging">
|
|
<ElFormItem>
|
|
<ElInput
|
|
v-model="searchForm.dictName"
|
|
clearable
|
|
placeholder="请输入要搜索的文字"
|
|
@clear="reset"/>
|
|
</ElFormItem>
|
|
<ElFormItem>
|
|
<ElButton :icon="elIcons.Search" :loading="searching" native-type="submit" type="primary">搜索</ElButton>
|
|
<ElButton :icon="elIcons.Plus" type="primary" @click="addHandler">新建</ElButton>
|
|
</ElFormItem>
|
|
</ElForm>
|
|
</div>
|
|
<ElTable v-loading="searching" :data="tableData"
|
|
cell-class-name="table-cell"
|
|
class="table-list"
|
|
empty-text="暂无数据"
|
|
header-row-class-name="table-header"
|
|
row-key="id">
|
|
<ElTableColumn label="字典标识" prop="dictKey" width="180"/>
|
|
|
|
<ElTableColumn label="字典名称" prop="dictName"/>
|
|
|
|
<ElTableColumn label="备注" prop="memo"/>
|
|
|
|
<ElTableColumn label="操作" width="180">
|
|
<template #default="scope">
|
|
<div class="action-btn">
|
|
<ElPopconfirm
|
|
cancel-button-text="否"
|
|
cancel-button-type="primary"
|
|
confirm-button-text="是"
|
|
confirm-button-type="danger"
|
|
placement="top"
|
|
title="是否删除当前数据?"
|
|
width="180"
|
|
@confirm="delHandler(scope)">
|
|
<template #reference>
|
|
<ElButton :loading="deling" text type="danger">删除</ElButton>
|
|
</template>
|
|
</ElPopconfirm>
|
|
<ElButton text type="primary" @click="modifyHandler(scope)">修改</ElButton>
|
|
<ElButton text type="primary" @click="selectDictHandle(scope)">字典项</ElButton>
|
|
</div>
|
|
</template>
|
|
</ElTableColumn>
|
|
</ElTable>
|
|
<ElPagination
|
|
:page-size="pagination.size"
|
|
:total="pagination.total"
|
|
class="pagination"
|
|
layout="prev, pager, next"
|
|
@change="pageChangeHandler"/>
|
|
<DictForm ref="dictForm" @edit-succ="paging"/>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import DictApi from '@/pages/sys/dict/dict-api.ts'
|
|
import { elIcons } from '@/common/element/element.ts'
|
|
import DictForm from '@/pages/sys/dict/DictForm.vue'
|
|
|
|
const tableData = ref<DictTypes.SearchDictResult[]>([])
|
|
const searchForm = reactive<DictTypes.SearchDictParam>(
|
|
{
|
|
orders: 'dict_key,id',
|
|
current: 1,
|
|
size: 20,
|
|
})
|
|
const searching = ref(false)
|
|
const deling = ref(false)
|
|
const dictFormIns = useTemplateRef<InstanceType<typeof DictForm>>('dictForm')
|
|
const pagination = reactive<G.Pagination>({
|
|
total: 0,
|
|
pages: 0,
|
|
current: 1,
|
|
size: 20,
|
|
})
|
|
|
|
function showDialog(data?: DictTypes.SearchDictResult) {
|
|
dictFormIns.value?.open(data)
|
|
}
|
|
|
|
function delHandler({row}: { row: DictTypes.SearchDictResult }) {
|
|
deling.value = true
|
|
DictApi.del([ row.id! ])
|
|
.then(() => {
|
|
ElMessage.success('删除成功')
|
|
paging()
|
|
})
|
|
.finally(() => {
|
|
deling.value = false
|
|
})
|
|
}
|
|
|
|
function modifyHandler({row}: { row: DictTypes.SearchDictResult }) {
|
|
showDialog(row)
|
|
}
|
|
|
|
function addHandler() {
|
|
showDialog()
|
|
}
|
|
|
|
const emits = defineEmits([ 'searchDict' ])
|
|
|
|
function selectDictHandle({row}: { row: DictTypes.SearchDictResult }) {
|
|
emits('searchDict', row)
|
|
}
|
|
|
|
function pageChangeHandler(currentPage: number, pageSize: number) {
|
|
searchForm.current = currentPage
|
|
searchForm.size = pageSize
|
|
paging()
|
|
}
|
|
|
|
function reset() {
|
|
Object.assign(searchForm, {})
|
|
paging()
|
|
}
|
|
|
|
function paging() {
|
|
searching.value = true
|
|
DictApi.paging(searchForm)
|
|
.then(res => {
|
|
tableData.value = res.data?.records ?? []
|
|
Object.assign(pagination, {
|
|
total: res.data?.total ?? 0,
|
|
pages: res.data?.pages ?? 0,
|
|
current: res.data?.current ?? 1,
|
|
size: res.data?.size ?? 20,
|
|
})
|
|
})
|
|
.finally(() => {
|
|
searching.value = false
|
|
})
|
|
}
|
|
|
|
onMounted(() => {
|
|
paging()
|
|
})
|
|
</script>
|
|
<style lang="stylus" scoped>
|
|
.table-list {
|
|
flex 1;
|
|
width 100%
|
|
|
|
:deep(.table-header) {
|
|
color #454C59
|
|
|
|
th {
|
|
background-color #EDF1F7
|
|
font-weight 500
|
|
position relative
|
|
|
|
& > div {
|
|
display flex
|
|
gap 5px
|
|
align-items center
|
|
}
|
|
|
|
&:not(:first-child) > div::before {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 1px;
|
|
width: 1px;
|
|
background-color: #D3D7DE;
|
|
transform: translateY(-50%);
|
|
content: "";
|
|
height 50%
|
|
}
|
|
}
|
|
}
|
|
|
|
:deep(.table-cell) {
|
|
color #2F3540
|
|
}
|
|
|
|
.action-btn {
|
|
width 100%
|
|
display flex
|
|
flex-wrap wrap
|
|
|
|
& > button {
|
|
margin 0
|
|
}
|
|
}
|
|
}
|
|
|
|
.tool-bar {
|
|
display flex
|
|
justify-content space-between
|
|
margin 0 0 20px 0
|
|
}
|
|
|
|
.pagination {
|
|
justify-content: end;
|
|
margin: 8px;
|
|
}
|
|
</style>
|