|
@@ -363,7 +363,10 @@ export default {
|
|
|
this.list.forEach((v, index) => {
|
|
|
if (v.class === 'employ') {
|
|
|
v.active = employItem.isEmploy ? 1 : 0
|
|
|
- filteredList.push(v)
|
|
|
+ // P544版本调整:物业版不显示收录按钮,营销版正常显示
|
|
|
+ if (this.property !== 'BIProperty') {
|
|
|
+ filteredList.push(v)
|
|
|
+ }
|
|
|
}
|
|
|
if (v.class === 'ignore') {
|
|
|
v.active = employItem.isIgnore ? 1 : 0
|