2026-04-07 17:56:06 +08:00
|
|
|
import { h, ref, onMounted, reactive, watch, toRaw, nextTick } from "vue";
|
|
|
|
|
import { request } from "@/utils/request";
|
|
|
|
|
import { useRoute, useRouter } from 'vue-router'
|
2026-04-09 10:23:54 +08:00
|
|
|
import ExamineDialog from "./examineDialog.vue";
|
2026-04-09 16:12:48 +08:00
|
|
|
import RejectDialog from './rejectDialog.vue';
|
2026-04-10 10:07:04 +08:00
|
|
|
import { ElLoading, ElText } from 'element-plus'
|
2026-04-07 17:56:06 +08:00
|
|
|
|
|
|
|
|
const tableData = ref([]); // 表格数据
|
|
|
|
|
const modelVisible = ref(false); // 弹窗状态
|
|
|
|
|
const drawerVisible = ref(false); // 抽屉状态
|
|
|
|
|
// 弹窗内容
|
|
|
|
|
const model = reactive({
|
|
|
|
|
title: '',
|
|
|
|
|
content: null,
|
|
|
|
|
props: {},
|
|
|
|
|
onCancel: null,
|
|
|
|
|
onConfirm: null,
|
|
|
|
|
width: '',
|
2026-04-08 15:47:57 +08:00
|
|
|
footerPosition: null,
|
|
|
|
|
onCancelType: null,
|
|
|
|
|
onConfirmName: null,
|
|
|
|
|
onCancelName: null,
|
|
|
|
|
tagContent: null,
|
|
|
|
|
tagType: null,
|
2026-04-07 17:56:06 +08:00
|
|
|
});
|
|
|
|
|
const form = reactive({
|
|
|
|
|
});
|
|
|
|
|
// 抽屉内容
|
|
|
|
|
const drawer = reactive({
|
|
|
|
|
title: '',
|
|
|
|
|
content: null,
|
|
|
|
|
props: {},
|
|
|
|
|
onCancel: null,
|
|
|
|
|
onConfirm: null,
|
|
|
|
|
direction: 'rtl',
|
|
|
|
|
size: '50%'
|
|
|
|
|
});
|
|
|
|
|
const dialogRef = ref(null); // 弹窗实例
|
|
|
|
|
const drawerRef = ref(null); // 抽屉实例
|
|
|
|
|
|
2026-04-09 16:12:48 +08:00
|
|
|
// 第二个弹窗
|
|
|
|
|
const model2 = reactive({
|
|
|
|
|
title: '',
|
|
|
|
|
content: null,
|
|
|
|
|
props: {},
|
|
|
|
|
onCancel: null,
|
|
|
|
|
onConfirm: null,
|
|
|
|
|
width: '',
|
|
|
|
|
footerPosition: null,
|
|
|
|
|
onCancelType: null,
|
|
|
|
|
onConfirmName: null,
|
|
|
|
|
onCancelName: null,
|
|
|
|
|
tagContent: null,
|
|
|
|
|
tagType: null,
|
|
|
|
|
});
|
|
|
|
|
const modelVisible2 = ref(false);
|
|
|
|
|
const dialogRef2 = ref(null);
|
|
|
|
|
|
|
|
|
|
|
2026-04-07 17:56:06 +08:00
|
|
|
|
|
|
|
|
// 过滤条件
|
|
|
|
|
const filterData = reactive({
|
|
|
|
|
})
|
|
|
|
|
// 分页
|
|
|
|
|
const pagination = reactive({
|
|
|
|
|
current: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
total: 0,
|
|
|
|
|
pageSizes: [10, 20, 50],
|
|
|
|
|
layout: "prev, pager, next, jumper",
|
|
|
|
|
onChange: (page, pageSize) => {
|
|
|
|
|
pagination.current = page;
|
|
|
|
|
pagination.pageSize = pageSize;
|
|
|
|
|
getTableData(filterData);
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2026-04-09 10:23:54 +08:00
|
|
|
// 获取项目列表
|
2026-04-09 16:12:48 +08:00
|
|
|
const getTableData = async (filterData = {}) => {
|
2026-04-07 17:56:06 +08:00
|
|
|
try {
|
2026-04-09 16:12:48 +08:00
|
|
|
// 过滤空字符串属性
|
|
|
|
|
const filteredParams = {};
|
|
|
|
|
Object.keys(filterData).forEach(key => {
|
|
|
|
|
if (filterData[key] !== '' && filterData[key] != null) {
|
|
|
|
|
filteredParams[key] = filterData[key];
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
2026-04-07 17:56:06 +08:00
|
|
|
const res = await request({
|
2026-04-09 10:23:54 +08:00
|
|
|
url: '/snow-ops-platform/recovery/list',
|
2026-04-07 17:56:06 +08:00
|
|
|
method: "GET",
|
|
|
|
|
params: {
|
2026-04-09 16:12:48 +08:00
|
|
|
...filteredParams,
|
|
|
|
|
submitTimeStart: filteredParams?.submitTimeStart ? filteredParams.submitTimeStart + `-01-01 00:00:00` : null,
|
2026-04-09 10:23:54 +08:00
|
|
|
pageNum: pagination.current,
|
|
|
|
|
pageSize: pagination.pageSize,
|
2026-04-07 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
})
|
2026-04-09 16:12:48 +08:00
|
|
|
if (res.code === '00000') {
|
|
|
|
|
tableData.value = res.data.records
|
2026-04-10 17:47:38 +08:00
|
|
|
pagination.total = res.data.total;
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(res.message)
|
2026-04-09 16:12:48 +08:00
|
|
|
}
|
2026-04-07 17:56:06 +08:00
|
|
|
} catch (error) {
|
2026-04-10 17:47:38 +08:00
|
|
|
ElMessage.error('获取项目列表失败');
|
2026-04-09 10:23:54 +08:00
|
|
|
console.error('获取项目列表失败:', error);
|
2026-04-07 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2026-04-09 16:12:48 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// 驳回项目
|
|
|
|
|
const rejectProject = async () => {
|
|
|
|
|
try {
|
|
|
|
|
const loading = ElLoading.service({
|
|
|
|
|
lock: true,
|
|
|
|
|
text: '操作中',
|
|
|
|
|
background: 'rgba(0, 0, 0, 0.7)',
|
2026-04-07 17:56:06 +08:00
|
|
|
})
|
2026-04-09 16:12:48 +08:00
|
|
|
const res = await request({
|
|
|
|
|
url: '/snow-ops-platform/recovery/approve',
|
|
|
|
|
method: 'POST',
|
|
|
|
|
data: {
|
|
|
|
|
id: form.id,
|
|
|
|
|
approveLevel: 1,
|
|
|
|
|
isPass: false,
|
|
|
|
|
rejectReason: form.rejectReason,
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
loading.close();
|
|
|
|
|
if (res.code === '00000') {
|
|
|
|
|
ElMessage.success('操作成功');
|
|
|
|
|
modelVisible.value = false;
|
|
|
|
|
modelVisible2.value = false;
|
|
|
|
|
getTableData(filterData);
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
ElMessage.error('操作失败');
|
|
|
|
|
console.error('驳回项目失败:', error);
|
|
|
|
|
}
|
2026-04-07 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
|
2026-04-10 09:26:51 +08:00
|
|
|
// 获取项目详情
|
|
|
|
|
const getDetailData = async (id) => {
|
|
|
|
|
try {
|
|
|
|
|
const res = await request({
|
|
|
|
|
url: `/snow-ops-platform/recovery/getById`,
|
|
|
|
|
method: 'GET',
|
|
|
|
|
params: {
|
|
|
|
|
id: id,
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (res.code === '00000') {
|
|
|
|
|
return res.data;
|
|
|
|
|
} else {
|
|
|
|
|
throw new Error(res.message);
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
ElMessage.error('获取项目详情失败');
|
|
|
|
|
console.error('获取项目详情失败:', error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-07 17:56:06 +08:00
|
|
|
|
|
|
|
|
|
2026-04-09 10:23:54 +08:00
|
|
|
|
|
|
|
|
|
2026-04-07 17:56:06 +08:00
|
|
|
export default () => {
|
|
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
2026-04-10 10:23:41 +08:00
|
|
|
// 记录访问的项目管理模块
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
sessionStorage.setItem('lastVisitedProjectManagement', 'projectManagement')
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-09 16:12:48 +08:00
|
|
|
const columns = [
|
|
|
|
|
{
|
|
|
|
|
prop: "districtName",
|
|
|
|
|
label: "区县",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "routeNo",
|
|
|
|
|
label: "路线编码",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "disasterType",
|
|
|
|
|
label: "灾害类型",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "startStakeNo",
|
|
|
|
|
label: "起点桩号",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "endStakeNo",
|
|
|
|
|
label: "止点桩号",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "implementMileage",
|
|
|
|
|
label: "实施里程(公里)",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "technicalGrade",
|
|
|
|
|
label: "技术等级",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "totalInvestment",
|
|
|
|
|
label: "总投资金额(万元)",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "estimatedCost",
|
|
|
|
|
label: "投资估算(万元)",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "startTime",
|
|
|
|
|
label: "开工或预计开工时间",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "endTime",
|
|
|
|
|
label: "完工或预计完工时间",
|
|
|
|
|
},
|
2026-04-09 17:46:43 +08:00
|
|
|
{
|
|
|
|
|
prop: "reportStatus",
|
|
|
|
|
label: "申报状态",
|
|
|
|
|
formatter: (row) => {
|
2026-04-10 10:07:04 +08:00
|
|
|
const colorMap = {
|
|
|
|
|
0: '#409EFF', // 蓝色 - 未申报
|
|
|
|
|
1: '#67C23A', // 绿色 - 已申报
|
|
|
|
|
};
|
|
|
|
|
const textMap = {
|
2026-04-09 17:46:43 +08:00
|
|
|
0: '未申报',
|
|
|
|
|
1: '已申报',
|
|
|
|
|
};
|
2026-04-10 10:07:04 +08:00
|
|
|
const status = row.reportStatus;
|
|
|
|
|
const color = colorMap[status] || '#909399';
|
|
|
|
|
const text = textMap[status] || '未知状态';
|
|
|
|
|
return h(ElText, { style: { color } }, text);
|
2026-04-09 17:46:43 +08:00
|
|
|
}
|
|
|
|
|
},
|
2026-04-09 16:12:48 +08:00
|
|
|
{
|
|
|
|
|
prop: "approvalStatus",
|
2026-04-10 10:07:04 +08:00
|
|
|
width: 150,
|
2026-04-09 16:12:48 +08:00
|
|
|
label: "审批状态",
|
|
|
|
|
formatter: (row) => {
|
2026-04-10 10:07:04 +08:00
|
|
|
const colorMap = {
|
|
|
|
|
0: '#409EFF', // 蓝色 - 待区县审批
|
|
|
|
|
1: '#67C23A', // 绿色 - 区县审批通过
|
|
|
|
|
2: '#F56C6C', // 红色 - 区县审批驳回
|
|
|
|
|
3: '#67C23A', // 绿色 - 业务部门审批通过
|
|
|
|
|
4: '#F56C6C', // 红色 - 业务部门审批驳回
|
|
|
|
|
};
|
|
|
|
|
const textMap = {
|
2026-04-09 18:17:44 +08:00
|
|
|
0: '待区县审批',
|
|
|
|
|
1: '区县审批通过(待业务部门审批)',
|
|
|
|
|
2: '区县审批驳回',
|
|
|
|
|
3: '业务部门审批通过',
|
|
|
|
|
4: '业务部门审批驳回',
|
2026-04-09 16:12:48 +08:00
|
|
|
};
|
2026-04-10 10:07:04 +08:00
|
|
|
const status = row.approvalStatus;
|
|
|
|
|
const color = colorMap[status] || '#909399';
|
|
|
|
|
const text = textMap[status] || '未知状态';
|
|
|
|
|
return h(ElText, { style: { color } }, text);
|
2026-04-09 16:12:48 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: "updateTime",
|
|
|
|
|
label: "更新日期",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "操作",
|
|
|
|
|
fixed: "right",
|
|
|
|
|
width: 150,
|
|
|
|
|
render: (row) => () =>
|
|
|
|
|
h("div", { class: "action-btns" }, [
|
2026-04-10 10:07:04 +08:00
|
|
|
row.approvalStatus === 0 ? h(
|
2026-04-09 16:12:48 +08:00
|
|
|
ElButton,
|
|
|
|
|
{
|
|
|
|
|
type: "primary",
|
|
|
|
|
link: true,
|
|
|
|
|
onClick: async () => {
|
|
|
|
|
openExamineDialog(row);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
() => "审批"
|
2026-04-10 10:07:04 +08:00
|
|
|
) : null,
|
2026-04-09 16:12:48 +08:00
|
|
|
h(
|
|
|
|
|
ElButton,
|
|
|
|
|
{
|
|
|
|
|
type: "primary",
|
|
|
|
|
link: true,
|
2026-04-10 10:07:04 +08:00
|
|
|
style: row.approvalStatus === 0 ? "margin-left: 10px;" : "",
|
2026-04-09 16:12:48 +08:00
|
|
|
onClick: async () => {
|
2026-04-09 18:17:44 +08:00
|
|
|
gotoDetaillPage(row);
|
2026-04-09 16:12:48 +08:00
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
() => "详情"
|
|
|
|
|
),
|
|
|
|
|
]),
|
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
// 打开审批弹窗
|
|
|
|
|
const openExamineDialog = async (row) => {
|
2026-04-10 09:26:51 +08:00
|
|
|
const data = await getDetailData(row.id)
|
2026-04-09 16:12:48 +08:00
|
|
|
model.title = '项目审批';
|
2026-04-10 09:26:51 +08:00
|
|
|
Object.assign(form, data);
|
2026-04-09 16:12:48 +08:00
|
|
|
model.props = {
|
|
|
|
|
form: form,
|
|
|
|
|
};
|
|
|
|
|
model.content = ExamineDialog;
|
|
|
|
|
model.onCancel = () => {
|
|
|
|
|
model2.title = '驳回原因';
|
|
|
|
|
model2.props = {
|
|
|
|
|
form: form,
|
|
|
|
|
}
|
|
|
|
|
model2.content = RejectDialog;
|
|
|
|
|
model2.onCancel = () => {
|
|
|
|
|
modelVisible2.value = false;
|
|
|
|
|
}
|
|
|
|
|
model2.onConfirm = async () => {
|
|
|
|
|
await dialogRef2?.value?.dynamicComponentRef?.formRef.validate().then(async () => {
|
|
|
|
|
await rejectProject()
|
|
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
ElMessage.error('请处理表单中的错误项');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
model2.width = '30%'
|
|
|
|
|
model2.footerPosition = 'center'
|
|
|
|
|
model2.onConfirmName = '确定'
|
|
|
|
|
model2.onCancelName = '取消'
|
|
|
|
|
modelVisible2.value = true;
|
|
|
|
|
};
|
|
|
|
|
model.onConfirm = async () => {
|
|
|
|
|
await dialogRef?.value?.dynamicComponentRef?.formRef.validate().then(() => {
|
2026-04-09 17:03:36 +08:00
|
|
|
router.push({
|
|
|
|
|
name: 'projectAdd',
|
|
|
|
|
params: {
|
|
|
|
|
data: encodeURIComponent(JSON.stringify(form)),
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
modelVisible.value = false;
|
2026-04-09 16:12:48 +08:00
|
|
|
})
|
|
|
|
|
.catch((err) => {
|
|
|
|
|
ElMessage.error('请处理表单中的错误项');
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
model.width = "50%"
|
|
|
|
|
model.footerPosition = 'flex-end'
|
|
|
|
|
model.onCancelType = 'danger'
|
|
|
|
|
model.onConfirmName = '审批通过'
|
|
|
|
|
model.onCancelName = '审批驳回'
|
|
|
|
|
// model.tagType = 'warning'
|
|
|
|
|
// model.tagContent = '测试'
|
|
|
|
|
modelVisible.value = true;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-09 18:17:44 +08:00
|
|
|
// 跳转至详情页面
|
|
|
|
|
const gotoDetaillPage = (row) => {
|
|
|
|
|
router.push({
|
|
|
|
|
name: 'projectDetail',
|
|
|
|
|
params: {
|
2026-04-10 10:23:41 +08:00
|
|
|
data: encodeURIComponent(JSON.stringify(row.id))
|
|
|
|
|
},
|
2026-04-09 18:17:44 +08:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-09 10:23:54 +08:00
|
|
|
onMounted(() => {
|
|
|
|
|
getTableData();
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
watch(filterData, (val) => {
|
|
|
|
|
getTableData(filterData);
|
|
|
|
|
}, { deep: true })
|
2026-04-07 17:56:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
tableData,
|
|
|
|
|
filterData,
|
|
|
|
|
pagination,
|
|
|
|
|
columns,
|
|
|
|
|
|
|
|
|
|
modelVisible,
|
|
|
|
|
model,
|
|
|
|
|
drawerVisible,
|
|
|
|
|
drawer,
|
|
|
|
|
dialogRef,
|
|
|
|
|
drawerRef,
|
2026-04-09 10:23:54 +08:00
|
|
|
openExamineDialog,
|
2026-04-09 16:12:48 +08:00
|
|
|
|
|
|
|
|
model2,
|
|
|
|
|
modelVisible2,
|
|
|
|
|
dialogRef2,
|
2026-04-07 17:56:06 +08:00
|
|
|
}
|
|
|
|
|
}
|