|
@@ -0,0 +1,164 @@
|
|
|
+<template>
|
|
|
+ <div class="quality-lexicon-container layout-pd">
|
|
|
+ <el-card shadow="never">
|
|
|
+ <el-form :model="state.queryParams" ref="ruleFormRef" :inline="true" @submit.native.prevent>
|
|
|
+ <el-form-item label="市民联系方式" prop="Name">
|
|
|
+ <el-input v-model="state.queryParams.Name" placeholder="请输入市民联系方式" clearable @keyup.enter="queryList" style="width: 250px" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="市民标签" prop="Name">
|
|
|
+ <el-input v-model="state.queryParams.Name" placeholder="请输入市民标签" clearable @keyup.enter="queryList" style="width: 250px" />
|
|
|
+ </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-waves v-auth="'business:citizen:add'">
|
|
|
+ <SvgIcon name="ele-Plus" class="mr5" />新增
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" @click="onLexiconDelete" v-waves v-auth="'business:citizen: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="200"></el-table-column>
|
|
|
+ <el-table-column prop="classify" label="市民标签" show-overflow-tooltip width="200"></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="'business:citizen:tag'" title="查看市民标签记录"> 标签记录 </el-button>
|
|
|
+ <el-button link type="primary" @click="onLexiconEdit(row)" v-auth="'business:citizen: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="businessCitizen">
|
|
|
+import { reactive, ref, onMounted, defineAsyncComponent } from 'vue';
|
|
|
+import { ElMessage, ElMessageBox, FormInstance } from 'element-plus';
|
|
|
+import { formatDate } from '/@/utils/formatTime';
|
|
|
+import {auth} from "/@/utils/authFunction";
|
|
|
+import {citizenList,citizenDelete} from "/@/api/business/citizen"
|
|
|
+
|
|
|
+// 引入组件
|
|
|
+const LexiconAdd = defineAsyncComponent(() => import('/@/views/quality/lexicon/components/Lexicon-add.vue')); // 违禁词新增
|
|
|
+const LexiconEdit = defineAsyncComponent(() => import('/@/views/quality/lexicon/components/Lexicon-edit.vue')); // 违禁词编辑
|
|
|
+
|
|
|
+// 定义变量内容
|
|
|
+const state = reactive<any>({
|
|
|
+ loading: false, // 加载状态
|
|
|
+ queryParams: {
|
|
|
+ // 查询参数
|
|
|
+ PageIndex: 1,
|
|
|
+ PageSize: 10,
|
|
|
+ Classify: null,
|
|
|
+ Type: null,
|
|
|
+ Name:''
|
|
|
+ },
|
|
|
+ total: 0, // 总条数
|
|
|
+ tableData: [], // 表格数据
|
|
|
+});
|
|
|
+const ruleFormRef = ref<RefType>(null); // 表单ref
|
|
|
+const prohibitedClassify = ref<EmptyArrayType>([]); // 违禁词分类
|
|
|
+const prohibitedType = ref<EmptyArrayType>([]); // 违禁词属性
|
|
|
+// 获取参数列表
|
|
|
+const queryList = () => {
|
|
|
+ state.loading = true;
|
|
|
+ if (!auth('business:citizen:query')) ElMessage.error('抱歉,您没有权限获取市民画像列表!');
|
|
|
+ else {
|
|
|
+ citizenList(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();
|
|
|
+};
|
|
|
+// 新增意见
|
|
|
+const lexiconAddRef = ref<RefType>(); // 意见新增
|
|
|
+const onLexiconAdd = () => {
|
|
|
+ lexiconAddRef.value.openDialog();
|
|
|
+};
|
|
|
+// 修改意见
|
|
|
+const lexiconEditRef = ref<RefType>(); // 修改意见
|
|
|
+const onLexiconEdit = (row: any) => {
|
|
|
+ lexiconEditRef.value.openDialog(row);
|
|
|
+};
|
|
|
+// 表格多选
|
|
|
+const multipleTableRef = ref<RefType>();
|
|
|
+const multipleSelection = ref<any>([]);
|
|
|
+const handleSelectionChange = (val: any[]) => {
|
|
|
+ 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(() => {
|
|
|
+ citizenDelete({ids}).then(() => {
|
|
|
+ ElMessage.success('操作成功');
|
|
|
+ queryList();
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(() => {});
|
|
|
+};
|
|
|
+// 页面加载时
|
|
|
+onMounted(() => {
|
|
|
+ queryList();
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.quality-lexicon-container {
|
|
|
+
|
|
|
+}
|
|
|
+</style>
|