This commit is contained in:
parent
941fec02c7
commit
d38c55de21
|
@ -148,7 +148,7 @@ const data = reactive({
|
||||||
title: "",
|
title: "",
|
||||||
content: {},
|
content: {},
|
||||||
menu: {},
|
menu: {},
|
||||||
active: 4,//步骤条进度
|
active: 4, //步骤条进度
|
||||||
stepdata: [
|
stepdata: [
|
||||||
{
|
{
|
||||||
title: "预警推送",
|
title: "预警推送",
|
||||||
|
@ -215,7 +215,8 @@ watch(
|
||||||
// data.content.fzr = data.menu[0].yw;
|
// data.content.fzr = data.menu[0].yw;
|
||||||
data.stepdata[0].description = `推送时间:2024.9.15`;
|
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[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}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -616,6 +616,8 @@ const Process = reactive({
|
||||||
bt: "1/6 低保金",
|
bt: "1/6 低保金",
|
||||||
show: true, //表头显示
|
show: true, //表头显示
|
||||||
name: "",
|
name: "",
|
||||||
|
time: "2024.10.16",
|
||||||
|
time1: "核实日期:2024.11.18",
|
||||||
},
|
},
|
||||||
menu: [
|
menu: [
|
||||||
// {
|
// {
|
||||||
|
@ -949,9 +951,27 @@ const openLC = (val) => {
|
||||||
364099: "符合救助条件 \n自付金额60668.46元,已临时救助1532.91元 \n",
|
364099: "符合救助条件 \n自付金额60668.46元,已临时救助1532.91元 \n",
|
||||||
37083: "符合救助条件 \n自付金额76284.15元,已临时救助9900元 \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]) {
|
if (rescueData[val.sfzhm]) {
|
||||||
Process.data.name = 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) => {
|
res.data.ysx.forEach((item, index) => {
|
||||||
|
|
Loading…
Reference in New Issue