|
@@ -1,83 +1,81 @@
|
|
|
<template>
|
|
|
- <div class="quality-lexicon-container layout-pd">
|
|
|
- <el-card shadow="never">
|
|
|
- <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent>
|
|
|
- <el-form-item label="违禁词分类" prop="Classify">
|
|
|
- <el-select v-model="state.queryParams.Classify" placeholder="请选择违禁词分类">
|
|
|
- <el-option v-for="item in prohibitedClassify" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName" />
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="违禁词属性" prop="Type">
|
|
|
- <el-select v-model="state.queryParams.Type" placeholder="请选择违禁词属性">
|
|
|
- <el-option v-for="item in prohibitedType" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName"/>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="违禁词" prop="Name">
|
|
|
- <el-input v-model="state.queryParams.Name" placeholder="请输入违禁词" clearable @keyup.enter="queryList" class="width300"/>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item>
|
|
|
- <el-button type="primary" @click="queryList" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
|
|
|
- <el-button @click="resetQuery(ruleFormRef)" v-waves class="default-button"> <SvgIcon name="ele-Refresh" class="mr5" />重置 </el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </el-card>
|
|
|
- <el-card shadow="never">
|
|
|
- <div class="mb20">
|
|
|
- <el-button type="primary" @click="onLexiconAdd" v-auth="'quality:lexicon:add'">
|
|
|
- <SvgIcon name="ele-Plus" class="mr5" />新增
|
|
|
- </el-button>
|
|
|
- <el-button type="primary" @click="onLexiconDelete" v-auth="'quality:lexicon:delete'" :disabled="!multipleSelection.length">
|
|
|
- <SvgIcon name="ele-Delete" class="mr5" />删除
|
|
|
- </el-button>
|
|
|
- </div>
|
|
|
- <!-- 表格 -->
|
|
|
- <el-table :data="state.tableData" v-loading="state.loading" row-key="id" ref="multipleTableRef" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column type="selection" width="55" />
|
|
|
- <el-table-column prop="name" label="违禁词" show-overflow-tooltip width="300"></el-table-column>
|
|
|
- <el-table-column prop="classify" label="违禁词分类" show-overflow-tooltip width="130"></el-table-column>
|
|
|
- <el-table-column prop="type" label="违禁词属性" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="creatorName" label="创建人" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="creationTime" label="创建时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.creationTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="lastModificationName" label="更新人" show-overflow-tooltip></el-table-column>
|
|
|
- <el-table-column prop="lastModificationTime" label="更新时间" show-overflow-tooltip width="170">
|
|
|
- <template #default="{ row }">
|
|
|
- <span>{{ formatDate(row.lastModificationTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="操作" width="120" fixed="right" align="center">
|
|
|
- <template #default="{ row }">
|
|
|
- <el-button link type="primary" @click="onLexiconEdit(row)" v-auth="'quality:lexicon:edit'" title="编辑违禁词"> 编辑 </el-button>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <template #empty>
|
|
|
- <Empty />
|
|
|
- </template>
|
|
|
- </el-table>
|
|
|
- <!-- 分页 -->
|
|
|
- <pagination
|
|
|
- :total="state.total"
|
|
|
- v-model:page="state.queryParams.PageIndex"
|
|
|
- v-model:limit="state.queryParams.PageSize"
|
|
|
- @pagination="queryList"
|
|
|
- />
|
|
|
- </el-card>
|
|
|
- <!-- 违禁词新增 -->
|
|
|
- <lexicon-add ref="lexiconAddRef" @updateList="queryList" :prohibitedClassify="prohibitedClassify" :prohibitedType="prohibitedType"/>
|
|
|
- <!-- 违禁词编辑 -->
|
|
|
- <lexicon-edit ref="lexiconEditRef" @updateList="queryList" :prohibitedClassify="prohibitedClassify" :prohibitedType="prohibitedType"/>
|
|
|
- </div>
|
|
|
+ <div class="quality-lexicon-container layout-pd">
|
|
|
+ <el-card shadow="never">
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent>
|
|
|
+ <el-form-item label="违禁词" prop="Name">
|
|
|
+ <el-input v-model="state.queryParams.Name" placeholder="请输入违禁词" clearable @keyup.enter="queryList" class="keyword-input" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="违禁词分类" prop="Classify">
|
|
|
+ <el-select v-model="state.queryParams.Classify" placeholder="请选择违禁词分类">
|
|
|
+ <el-option v-for="item in prohibitedClassify" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="违禁词属性" prop="Type">
|
|
|
+ <el-select v-model="state.queryParams.Type" placeholder="请选择违禁词属性">
|
|
|
+ <el-option v-for="item in prohibitedType" :value="item.dicDataValue" :key="item.dicDataValue" :label="item.dicDataName" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" @click="queryList" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
|
|
|
+ <el-button @click="resetQuery(ruleFormRef)" v-waves class="default-button"> <SvgIcon name="ele-Refresh" class="mr5" />重置 </el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </el-card>
|
|
|
+ <el-card shadow="never">
|
|
|
+ <div class="mb20">
|
|
|
+ <el-button type="primary" @click="onLexiconAdd" v-auth="'quality:lexicon:add'"> <SvgIcon name="ele-Plus" class="mr5" />新增 </el-button>
|
|
|
+ <el-button type="primary" @click="onLexiconDelete" v-auth="'quality:lexicon:delete'" :disabled="!multipleSelection.length">
|
|
|
+ <SvgIcon name="ele-Delete" class="mr5" />删除
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
+ <!-- 表格 -->
|
|
|
+ <el-table :data="state.tableData" v-loading="state.loading" row-key="id" ref="multipleTableRef" @selection-change="handleSelectionChange">
|
|
|
+ <el-table-column type="selection" width="55" />
|
|
|
+ <el-table-column prop="name" label="违禁词" show-overflow-tooltip width="300"></el-table-column>
|
|
|
+ <el-table-column prop="classify" label="违禁词分类" show-overflow-tooltip width="130"></el-table-column>
|
|
|
+ <el-table-column prop="type" label="违禁词属性" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="creatorName" label="创建人" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="creationTime" label="创建时间" show-overflow-tooltip width="170">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <span>{{ formatDate(row.creationTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="lastModificationName" label="更新人" show-overflow-tooltip></el-table-column>
|
|
|
+ <el-table-column prop="lastModificationTime" label="更新时间" show-overflow-tooltip width="170">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <span>{{ formatDate(row.lastModificationTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" width="120" fixed="right" align="center">
|
|
|
+ <template #default="{ row }">
|
|
|
+ <el-button link type="primary" @click="onLexiconEdit(row)" v-auth="'quality:lexicon:edit'" title="编辑违禁词"> 编辑 </el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <template #empty>
|
|
|
+ <Empty />
|
|
|
+ </template>
|
|
|
+ </el-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <pagination
|
|
|
+ :total="state.total"
|
|
|
+ v-model:page="state.queryParams.PageIndex"
|
|
|
+ v-model:limit="state.queryParams.PageSize"
|
|
|
+ @pagination="queryList"
|
|
|
+ />
|
|
|
+ </el-card>
|
|
|
+ <!-- 违禁词新增 -->
|
|
|
+ <lexicon-add ref="lexiconAddRef" @updateList="queryList" :prohibitedClassify="prohibitedClassify" :prohibitedType="prohibitedType" />
|
|
|
+ <!-- 违禁词编辑 -->
|
|
|
+ <lexicon-edit ref="lexiconEditRef" @updateList="queryList" :prohibitedClassify="prohibitedClassify" :prohibitedType="prohibitedType" />
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup name="qualityLexicon">
|
|
|
-import {defineAsyncComponent, onMounted, reactive, ref} from 'vue';
|
|
|
-import {ElMessage, ElMessageBox, FormInstance} from 'element-plus';
|
|
|
-import {formatDate} from '@/utils/formatTime';
|
|
|
-import {auth} from "@/utils/authFunction";
|
|
|
-import {lexiconBaseData, lexiconDelete, lexiconList} from '@/api/quality/lexicon';
|
|
|
+import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
|
|
|
+import { ElMessage, ElMessageBox, FormInstance } from 'element-plus';
|
|
|
+import { formatDate } from '@/utils/formatTime';
|
|
|
+import { auth } from '@/utils/authFunction';
|
|
|
+import { lexiconBaseData, lexiconDelete, lexiconList } from '@/api/quality/lexicon';
|
|
|
|
|
|
// 引入组件
|
|
|
const LexiconAdd = defineAsyncComponent(() => import('@/views/quality/lexicon/components/Lexicon-add.vue')); // 违禁词新增
|
|
@@ -85,97 +83,96 @@ const LexiconEdit = defineAsyncComponent(() => import('@/views/quality/lexicon/c
|
|
|
|
|
|
// 定义变量内容
|
|
|
const state = reactive<any>({
|
|
|
- loading: false, // 加载状态
|
|
|
- queryParams: {
|
|
|
- // 查询参数
|
|
|
- PageIndex: 1,
|
|
|
- PageSize: 10,
|
|
|
- Classify: null,
|
|
|
- Type: null,
|
|
|
- Name:null
|
|
|
- },
|
|
|
- total: 0, // 总条数
|
|
|
- tableData: [], // 表格数据
|
|
|
+ loading: false, // 加载状态
|
|
|
+ queryParams: {
|
|
|
+ // 查询参数
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 10,
|
|
|
+ Classify: null,
|
|
|
+ Type: null,
|
|
|
+ Name: null,
|
|
|
+ },
|
|
|
+ total: 0, // 总条数
|
|
|
+ tableData: [], // 表格数据
|
|
|
});
|
|
|
const ruleFormRef = ref<RefType>(null); // 表单ref
|
|
|
const prohibitedClassify = ref<EmptyArrayType>([]); // 违禁词分类
|
|
|
const prohibitedType = ref<EmptyArrayType>([]); // 违禁词属性
|
|
|
-const getBaseData = async ()=>{
|
|
|
- try {
|
|
|
- const res = await lexiconBaseData();
|
|
|
- prohibitedClassify.value = res.result?.prohibitedClassify ?? [];
|
|
|
- prohibitedType.value = res.result?.prohibitedType ?? [];
|
|
|
- } catch (error) {
|
|
|
- console.log(error);
|
|
|
- }
|
|
|
-}
|
|
|
+const getBaseData = async () => {
|
|
|
+ try {
|
|
|
+ const res = await lexiconBaseData();
|
|
|
+ prohibitedClassify.value = res.result?.prohibitedClassify ?? [];
|
|
|
+ prohibitedType.value = res.result?.prohibitedType ?? [];
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+};
|
|
|
// 获取参数列表
|
|
|
const queryList = () => {
|
|
|
- state.loading = true;
|
|
|
- if (!auth('quality:lexicon:query')) ElMessage.error('抱歉,您没有权限获取质检词库列表!');
|
|
|
- else {
|
|
|
- lexiconList(state.queryParams)
|
|
|
- .then((res) => {
|
|
|
- state.loading = false;
|
|
|
- state.tableData = res.result.items ?? [];
|
|
|
- state.total = res.result.total ?? 0;
|
|
|
- })
|
|
|
- .finally(() => {
|
|
|
- state.loading = false;
|
|
|
- });
|
|
|
- }
|
|
|
+ state.loading = true;
|
|
|
+ if (!auth('quality:lexicon:query')) ElMessage.error('抱歉,您没有权限获取质检词库列表!');
|
|
|
+ else {
|
|
|
+ lexiconList(state.queryParams)
|
|
|
+ .then((res) => {
|
|
|
+ state.loading = false;
|
|
|
+ state.tableData = res.result.items ?? [];
|
|
|
+ state.total = res.result.total ?? 0;
|
|
|
+ })
|
|
|
+ .finally(() => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+ }
|
|
|
};
|
|
|
// 重置表单
|
|
|
const resetQuery = (formEl: FormInstance | undefined) => {
|
|
|
- if (!formEl) return;
|
|
|
- formEl.resetFields();
|
|
|
- queryList();
|
|
|
+ if (!formEl) return;
|
|
|
+ formEl.resetFields();
|
|
|
+ queryList();
|
|
|
};
|
|
|
// 新增意见
|
|
|
const lexiconAddRef = ref<RefType>(); // 意见新增
|
|
|
const onLexiconAdd = () => {
|
|
|
- lexiconAddRef.value.openDialog();
|
|
|
+ lexiconAddRef.value.openDialog();
|
|
|
};
|
|
|
// 修改意见
|
|
|
const lexiconEditRef = ref<RefType>(); // 修改意见
|
|
|
const onLexiconEdit = (row: any) => {
|
|
|
- lexiconEditRef.value.openDialog(row);
|
|
|
+ lexiconEditRef.value.openDialog(row);
|
|
|
};
|
|
|
// 表格多选
|
|
|
const multipleTableRef = ref<RefType>();
|
|
|
const multipleSelection = ref<any>([]);
|
|
|
const handleSelectionChange = (val: any[]) => {
|
|
|
- multipleSelection.value = val;
|
|
|
+ multipleSelection.value = val;
|
|
|
};
|
|
|
// 删除参数
|
|
|
const onLexiconDelete = () => {
|
|
|
- const names = multipleSelection.value.map((item: any) => item.name).join('、');
|
|
|
- const ids = multipleSelection.value.map((item: any) => item.id);
|
|
|
- ElMessageBox.confirm(`您确定要删除:【${names}】违禁词,是否继续?`, '提示', {
|
|
|
- confirmButtonText: '确认',
|
|
|
- cancelButtonText: '取消',
|
|
|
- type: 'warning',
|
|
|
- draggable: true,
|
|
|
- cancelButtonClass: 'default-button',
|
|
|
- autofocus: false,
|
|
|
- })
|
|
|
- .then(() => {
|
|
|
- lexiconDelete({ids}).then(() => {
|
|
|
- ElMessage.success('操作成功');
|
|
|
- queryList();
|
|
|
- });
|
|
|
- })
|
|
|
- .catch(() => {});
|
|
|
+ const names = multipleSelection.value.map((item: any) => item.name).join('、');
|
|
|
+ const ids = multipleSelection.value.map((item: any) => item.id);
|
|
|
+ ElMessageBox.confirm(`您确定要删除:【${names}】违禁词,是否继续?`, '提示', {
|
|
|
+ confirmButtonText: '确认',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning',
|
|
|
+ draggable: true,
|
|
|
+ cancelButtonClass: 'default-button',
|
|
|
+ autofocus: false,
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ lexiconDelete({ ids }).then(() => {
|
|
|
+ ElMessage.success('操作成功');
|
|
|
+ queryList();
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
};
|
|
|
// 页面加载时
|
|
|
onMounted(() => {
|
|
|
- getBaseData();
|
|
|
- queryList();
|
|
|
+ getBaseData();
|
|
|
+ queryList();
|
|
|
});
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.quality-lexicon-container {
|
|
|
-
|
|
|
}
|
|
|
</style>
|