Merge branch 'main' of https://git.cityme.com.cn/xiangshan/ggfwjsc
This commit is contained in:
commit
410f53115a
|
@ -862,7 +862,68 @@ const columnsList = reactive({
|
||||||
width: "100",
|
width: "100",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
columns65: [
|
||||||
|
{
|
||||||
|
label: "序号",
|
||||||
|
property: "index",
|
||||||
|
width: "60",
|
||||||
|
fixed: "left",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "姓名",
|
||||||
|
property: "xm",
|
||||||
|
width: "70",
|
||||||
|
fixed: "left",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "身份证",
|
||||||
|
property: "sfzhm",
|
||||||
|
width: "170",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "低保证号",
|
||||||
|
property: "jzzh",
|
||||||
|
width: "210",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "联系电话",
|
||||||
|
property: "sjhm",
|
||||||
|
width: "120",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "乡镇(街道)",
|
||||||
|
property: "xzjd",
|
||||||
|
width: "100",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "村社",
|
||||||
|
property: "csq",
|
||||||
|
width: "100",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "地址",
|
||||||
|
property: "dz",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "救助日期",
|
||||||
|
property: "jzrq",
|
||||||
|
width: "100",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "残疾人护理金额",
|
||||||
|
property: "col1",
|
||||||
|
width: "100",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "操作",
|
||||||
|
property: "cz",
|
||||||
|
type: "slot",
|
||||||
|
width: "160",
|
||||||
|
},
|
||||||
|
],
|
||||||
},
|
},
|
||||||
|
//编码65
|
||||||
|
|
||||||
// 职工医疗保险: {
|
// 职工医疗保险: {
|
||||||
// titleList: [
|
// titleList: [
|
||||||
// {
|
// {
|
||||||
|
@ -1115,7 +1176,15 @@ onMounted(() => {
|
||||||
const query = routers.query;
|
const query = routers.query;
|
||||||
Object.assign(data, { xh: query.xh, bm: query.bm, msgId: query.msgId });
|
Object.assign(data, { xh: query.xh, bm: query.bm, msgId: query.msgId });
|
||||||
const defaultTitle = columnsList["最低生活保障"].titleList[0];
|
const defaultTitle = columnsList["最低生活保障"].titleList[0];
|
||||||
data.columns = columnsList["最低生活保障"][defaultTitle.col];
|
|
||||||
|
|
||||||
|
if(query.bm == "65"){
|
||||||
|
console.log(columnsList["最低生活保障"].columns65);
|
||||||
|
data.columns = columnsList["最低生活保障"].columns65;
|
||||||
|
}else{
|
||||||
|
data.columns = columnsList["最低生活保障"][defaultTitle.col];
|
||||||
|
}
|
||||||
|
|
||||||
data.url = defaultTitle.url;
|
data.url = defaultTitle.url;
|
||||||
|
|
||||||
titleList.splice(0, titleList.length, ...(data.xh === "59"
|
titleList.splice(0, titleList.length, ...(data.xh === "59"
|
||||||
|
|
Loading…
Reference in New Issue