提交 55a7dc42 authored 作者: 钟是志's avatar 钟是志

二进制修改

上级 2e15ad68
......@@ -102,6 +102,9 @@ export default class Index extends React.Component {
getColumn = () => {
const { workId } = this.state;
service.getColumns(workId).then((response) => {
if(!response || !Array.isArray(response)){
response = [];
}
response = response.filter((x) => {
return x.title !== '流程进度';
});
......
......@@ -171,7 +171,9 @@ const getSearchCondition = async (id, appId = undefined) => {
return res.filter((x) => {
return x.isShowQuery !== false && x.isHidden === false;
});
}
}else{
return [];
}
});
// console.log(JSON.stringify(searchHeaders));
for (let item of searchHeaders) { // H:\project\one_stop_front\src\pages\AdminSystem\pages\ddl\formList\index.js
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论