123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <div class="business-special-audit-container layout-pd">
- <!-- 搜索 -->
- <el-card shadow="never">
- <el-form :model="state.queryParams" ref="ruleFormRef" @submit.native.prevent class="mt15" label-width="100px">
- <el-row :gutter="10">
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
- <el-form-item label="关键词" prop="Keyword">
- <el-input v-model="state.queryParams.Keyword" placeholder="工单编码/标题" clearable @keyup.enter="queryList" />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="8">
- <el-form-item label=" ">
- <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" :loading="state.loading">
- <SvgIcon name="ele-Refresh" class="mr5" />重置
- </el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- </el-card>
- <el-card shadow="never">
- <!-- 表格 -->
- <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="order.no" label="工单编码" show-overflow-tooltip width="150"></el-table-column>
- <el-table-column width="100" label="省/市工单" prop="isProvince">
- <template #default="{ row }">
- <span>{{ row.order?.isProvince ? '省工单' : '市工单' }}</span>
- </template>
- </el-table-column>
- <el-table-column label="工单标题" show-overflow-tooltip width="400">
- <template #default="{ row }">
- <span class="color-primary">{{ row.order?.title }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="order.sourceChannel" label="来源方式" show-overflow-tooltip></el-table-column>
- <el-table-column prop="order.acceptType" label="受理类型" show-overflow-tooltip width="100"></el-table-column>
- <el-table-column prop="order.hotspotName" label="热点分类" show-overflow-tooltip width="100"></el-table-column>
- <el-table-column label="受理人" show-overflow-tooltip width="170">
- <template #default="{ row }">
- <span
- >{{ row.order?.acceptorName }} <span v-if="row.order?.acceptorStaffNo">[{{ row.order?.acceptorStaffNo }}]</span>
- </span>
- </template>
- </el-table-column>
- <el-table-column prop="order.orgLevelOneName" label="一级部门" show-overflow-tooltip width="170"></el-table-column>
- <el-table-column prop="stateText" label="特提审批状态" show-overflow-tooltip width="120"></el-table-column>
- <el-table-column prop="cause" label="特提原因" show-overflow-tooltip width="150"></el-table-column>
- <el-table-column prop="creatorName" label="申请人" show-overflow-tooltip></el-table-column>
- <el-table-column prop="creatorOrgName" label="申请部门" show-overflow-tooltip width="120"></el-table-column>
- <el-table-column prop="reason" label="申请理由" show-overflow-tooltip width="200"></el-table-column>
- <el-table-column label="操作" width="170" fixed="right" align="center">
- <template #default="{ row }">
- <el-button link type="primary" @click="onAudit(row)" title="审批特提" v-auth="'business:special: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>
- </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>
- <!-- 特提审批 -->
- <special-audit ref="specialAuditRef" @updateList="queryList" />
- <!-- 审批详情 -->
- <special-audit-detail ref="specialAuditDetailRef" />
- </div>
- </template>
- <script setup lang="ts" name="orderSpecialAudit">
- import { defineAsyncComponent, onMounted, reactive, ref } from 'vue';
- import { ElButton, ElMessage, FormInstance } from 'element-plus';
- import { auth } from '/@/utils/authFunction';
- import { throttle } from '/@/utils/tools';
- import { useRouter } from 'vue-router';
- import { specialList } from '/@/api/business/special';
- // 引入组件
- const SpecialAudit = defineAsyncComponent(() => import('/@/views/business/special/components/Special-audit.vue')); // 审批
- const SpecialAuditDetail = defineAsyncComponent(() => import('/@/views/business/special/components/Special-audit-detail.vue')); // 审批详情
- const OrderDetail = defineAsyncComponent(() => import('/@/components/OrderDetail/index.vue')); // 工单详情
- // 定义变量内容
- const ruleFormRef = ref<RefType>(); // 表单ref
- const router = useRouter(); // 路由
- const state = reactive(<any>{
- queryParams: {
- // 查询条件
- PageIndex: 1,
- PageSize: 10,
- Keyword: null, // 关键字
- },
- tableData: [], //表单
- loading: false, // 加载
- total: 0, // 总数
- });
- /** 获取列表 */
- const queryList = throttle(() => {
- if (!auth('business:specialAudit:query')) ElMessage.error('抱歉,您没有权限查看特提申请审批!');
- else {
- state.loading = true;
- specialList(state.queryParams)
- .then((res) => {
- state.tableData = res.result?.items ?? [];
- state.total = res.result?.total ?? 0;
- state.loading = false;
- })
- .catch((err) => {
- console.log(err);
- state.loading = false;
- });
- }
- }, 300);
- /** 重置按钮操作 */
- const resetQuery = throttle((formEl: FormInstance | undefined) => {
- if (!formEl) return;
- formEl.resetFields();
- queryList();
- }, 300);
- // 表格多选
- const multipleTableRef = ref<RefType>();
- const multipleSelection = ref<any>([]);
- const handleSelectionChange = (val: any[]) => {
- multipleSelection.value = val;
- };
- // 导出
- const onExport = () => {
- console.log('导出');
- };
- // 审批
- const specialAuditRef = ref<RefType>();
- const onAudit = (row: any) => {
- specialAuditRef.value.openDialog(row);
- };
- // 审批详情
- const specialAuditDetailRef = ref<RefType>();
- const onAuditDetail = (row: any) => {
- specialAuditDetailRef.value.openDialog(row);
- };
- onMounted(() => {
- queryList();
- });
- </script>
|