|
@@ -0,0 +1,145 @@
|
|
|
+<template>
|
|
|
+ <CusDialog
|
|
|
+ :show="show"
|
|
|
+ title="字典信息"
|
|
|
+ @onClose="$emit('update:show', false)"
|
|
|
+ width="90%"
|
|
|
+ height="90%"
|
|
|
+ :show-submit="false"
|
|
|
+ >
|
|
|
+ <div class="__cus-manage_content">
|
|
|
+ <div class="__cus-manage_content-filters">
|
|
|
+ <CusButton type="main" title="新增" style="display: block;margin-left: auto" @click="onAdd"/>
|
|
|
+ </div>
|
|
|
+ <div class="__cus-manage_content-main" v-loading="state.query.loading">
|
|
|
+ <CusTable
|
|
|
+ :data="state.query.result.data"
|
|
|
+ :table-head="state.query.tableHead"
|
|
|
+ :no-page="true"
|
|
|
+ >
|
|
|
+ <template #fieldType-column-value="{scope}">
|
|
|
+ {{DictionaryStore.fieTypeMap.get(scope.row.fieldType)}}
|
|
|
+ </template>
|
|
|
+ <template #searchShow-column-value="{scope}">
|
|
|
+ {{DictionaryStore.trueFalseMap.get(String(scope.row.searchShow))}}
|
|
|
+ </template>
|
|
|
+ <template #pictureField-column-value="{scope}">
|
|
|
+ {{DictionaryStore.trueFalseMap.get(String(scope.row.pictureField))}}
|
|
|
+ </template>
|
|
|
+ <template #do-column-value="{scope}">
|
|
|
+ <CusButton type="table-edit" @click="onEdit(scope.row)"/>
|
|
|
+ <CusButton type="table-del" @click="onDel(scope.row)"/>
|
|
|
+ </template>
|
|
|
+ </CusTable>
|
|
|
+ </div>
|
|
|
+ <TextDetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="initText"/>
|
|
|
+ </div>
|
|
|
+ </CusDialog>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="ts">
|
|
|
+import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
|
|
|
+import {useDictionaryStore} from "@/stores";
|
|
|
+import {ElMessage, ElMessageBox} from "element-plus";
|
|
|
+import {
|
|
|
+ sysIndexFieldDeleteById,
|
|
|
+ sysIndexFieldList,
|
|
|
+} from "@/api/modules/manage";
|
|
|
+import TextDetailCom from './text-detail.vue'
|
|
|
+
|
|
|
+const emit = defineEmits(['update:show', 'refresh'])
|
|
|
+const {proxy} = getCurrentInstance()
|
|
|
+const DictionaryStore = useDictionaryStore()
|
|
|
+const props = defineProps({
|
|
|
+ show: {default: false},
|
|
|
+ transfer: {}
|
|
|
+ })
|
|
|
+const state: any = reactive({
|
|
|
+ query: {
|
|
|
+ loading: false,
|
|
|
+ tableHead: [
|
|
|
+ {value: "fieldNameCn", label: "中文名称", fixed: 'left', minWidth: 160},
|
|
|
+ {value: "fieldNameEn", label: "英文定义", fixed: 'left', minWidth: 160, popover: true},
|
|
|
+ {value: "fieldType", label: "字段类型", fixed: 'left', minWidth: 160},
|
|
|
+ {value: "dataOrder", label: "排序", minWidth: 100},
|
|
|
+ {value: "searchWeight", label: "搜索权重", minWidth: 100},
|
|
|
+ {value: "searchShow", label: "搜索展示", minWidth: 100},
|
|
|
+ {value: "labelLength", label: "列占用数", minWidth: 100},
|
|
|
+ {value: "pictureField", label: "图片", minWidth: 100},
|
|
|
+ {value: "createTime", label: "创建时间", width: 200},
|
|
|
+ {value: "updateTime", label: "最后更新时间", width: 200},
|
|
|
+ {value: "remark", label: "备注"},
|
|
|
+ {value: "do", label: "操作", width: 200, fixed: 'right'},
|
|
|
+ ],
|
|
|
+ result: {
|
|
|
+ data: []
|
|
|
+ }
|
|
|
+ },
|
|
|
+ detail: {
|
|
|
+ show: false,
|
|
|
+ transfer: {}
|
|
|
+ },
|
|
|
+})
|
|
|
+const initText = () => {
|
|
|
+ state.query.loading = true
|
|
|
+ sysIndexFieldList(proxy.$util.formatGetParam({
|
|
|
+ indexId: props.transfer.id
|
|
|
+ })).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ state.query.result.data = res.data
|
|
|
+ state.query.loading = false
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.msg)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+const onAdd = () => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'add',
|
|
|
+ indexId: props.transfer.id
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
+}
|
|
|
+const onEdit = (row) => {
|
|
|
+ state.detail.transfer = {
|
|
|
+ mode: 'edit',
|
|
|
+ row: row
|
|
|
+ }
|
|
|
+ state.detail.show = true
|
|
|
+}
|
|
|
+const onDel = (row) => {
|
|
|
+ ElMessageBox.confirm(`请确认是否删除${row.fieldNameCn}?`, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ } as any).then(() => {
|
|
|
+ state.query.loading = true
|
|
|
+ sysIndexFieldDeleteById(row.id).then(res => {
|
|
|
+ if (res.code === 200) {
|
|
|
+ ElMessage.success('删除成功!')
|
|
|
+ state.query.loading = false
|
|
|
+ initText()
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.msg)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }).catch(() => {})
|
|
|
+}
|
|
|
+watch(() => props.show, (n) => {
|
|
|
+ if (n) {
|
|
|
+ initDictionary()
|
|
|
+ initText()
|
|
|
+ }
|
|
|
+})
|
|
|
+const initDictionary = () => {
|
|
|
+ DictionaryStore.initDict('true_false')
|
|
|
+ DictionaryStore.initDict('fie_type')
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.__cus-manage_content {
|
|
|
+ margin-bottom: 0;
|
|
|
+ height: calc(100% - 24px);
|
|
|
+}
|
|
|
+</style>
|