空值不进行字典回显

This commit is contained in:
不做码农 2022-01-13 13:48:25 +08:00
parent fbdb95fcdd
commit ec06d8650d

View File

@ -89,6 +89,9 @@ export function selectDictLabel(datas, value) {
// 回显数据字典(字符串数组)
export function selectDictLabels(datas, value, separator) {
if (value === undefined) {
return "";
}
var actions = [];
var currentSeparator = undefined === separator ? "," : separator;
var temp = value.split(currentSeparator);
@ -104,7 +107,7 @@ export function selectDictLabels(datas, value, separator) {
// table是否显示当前列
export function showColumn(columns, value) {
columns.filter((item,index) => {
columns.filter((item, index) => {
// console.log(item);
return item.key == value;
});