123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <template>
- <div class="business-countersign-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">
- <!-- 功能按钮 -->
- <div class="mb20">
- <el-button type="primary" @click="onExport" v-auth="'business:countersign:export'" :disabled="!multipleSelection.length">
- <SvgIcon name="iconfont icon-daochu" 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="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="sourceChannel" label="回访状态" show-overflow-tooltip></el-table-column>
- <el-table-column prop="order.acceptType" label="受理类型" show-overflow-tooltip width="150"></el-table-column>
- <el-table-column prop="sourceChannel" label="热点分类" show-overflow-tooltip></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="orgLevelOneName" label="一级部门" show-overflow-tooltip width="170"></el-table-column>
- <el-table-column prop="actualHandleOrgName" label="接办部门" show-overflow-tooltip width="170"></el-table-column>
- <el-table-column label="受理时间" show-overflow-tooltip width="170">
- <template #default="{ row }">
- <span>{{ formatDate(row.startTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="办结时间" show-overflow-tooltip width="170">
- <template #default="{ row }">
- <span>{{ formatDate(row.filedTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="publishTime" label="发布时间" show-overflow-tooltip width="170">
- <template #default="{ row }">
- <span>{{ formatDate(row.publishTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
- </template>
- </el-table-column>
- <el-table-column prop="visitTime" label="回访时间" show-overflow-tooltip width="170">
- <template #default="{ row }">
- <span>{{ formatDate(row.visitTime, 'YYYY-mm-dd HH:MM:SS') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="被回访部门" show-overflow-tooltip width="150">
- <template #default="{ row }">
- <span v-if="row.visitTarget===20">{{row.visitOrgName}}</span>
- </template>
- </el-table-column>
- <el-table-column label="部门办件结果" show-overflow-tooltip width="150">
- <template #default="{ row }">
- <span v-if="row.visitTarget===20">{{row.orgProcessingResults?.value}}</span>
- </template>
- </el-table-column>
- <el-table-column label="部门办件态度" show-overflow-tooltip width="150">
- <template #default="{ row }">
- <span v-if="row.visitTarget===20">{{row.orgHandledAttitude?.value}}</span>
- </template>
- </el-table-column>
- <el-table-column label="不满意原因" show-overflow-tooltip width="150">
- <template #default="{ row }">
- <span v-if="row.visitTarget===20">
- {{row.orgNoSatisfiedReason?.map(item => item.value).join(',')}}
- </span>
- </template>
- </el-table-column>
- <el-table-column label="操作" width="160" fixed="right" align="center">
- <template #default="{ row }">
- <el-button link type="primary" @click="onSecondVisit(row)" 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>
- <!-- 二次回访 -->
- <second-visit ref="secondVisitRef" />
- </div>
- </template>
- <script setup lang="ts" name="secondVisit">
- 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 {formatDate} from '/@/utils/formatTime';
- import {useRouter} from "vue-router";
- // 引入组件
- const SecondVisit = defineAsyncComponent(() => import('/@/views/business/secondVisit/components/Visit.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:secondVisit:query')) ElMessage.error('抱歉,您没有权限查看二次回访申请!');
- else {
- }
- }, 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 secondVisitRef = ref<RefType>(); // 二次回访
- const onSecondVisit = (row:any)=>{
- secondVisitRef.value.openDialog(row)
- }
- onMounted( () => {
- queryList();
- });
- </script>
- <style scoped lang="scss">
- .business-countersign-container {
- }
- </style>
|