Commit 175125cf authored by jingnan's avatar jingnan 👀

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

parent c099ec42
......@@ -243,21 +243,30 @@ export default {
// }
// }
}
params.searchItems.children[0].items.push({
const arr = [{
'fieldName': 'id',
'operator': 'NEQ',
'value': 0
})
params.searchItems.children[0].items.push({
},
{
'fieldName': 'checkOuted',
'operator': 'NEQ',
'value': true
})
params.searchItems.children[0].items.push({
},
{
'fieldName': 'latest',
'operator': 'EQ',
'value': true
})
},
{
'fieldName': 'archivingStatus',
'operator': 'EQ',
'value': '已归档'
}
]
params.searchItems.children[0].items.push(...arr)
this.groupList = []
getSubTypeDocs(params).then(res => {
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