修改BUG:字典表编辑页面脚本匹配使用数字类型
This commit is contained in:
parent
13931cfbe4
commit
7a36c338d6
|
@ -17,7 +17,7 @@
|
|||
{ title: "字典标签", field: "Category", sortable: true },
|
||||
{ title: "字典名称", field: "Name", sortable: true },
|
||||
{ title: "字典代码", field: "Code", sortable: true },
|
||||
{ title: "字典分类", field: "Define", sortable: true, formatter: function (value) { return value === "0" ? "系统使用" : "自定义"; } }
|
||||
{ title: "字典分类", field: "Define", sortable: true, formatter: function (value) { return value === 0 ? "系统使用" : "自定义"; } }
|
||||
]
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue