123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <div class="auxiliary-Smart-call-out-template-container layout-pd">
- <el-card shadow="never">
- <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent>
- <el-form-item label="模板标题" prop="Label">
- <el-input v-model="state.queryParams.Label" placeholder="请输入模板标题" clearable @keyup.enter="handleQuery" class="keyword-input" />
- </el-form-item>
- <el-form-item label="创建时间" prop="crTime">
- <el-date-picker
- v-model="state.queryParams.crTime"
- type="datetimerange"
- unlink-panels
- range-separator="至"
- start-placeholder="开始时间"
- end-placeholder="结束时间"
- :shortcuts="shortcuts"
- @change="timeStartChangeCr"
- value-format="YYYY-MM-DD[T]HH:mm:ss"
- />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="handleQuery" :loading="state.loading"> <SvgIcon name="ele-Search" class="mr5" />查询 </el-button>
- <el-button @click="resetQuery(ruleFormRef)" class="default-button"> <SvgIcon name="ele-Refresh" class="mr5" />重置 </el-button>
- </el-form-item>
- </el-form>
- </el-card>
- <el-card shadow="never">
- <!-- 表格 -->
- <ProTable
- ref="proTableRef"
- :columns="columns"
- :data="state.tableData"
- @updateTable="queryList"
- :loading="state.loading"
- :total="state.total"
- v-model:page-index="state.queryParams.PageIndex"
- v-model:page-size="state.queryParams.PageSize"
- >
- <template #tableHeader="scope">
- <el-button type="primary" @click="onAdd" v-auth="'auxiliary:smartCallOut:tem:add'">
- <SvgIcon name="ele-Plus" class="mr5" /> 新增模板
- </el-button>
- </template>
- <!-- 表格操作 -->
- <template #operation="{ row }">
- <el-button link type="primary" @click="onEdit(row)" v-auth="'auxiliary:smartCallOut:tem:edit'" title="编辑模板"> 编辑 </el-button>
- <el-button link type="primary" @click="onDelete(row)" v-auth="'auxiliary:smartCallOut:tem:delete'" title="删除模板"> 删除 </el-button>
- </template>
- </ProTable>
- </el-card>
- <!-- 新增模板 -->
- <tem-add ref="temAddRef" @updateList="queryList" />
- <!-- 编辑模板 -->
- <tem-edit ref="temEditRef" @updateList="queryList" />
- </div>
- </template>
- <script lang="tsx" setup name="auxiliarySmartCallOutTemplate">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElButton, ElMessage, ElMessageBox, FormInstance } from 'element-plus';
- import { formatDate } from '@/utils/formatTime';
- import { citizenDelete, citizenList } from '@/api/auxiliary/citizen';
- import { shortcuts } from '@/utils/constants';
- import { auth } from "@/utils/authFunction";
- // 引入组件
- const TemAdd = defineAsyncComponent(() => import('@/views/auxiliary/smartCallOut/components/Tem-add.vue')); // 新建模板
- const TemEdit = defineAsyncComponent(() => import('@/views/auxiliary/smartCallOut/components/Tem-edit.vue')); // 编辑标签
- const proTableRef = ref<RefType>(); // 表格ref
- // 表格配置项
- const columns = ref<any[]>([
- { prop: 'phoneNumber', label: '标题'},
- { prop: 'label', label: '关联外呼任务'},
- {
- prop: 'isEnable',
- label: '是否启用',
- render: (scope) => {
- return (
- <>
- {auth('quality:template:edit') ? (
- <el-switch
- model-value={scope.row.isEnable}
- active-text="启用"
- inactive-text="禁用"
- active-value={1}
- inactive-value={0}
- onClick={() => changeIsEnable(scope.row)}
- inline-prompt
- />
- ) : (
- <span>{scope.row.isEnable === 1 ? '启用' : '禁用'}</span>
- )}
- </>
- );
- },
- },
- { prop: 'creatorName', label: '创建人' },
- { prop: 'creatorName', label: '创建部门' },
- {
- prop: 'creationTime',
- label: '创建时间',
- width: 170,
- render: (scope) => {
- return <span>{formatDate(scope.row.creationTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
- },
- },
- { prop: 'operation', label: '操作', fixed: 'right', width: 140, align: 'center' },
- ]);
- // 定义变量内容
- const state = reactive({
- loading: false, // 加载状态
- queryParams: {
- // 查询参数
- PageIndex: 1,
- PageSize: 10,
- PhoneNumber: null,
- Label: null,
- },
- total: 0, // 总条数
- tableData: [], // 表格数据
- });
- const ruleFormRef = ref<RefType>(null); // 表单ref
- /** 搜索按钮操作 */
- const handleQuery = () => {
- state.queryParams.PageIndex = 1;
- queryList();
- };
- const handleTimeChange = (val: string[], startKey: string, endKey: string) => {
- if (val) {
- state.queryParams[startKey] = val[0];
- state.queryParams[endKey] = val[1];
- } else {
- state.queryParams[startKey] = null;
- state.queryParams[endKey] = null;
- }
- handleQuery();
- };
- // 创建时间
- const timeStartChangeCr = (val: string[]) => {
- handleTimeChange(val, 'StartTime', 'EndTime');
- queryList();
- };
- // 获取列表
- const queryList = () => {
- /*state.loading = true;
- 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 temAddRef = ref<RefType>();
- const onAdd = (row: any) => {
- temAddRef.value.openDialog();
- };
- // 编辑模板
- const temEditRef = ref<RefType>();
- const onEdit = (row: any) => {
- temEditRef.value.openDialog(row);
- };
- // 删除模板
- const onDelete = (row: any) => {
- ElMessageBox.confirm('确定要删除当前模板?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(() => {
- }).catch(()=>{
- })
- };
- // 启用和禁用
- const changeIsEnable = (row: any) => {
- ElMessageBox.confirm(`您确定要${row.isEnable === 1 ? '禁用' : '启用'}:【${row.name}】模板,是否继续?`, '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- draggable: true,
- cancelButtonClass: 'default-button',
- autofocus: false,
- })
- .then(() => {
- // const isEnable = row.isEnable === 1 ? 0 : 1;
- // const request = {
- // ...row,
- // isEnable: isEnable,
- // };
- // templateUpdate(request)
- // .then(() => {
- // ElMessage.success('操作成功');
- // queryList();
- // })
- // .catch(() => {
- // queryList();
- // });
- })
- .catch(() => {
- });
- };
- // 页面加载时
- onMounted(() => {
- queryList();
- });
- </script>
|