This commit is contained in:
duanxiaohai 2024-11-20 11:16:06 +08:00
parent 941fec02c7
commit d38c55de21
3 changed files with 23 additions and 2 deletions

BIN
dist.zip

Binary file not shown.

View File

@ -148,7 +148,7 @@ const data = reactive({
title: "",
content: {},
menu: {},
active: 4,//
active: 4, //
stepdata: [
{
title: "预警推送",
@ -215,7 +215,8 @@ watch(
// data.content.fzr = data.menu[0].yw;
data.stepdata[0].description = `推送时间2024.9.15`;
data.stepdata[1].description = `业务单位:${data.menu[0].yw} \n 业务负责人:${data.menu[0].property}\n 受理日期2024.9.16`;
data.stepdata[2].description = `${data.content.name}办结时间2024.10.16`;
data.stepdata[2].description = `${data.content.name}办结时间:${data.content.time}`;
data.stepdata[3].description = `${data.content.time1}`;
}
}
}

View File

@ -616,6 +616,8 @@ const Process = reactive({
bt: "1/6 低保金",
show: true, //
name: "",
time: "2024.10.16",
time1: "核实日期2024.11.18",
},
menu: [
// {
@ -949,9 +951,27 @@ const openLC = (val) => {
364099: "符合救助条件 \n自付金额60668.46元已临时救助1532.91元 \n",
37083: "符合救助条件 \n自付金额76284.15元已临时救助9900元 \n",
};
const timeData = {
339655: "2024.11.19",
345797: "2024.11.19",
59715: "2024.11.15",
259384: "2024.11.15",
364099: "2024.11.15",
37083: "2024.11.15",
};
const timeData1 = {
339655: "未核实",
345797: "未核实",
59715: "网格员:张* \n核实日期2024.11.18",
259384: "网格员:王* \n核实日期2024.11.18",
364099: "网格员:李* \n核实日期2024.11.18",
37083: "网格员:陈* \n核实日期2024.11.18",
};
if (rescueData[val.sfzhm]) {
Process.data.name = rescueData[val.sfzhm];
Process.data.time = timeData[val.sfzhm];
Process.data.time1 = timeData1[val.sfzhm];
}
res.data.ysx.forEach((item, index) => {