소스 검색

P544版本调整:物业版不显示收录按钮,营销版正常显示

Signed-off-by: tangshizhe <48740614+tangshizhe@users.noreply.github.com>
tangshizhe 1 년 전
부모
커밋
3205d894fd
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      apps/bigmember_pc/src/views/article-content/components/ContentBIActions.vue

+ 4 - 1
apps/bigmember_pc/src/views/article-content/components/ContentBIActions.vue

@@ -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