123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <template>
- <div class="business-repeat-event-container layout-pd">
- <el-card shadow="never">
- <el-form :model="state.queryParams" ref="ruleFormRef" inline @submit.native.prevent>
- <el-form-item label="标题" prop="Title">
- <el-input v-model="state.queryParams.Title" placeholder="请填写重复性事件标题" clearable @keyup.enter="handleQuery" class="keyword-input" />
- </el-form-item>
- <el-form-item label="关键词" prop="KeyWords">
- <el-input v-model="state.queryParams.KeyWords" placeholder="请填写关键词" clearable @keyup.enter="handleQuery" class="keyword-input" />
- </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)" v-waves 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 #operation="{ row }">
- <el-button link type="primary" @click="onEventDetail(row)" title="查看重复性详情"> 事件详情 </el-button>
- <el-button link type="primary" @click="onEventEdit(row)" v-auth="'business:repeatEvent:edit'" title="编辑重复性事件"> 编辑 </el-button>
- </template>
- </ProTable>
- </el-card>
- <!-- 事件详情 -->
- <repeat-event-detail ref="repeatEventDetailRef" />
- <!-- 编辑重复性事件 -->
- <repeat-event-edit ref="repeatEventEditRef" @updateList="queryList" />
- </div>
- </template>
- <script lang="tsx" setup name="businessRepeatEvent">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElMessage, FormInstance } from 'element-plus';
- import { formatDate } from '@/utils/formatTime';
- import { auth } from '@/utils/authFunction';
- import { repeatEventList } from '@/api/business/repeatEvent';
- // 引入组件
- const RepeatEventDetail = defineAsyncComponent(() => import('@/views/business/repeatEvent/components/Repeat-event-detail.vue')); // 重复性事件详情
- const RepeatEventEdit = defineAsyncComponent(() => import('@/views/business/repeatEvent/components/Repeat-event-edit.vue')); // 编辑重复性事件
- const proTableRef = ref<RefType>(); // 表格ref
- // 表格配置项
- const columns = ref<any[]>([
- { prop: 'title', label: '重复事件标题', width: 300 },
- { prop: 'keyWords', label: '关键词', width: 300 },
- { prop: 'creatorName', label: '创建人' },
- {
- prop: 'creationTime',
- label: '创建时间',
- width: 170,
- render: (scope) => {
- return <span>{formatDate(scope.row.creationTime, 'YYYY-mm-dd HH:MM:SS')}</span>;
- },
- },
- { prop: 'lastModificationName', label: '更新人' },
- {
- prop: 'lastModificationTime',
- label: '更新时间',
- width: 170,
- render: (scope) => {
- return <span>{formatDate(scope.row.lastModificationTime, '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,
- Title: null,
- Keyword: null,
- },
- total: 0, // 总条数
- tableData: [], // 表格数据
- });
- const ruleFormRef = ref<RefType>(null); // 表单ref
- // 手动查询,将页码设置为1
- const handleQuery = () => {
- state.queryParams.PageIndex = 1;
- queryList();
- };
- // 获取参数列表
- const queryList = () => {
- state.loading = true;
- repeatEventList(state.queryParams)
- .then((res: any) => {
- 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 repeatEventDetailRef = ref<RefType>();
- const onEventDetail = (row: any) => {
- repeatEventDetailRef.value.openDialog(row);
- };
- // 编辑重复性事件
- const repeatEventEditRef = ref<RefType>();
- const onEventEdit = (row: any) => {
- repeatEventEditRef.value.openDialog(row);
- };
- // 页面加载时
- onMounted(() => {
- queryList();
- });
- </script>
|