Browse Source

fix: 客户管理 - 客户状态判断逻辑

zhengxy 1 year ago
parent
commit
7b4e37070e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      project/src/components/customManage/manage.vue

+ 1 - 1
project/src/components/customManage/manage.vue

@@ -235,7 +235,7 @@ export default {
235 235
   },
236 236
   methods: {
237 237
     checkSelectable (row, index) {//列表可选择的用户
238
-      return row.relation_enable == 1
238
+      return row.relation_enable == 1 || row.relation_enable == 0
239 239
     },
240 240
     changeDrawerSize () {
241 241
       this.drawerSize = this.drawerSize == '100%' ? '60%' : '100%'