Merge remote-tracking branch 'origin/dev_third_stage' into dev_third_stage

This commit is contained in:
wangzhijiang
2022-09-01 11:13:43 +08:00
3 changed files with 26 additions and 8 deletions
@@ -997,7 +997,7 @@ public class DocumentSearchServiceImpl implements IDocumentSearchService {
Map<String, Object> queryMapTemp = new HashMap<>(); Map<String, Object> queryMapTemp = new HashMap<>();
Map<String, Object> queryMap3 = new HashMap<>(); Map<String, Object> queryMap3 = new HashMap<>();
//特殊处理编号字段 //特殊处理编号字段
if (key.equals("serial_number")){ if (key.equals("serial_number") || key.equals("title") || key.equals("file_text")){
queryMapTemp.put(key, "*" + s + "*"); queryMapTemp.put(key, "*" + s + "*");
queryMap.put("wildcard",queryMapTemp); queryMap.put("wildcard",queryMapTemp);
queryMapJson.add(queryMap); queryMapJson.add(queryMap);
+18 -6
View File
@@ -63,15 +63,17 @@
departId: '', departId: '',
defaultExpandedKeys: [], defaultExpandedKeys: [],
submitLoading: false, submitLoading: false,
visibleTree: false visibleTree: false,
flag: ''
} }
}, },
mounted() { mounted() {
}, },
methods: { methods: {
getPush(data) { getPush(data, flag) {
this.tableKey = data this.tableKey = data
this.flag = flag
this.searchModel = '' this.searchModel = ''
this.visible = true this.visible = true
this.visibleTree = false this.visibleTree = false
@@ -99,10 +101,20 @@
this.visibleTree = false this.visibleTree = false
}, },
handleSubmit() { handleSubmit() {
let query = { let query = {}
documentIds: this.tableKey.join(','), if (this.flag) {
userIds: this.userIds.join(','), query = {
departIds: this.userIds.join(',') documentIds: this.tableKey.join(','),
userIds: this.userIds.join(','),
departIds: this.userIds.join(','),
flag: this.flag
}
} else {
query = {
documentIds: this.tableKey.join(','),
userIds: this.userIds.join(','),
departIds: this.userIds.join(',')
}
} }
this.submitLoading = true this.submitLoading = true
this.confirmLoading = true this.confirmLoading = true
@@ -234,7 +234,13 @@
handleCompare() { handleCompare() {
if (this.selectedRowKeys.length > 0) { if (this.selectedRowKeys.length > 0) {
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.libraryPushRef.getPush(JSON.parse(JSON.stringify(this.selectedRowKeys))) let flag = ''
if (this.activeTab == this.$t('ImplementationDate')) {
flag = 1
} else {
flag = 2
}
this.$refs.libraryPushRef.getPush(JSON.parse(JSON.stringify(this.selectedRowKeys)),flag)
}) })
} else { } else {
this.$message.warning(this.$t('selectLeastOne')) this.$message.warning(this.$t('selectLeastOne'))