Browse Source

Merge branch 'master' into dev1.5

luwenna 3 năm trước cách đây
mục cha
commit
8d9e425b0f
1 tập tin đã thay đổi với 9 bổ sung2 xóa
  1. 9 2
      src/views/portrayal/components/DynamicList.vue

+ 9 - 2
src/views/portrayal/components/DynamicList.vue

@@ -467,8 +467,15 @@ export default {
       this.isAllFirst = true
       let res = {}
       if (this.userInfo.memberStatus > 0) {
-        if (this.config.isWinner) {//大会员-企业画像
-          res = await getNewMsg(query)
+        if (this.config.isWinner) {
+          // 大会员-企业画像
+          // fix: 新增自定义版大会员判断
+          if (this.userInfo.power.indexOf(13) > -1) {
+            res = await getNewMsg(query)
+          } else {
+            res = await getSvipNewMsg(query)
+          }
+
         } else {//大会员-采购单位画像
           res = await getUnitDt(query)
         }