123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <template>
- <div class="business-special-audit-container layout-pd">
- <!-- 搜索 -->
- <el-card shadow="never">
- <el-tabs v-model="state.queryParams.AuditState" @tab-change="handleQuery">
- <el-tab-pane name="1" label="退回待审批"></el-tab-pane>
- <el-tab-pane name="2" label="退回已审批"></el-tab-pane>
- </el-tabs>
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent inline>
- <el-form-item label="关键词" prop="Keyword">
- <el-input v-model="state.queryParams.Keyword" 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="handleQuery"
- value-format="YYYY-MM-DD[T]HH:mm:ss"
- />
- </el-form-item>
- <el-form-item label="审批状态" prop="State" v-if="state.queryParams.AuditState === '2'">
- <el-select v-model="state.queryParams.State" placeholder="请选择审批状态" @change="handleQuery">
- <el-option value="1" label="审批通过" />
- <el-option value="2" label="审批拒绝" />
- </el-select>
- </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" :loading="state.loading">
- <SvgIcon name="ele-Refresh" class="mr5" />重置
- </el-button>
- </el-form-item>
- </el-form>
- <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 #isProvince="{ row }">
- <span>{{ row.order?.isProvince ? '省工单' : '市工单' }}</span>
- </template>
- <template #title="{ row }">
- <order-detail :order="row.order" @updateList="queryList">{{ row.order?.title }}</order-detail>
- </template>
- <template #employeeName="{ row }">
- <span
- >{{ row.order?.acceptorName }} <span v-if="row.order?.acceptorStaffNo">[{{ row.order?.acceptorStaffNo }}]</span>
- </span>
- </template>
- <!-- 表格操作 -->
- <template #operation="{ row }">
- <el-button link type="primary" @click="onAudit(row)" title="退回特提" v-auth="'business:return:audit'" v-if="[0].includes(row.state)">
- 审批
- </el-button>
- <el-button link type="primary" @click="onAuditDetail(row)" title="查看审批详情" v-if="[1, 2].includes(row.state)"> 审批详情 </el-button>
- <order-detail :order="row.order" @updateList="queryList" />
- </template>
- </ProTable>
- </el-card>
- <!-- 退回审批 -->
- <return-audit ref="returnAuditRef" @updateList="queryList" />
- <!-- 审批详情 -->
- <return-audit-detail ref="returnAuditDetailRef" />
- </div>
- </template>
- <script setup lang="tsx" name="businessReturnAudit">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElButton, FormInstance } from 'element-plus';
- import { useRouter } from 'vue-router';
- import { returnAuditList } from '@/api/business/return';
- import { shortcuts } from '@/utils/constants';
- // 引入组件
- const ReturnAudit = defineAsyncComponent(() => import('@/views/business/return/components/Return-audit.vue')); // 审批
- const ReturnAuditDetail = defineAsyncComponent(() => import('@/views/business/return/components/Return-audit-detail.vue')); // 审批详情
- const OrderDetail = defineAsyncComponent(() => import('@/components/OrderDetail/index.vue')); // 工单详情
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const router = useRouter(); // 路由
- const proTableRef = ref<RefType>(); // 表格ref
- // 表格配置项
- const columns = ref<any[]>([
- { prop: 'order.no', label: '工单编码', width: 150 },
- { prop: 'isProvince', label: '省/市工单', width: 100 },
- { prop: 'title', label: '工单标题', width: 300 },
- { prop: 'order.sourceChannel', label: '来源方式' },
- { prop: 'order.acceptType', label: '受理类型', width: 150 },
- { prop: 'order.hotspotName', label: '热点分类', width: 200 },
- { prop: 'order.acceptorName', label: '受理人', width: 170 },
- { prop: 'order.orgLevelOneName', label: '一级部门', width: 170 },
- { prop: 'stateText', label: '退回审批状态', width: 120 },
- { prop: 'creatorName', label: '申请人', width: 120 },
- { prop: 'creatorOrgName', label: '申请部门', width: 150 },
- { prop: 'content', label: '申请理由', width: 200 },
- { prop: 'operation', label: '操作', fixed: 'right', width: 170, align: 'center' },
- ]);
- const state = reactive({
- queryParams: {
- // 查询条件
- PageIndex: 1,
- PageSize: 10,
- Keyword: null, // 关键字
- State: null, // 审批状态
- AuditState: '1', // 是否已处理 1 待审批 2已审批
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- });
- // 手动查询,将页码设置为1
- const handleQuery = () => {
- state.queryParams.PageIndex = 1;
- queryList();
- };
- /** 获取列表 */
- const queryList = () => {
- state.loading = true;
- let CreationTimeStart = null;
- let CreationTimeEnd = null;
- if (state.queryParams?.crTime) {
- CreationTimeStart = state.queryParams?.crTime[0];
- CreationTimeEnd = state.queryParams?.crTime[1];
- }
- const request = {
- CreationTimeStart,
- CreationTimeEnd,
- State: state.queryParams.AuditState === '2' ? state.queryParams.State : null,
- PageIndex: state.queryParams.PageIndex,
- PageSize: state.queryParams.PageSize,
- Keyword: state.queryParams.Keyword,
- AuditState: state.queryParams.AuditState,
- };
- returnAuditList(request)
- .then((res) => {
- state.tableData = res.result?.items ?? [];
- state.total = res.result?.total ?? 0;
- state.loading = false;
- })
- .catch((err) => {
- console.log(err);
- state.loading = false;
- });
- };
- /** 重置按钮操作 */
- const resetQuery = (formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- queryList();
- };
- // 导出
- const onExport = () => {
- console.log('导出');
- };
- // 审批
- const returnAuditRef = ref<RefType>();
- const onAudit = (row: any) => {
- returnAuditRef.value.openDialog(row);
- };
- // 审批详情
- const returnAuditDetailRef = ref<RefType>();
- const onAuditDetail = (row: any) => {
- returnAuditDetailRef.value.openDialog(row);
- };
- onMounted(() => {
- queryList();
- });
- </script>
|