|
@@ -118,12 +118,12 @@ export default {
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
getList() {
|
|
getList() {
|
|
- if (this.list[0].active === 0) {
|
|
|
|
|
|
+ if (this.list[0].active === 0 && this.property !== 'BIProperty') {
|
|
return this.list.slice(0, 1)
|
|
return this.list.slice(0, 1)
|
|
} else if (this.property === 'BIProperty') {
|
|
} else if (this.property === 'BIProperty') {
|
|
// eslint-disable-next-line vue/no-side-effects-in-computed-properties
|
|
// eslint-disable-next-line vue/no-side-effects-in-computed-properties
|
|
this.list = this.list.filter((v) => {
|
|
this.list = this.list.filter((v) => {
|
|
- return v.title !== '创建销售线索'
|
|
|
|
|
|
+ return v.title !== '创建销售线索' && v.title !== '收录'
|
|
})
|
|
})
|
|
return this.list
|
|
return this.list
|
|
} else {
|
|
} else {
|