|
|
|
@ -873,77 +873,77 @@ export default {
|
|
|
|
|
this.onLoad(this.page); |
|
|
|
|
this.getDictionary(); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 初始化获取本地缓存的编辑隐藏的列表 |
|
|
|
|
* 固定搭配,不能更改 |
|
|
|
|
*/ |
|
|
|
|
let checkListnewarr = this.$functions.getStorage(window.location.pathname + 'checkList'); |
|
|
|
|
let flexListnewarr = this.$functions.getStorage(window.location.pathname + 'flexList'); |
|
|
|
|
let sortlistnewarr = this.$functions.getStorage(window.location.pathname + 'sortlist'); |
|
|
|
|
if (checkListnewarr) { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
item.head = false; |
|
|
|
|
}); |
|
|
|
|
checkListnewarr.map(ite => { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (ite == item.label) { |
|
|
|
|
item.head = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (item.head) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.$functions.setStorage(window.location.pathname + 'checkList', arr); |
|
|
|
|
} |
|
|
|
|
if (flexListnewarr) { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
item.fixed = false; |
|
|
|
|
}); |
|
|
|
|
flexListnewarr.map(ite => { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (ite == item.label) { |
|
|
|
|
if (item.type == 6) { |
|
|
|
|
item.fixed = 'right'; |
|
|
|
|
} else { |
|
|
|
|
item.fixed = true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (item.fixed) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.$functions.setStorage(window.location.pathname + 'flexList', arr); |
|
|
|
|
} |
|
|
|
|
if (sortlistnewarr) { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
item.sortable = false; |
|
|
|
|
}); |
|
|
|
|
sortlistnewarr.map(ite => { |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (ite == item.label) { |
|
|
|
|
item.sortable = true; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
let arr = []; |
|
|
|
|
this.columnList.map(item => { |
|
|
|
|
if (item.sortable) { |
|
|
|
|
arr.push(item.label); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.$functions.setStorage(window.location.pathname + 'sortlist', arr); |
|
|
|
|
} |
|
|
|
|
// /** |
|
|
|
|
// * 初始化获取本地缓存的编辑隐藏的列表 |
|
|
|
|
// * 固定搭配,不能更改 |
|
|
|
|
// */ |
|
|
|
|
// let checkListnewarr = this.$functions.getStorage(window.location.pathname + 'checkList'); |
|
|
|
|
// let flexListnewarr = this.$functions.getStorage(window.location.pathname + 'flexList'); |
|
|
|
|
// let sortlistnewarr = this.$functions.getStorage(window.location.pathname + 'sortlist'); |
|
|
|
|
// if (checkListnewarr) { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// item.head = false; |
|
|
|
|
// }); |
|
|
|
|
// checkListnewarr.map(ite => { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (ite == item.label) { |
|
|
|
|
// item.head = true; |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
// } else { |
|
|
|
|
// let arr = []; |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (item.head) { |
|
|
|
|
// arr.push(item.label); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// this.$functions.setStorage(window.location.pathname + 'checkList', arr); |
|
|
|
|
// } |
|
|
|
|
// if (flexListnewarr) { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// item.fixed = false; |
|
|
|
|
// }); |
|
|
|
|
// flexListnewarr.map(ite => { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (ite == item.label) { |
|
|
|
|
// if (item.type == 6) { |
|
|
|
|
// item.fixed = 'right'; |
|
|
|
|
// } else { |
|
|
|
|
// item.fixed = true; |
|
|
|
|
// } |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
// } else { |
|
|
|
|
// let arr = []; |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (item.fixed) { |
|
|
|
|
// arr.push(item.label); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// this.$functions.setStorage(window.location.pathname + 'flexList', arr); |
|
|
|
|
// } |
|
|
|
|
// if (sortlistnewarr) { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// item.sortable = false; |
|
|
|
|
// }); |
|
|
|
|
// sortlistnewarr.map(ite => { |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (ite == item.label) { |
|
|
|
|
// item.sortable = true; |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// }); |
|
|
|
|
// } else { |
|
|
|
|
// let arr = []; |
|
|
|
|
// this.columnList.map(item => { |
|
|
|
|
// if (item.sortable) { |
|
|
|
|
// arr.push(item.label); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// this.$functions.setStorage(window.location.pathname + 'sortlist', arr); |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
this.setListHeight(); |
|
|
|
|
|
|
|
|
|