This commit is contained in:
duanxiaohai 2024-10-22 12:30:12 +08:00
parent faeaff3082
commit ee96424f17
1 changed files with 32 additions and 0 deletions

View File

@ -752,6 +752,38 @@ const rowState = (row) => {
onMounted(() => {
if (routers.query.name) {
data.name = routers.query.name;
if (data.name == "食品安全监管") {
data.columns = [];
data.column_2 = [];
data.columns = [
{
label: "对象名称",
property: "dxmc",
},
{
label: "对象编码",
property: "dxbm",
},
{
label: "地址",
property: "dz",
},
];
data.column_2 = [
{
label: "对象名称",
property: "dxmc",
},
{
label: "对象编码",
property: "dxbm",
},
{
label: "地址",
property: "dz",
},
];
}
listAssignment();
}
});