Commit 35d178d1 authored by 小费同学阿's avatar 小费同学阿 💬

Merge remote-tracking branch 'origin/developer/feijinlian' into develop

parents b1adda0e 519fd5cc
...@@ -263,7 +263,9 @@ export default { ...@@ -263,7 +263,9 @@ export default {
this.tableData = this.tableData1.filter(item => { this.tableData = this.tableData1.filter(item => {
let flag = true let flag = true
if (this.queryParams.deptName) { if (this.queryParams.deptName) {
flag &= item.sceneContent.indexOf(this.queryParams.deptName) > -1 flag &=
item.sceneContent.indexOf(this.queryParams.deptName) > -1 ||
item.reviewNo.indexOf(this.queryParams.deptName) > -1
} }
if (this.queryParams.configType) { if (this.queryParams.configType) {
flag &= flag &=
......
...@@ -350,7 +350,9 @@ export default { ...@@ -350,7 +350,9 @@ export default {
this.tableData = this.tableData1.filter(item => { this.tableData = this.tableData1.filter(item => {
let flag = true let flag = true
if (this.queryParams.deptName) { if (this.queryParams.deptName) {
flag &= item.sceneContent.indexOf(this.queryParams.deptName) > -1 flag &=
item.sceneContent.indexOf(this.queryParams.deptName) > -1 ||
item.reviewNo.indexOf(this.queryParams.deptName) > -1
} }
if (this.queryParams.configType) { if (this.queryParams.configType) {
flag &= flag &=
......
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