Commit 175125cf authored by jingnan's avatar jingnan 👀

档案综合查询查询归档状态为已归档的数据

parent c099ec42
...@@ -243,21 +243,30 @@ export default { ...@@ -243,21 +243,30 @@ export default {
// } // }
// } // }
} }
params.searchItems.children[0].items.push({ const arr = [{
'fieldName': 'id', 'fieldName': 'id',
'operator': 'NEQ', 'operator': 'NEQ',
'value': 0 'value': 0
}) },
params.searchItems.children[0].items.push({
{
'fieldName': 'checkOuted', 'fieldName': 'checkOuted',
'operator': 'NEQ', 'operator': 'NEQ',
'value': true 'value': true
}) },
params.searchItems.children[0].items.push({ {
'fieldName': 'latest', 'fieldName': 'latest',
'operator': 'EQ', 'operator': 'EQ',
'value': true 'value': true
}) },
{
'fieldName': 'archivingStatus',
'operator': 'EQ',
'value': '已归档'
}
]
params.searchItems.children[0].items.push(...arr)
this.groupList = [] this.groupList = []
getSubTypeDocs(params).then(res => { getSubTypeDocs(params).then(res => {
this.groupList = [] this.groupList = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment