|
@@ -166,6 +166,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
props: {
|
|
|
+ searchBiz: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
+ },
|
|
|
noShow: {
|
|
|
type: String,
|
|
|
default: '',
|
|
@@ -329,6 +333,7 @@ export default {
|
|
|
this.data.pageSize = this.pageSize
|
|
|
this.data.curIndex = this.curIndex
|
|
|
const query = Object.assign(this.data, this.eleId)
|
|
|
+ if (!this.searchBiz) delete query.bizId
|
|
|
bugList(query).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
this.tableData = res.data.map(item => { return { ...item, isSelected: false } })
|