|
@@ -1,54 +1,60 @@
|
|
|
<template>
|
|
|
- <el-card class="mt8" shadow="never" :body-style="{ paddingBottom: '0' }">
|
|
|
- <el-form :model="state.filterModel" :inline="true" @submit.stop.prevent>
|
|
|
- <el-form-item prop="name">
|
|
|
- <el-input v-model="state.filterModel.name" placeholder="名称或编码" @keyup.enter="onQuery" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" icon="ele-Search" @click="onQuery"> 查询 </el-button>
|
|
|
- <el-button v-auth="'api:admin:dictionary:add'" type="primary" icon="ele-Plus" @click="onAdd"> 新增 </el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </el-card>
|
|
|
-
|
|
|
- <el-card class="my-fill mt8" shadow="never">
|
|
|
- <el-table v-loading="state.loading" :data="state.dictionaryListData" row-key="id" style="width: 100%">
|
|
|
- <el-table-column prop="name" label="名称" min-width="120" show-overflow-tooltip />
|
|
|
- <el-table-column prop="code" label="编码" min-width="120" show-overflow-tooltip />
|
|
|
- <el-table-column prop="value" label="值" min-width="120" show-overflow-tooltip />
|
|
|
- <el-table-column label="状态" width="70" align="center" show-overflow-tooltip>
|
|
|
- <template #default="{ row }">
|
|
|
- <el-tag type="success" v-if="row.enabled">启用</el-tag>
|
|
|
- <el-tag type="danger" v-else>禁用</el-tag>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" width="140" fixed="right" header-align="center" align="center">
|
|
|
- <template #default="{ row }">
|
|
|
- <el-button v-auth="'api:admin:dictionary:update'" icon="ele-EditPen" size="small" text type="primary" @click="onEdit(row)">编辑</el-button>
|
|
|
- <el-button v-auth="'api:admin:dictionary:delete'" icon="ele-Delete" size="small" text type="danger" @click="onDelete(row)">删除</el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- </el-table>
|
|
|
- <div class="my-flex my-flex-end" style="margin-top: 20px">
|
|
|
- <el-pagination
|
|
|
- v-model:currentPage="state.pageInput.currentPage"
|
|
|
- v-model:page-size="state.pageInput.pageSize"
|
|
|
- :total="state.total"
|
|
|
- :page-sizes="[10, 20, 50, 100]"
|
|
|
- small
|
|
|
- background
|
|
|
- @size-change="onSizeChange"
|
|
|
- @current-change="onCurrentChange"
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </el-card>
|
|
|
-
|
|
|
- <dictionary-form ref="dictionaryFormRef" :title="state.dictionaryFormTitle"></dictionary-form>
|
|
|
+ <div class="my-flex-column w100 h100">
|
|
|
+ <el-card class="mt8" shadow="never" :body-style="{ paddingBottom: '0' }">
|
|
|
+ <el-form :model="state.filterModel" :inline="true" @submit.stop.prevent>
|
|
|
+ <el-form-item prop="name">
|
|
|
+ <el-input v-model="state.filterModel.name" placeholder="名称或编码" @keyup.enter="onQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="ele-Search" @click="onQuery"> 查询 </el-button>
|
|
|
+ <el-button v-auth="'api:admin:dictionary:add'" type="primary" icon="ele-Plus" @click="onAdd"> 新增 </el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+
|
|
|
+ <el-card class="my-fill mt8" shadow="never">
|
|
|
+ <el-table v-loading="state.loading" :data="state.dictionaryListData" row-key="id" style="width: 100%">
|
|
|
+ <el-table-column prop="name" label="名称" min-width="120" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="code" label="编码" min-width="120" show-overflow-tooltip />
|
|
|
+ <el-table-column prop="value" label="值" min-width="120" show-overflow-tooltip />
|
|
|
+ <el-table-column label="状态" width="70" align="center" show-overflow-tooltip>
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-tag type="success" v-if="row.enabled">启用</el-tag>
|
|
|
+ <el-tag type="danger" v-else>禁用</el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="140" fixed="right" header-align="center" align="center">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button v-auth="'api:admin:dictionary:update'" icon="ele-EditPen" size="small" text type="primary" @click="onEdit(row)"
|
|
|
+ >编辑</el-button
|
|
|
+ >
|
|
|
+ <el-button v-auth="'api:admin:dictionary:delete'" icon="ele-Delete" size="small" text type="danger" @click="onDelete(row)"
|
|
|
+ >删除</el-button
|
|
|
+ >
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <div class="my-flex my-flex-end" style="margin-top: 20px">
|
|
|
+ <el-pagination
|
|
|
+ v-model:currentPage="state.pageInput.currentPage"
|
|
|
+ v-model:page-size="state.pageInput.pageSize"
|
|
|
+ :total="state.total"
|
|
|
+ :page-sizes="[10, 20, 50, 100]"
|
|
|
+ small
|
|
|
+ background
|
|
|
+ @size-change="onSizeChange"
|
|
|
+ @current-change="onCurrentChange"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </el-card>
|
|
|
+
|
|
|
+ <dictionary-form ref="dictionaryFormRef" :title="state.dictionaryFormTitle"></dictionary-form>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
-<script lang="ts" setup name="admin/dictType">
|
|
|
-import { ref, reactive, onMounted, getCurrentInstance, onUnmounted, defineAsyncComponent } from 'vue'
|
|
|
+<script lang="ts" setup name="admin/dictData">
|
|
|
+import { ref, reactive, onMounted, getCurrentInstance, onBeforeMount, defineAsyncComponent } from 'vue'
|
|
|
import { DictionaryListOutput, PageInputDictionaryGetPageDto, DictionaryTypeListOutput } from '/@/api/admin/data-contracts'
|
|
|
import { DictionaryApi } from '/@/api/admin/Dictionary'
|
|
|
import eventBus from '/@/utils/mitt'
|
|
@@ -77,16 +83,13 @@ const state = reactive({
|
|
|
})
|
|
|
|
|
|
onMounted(() => {
|
|
|
- eventBus.on('refreshDict', (data: DictionaryTypeListOutput) => {
|
|
|
- if ((data?.id as number) > 0) {
|
|
|
- state.filterModel.dictionaryTypeId = data.id as number
|
|
|
- state.dictionaryTypeName = data.name as string
|
|
|
- }
|
|
|
+ eventBus.off('refreshDict')
|
|
|
+ eventBus.on('refreshDict', () => {
|
|
|
onQuery()
|
|
|
})
|
|
|
})
|
|
|
|
|
|
-onUnmounted(() => {
|
|
|
+onBeforeMount(() => {
|
|
|
eventBus.off('refreshDict')
|
|
|
})
|
|
|
|
|
@@ -102,6 +105,10 @@ const onQuery = async () => {
|
|
|
}
|
|
|
|
|
|
const onAdd = () => {
|
|
|
+ if (!(state.filterModel.dictionaryTypeId > 0)) {
|
|
|
+ proxy.$modal.msgWarning('请选择字典类型')
|
|
|
+ return
|
|
|
+ }
|
|
|
state.dictionaryFormTitle = `新增【${state.dictionaryTypeName}】字典`
|
|
|
dictionaryFormRef.value.open({ dictionaryTypeId: state.filterModel.dictionaryTypeId })
|
|
|
}
|
|
@@ -130,6 +137,18 @@ const onCurrentChange = (val: number) => {
|
|
|
state.pageInput.currentPage = val
|
|
|
onQuery()
|
|
|
}
|
|
|
+
|
|
|
+const refresh = (data: DictionaryTypeListOutput) => {
|
|
|
+ if ((data?.id as number) > 0) {
|
|
|
+ state.filterModel.dictionaryTypeId = data.id as number
|
|
|
+ state.dictionaryTypeName = data.name as string
|
|
|
+ onQuery()
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+defineExpose({
|
|
|
+ refresh,
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss"></style>
|