Browse Source

chore: remove console

zhengxy 2 years ago
parent
commit
9cbe4fc6be
1 changed files with 0 additions and 9 deletions
  1. 0 9
      project/src/components/manage/roleManage.vue

+ 0 - 9
project/src/components/manage/roleManage.vue

@@ -393,23 +393,16 @@ export default {
393 393
 
394 394
     // 监听"关联ADQ账号"变化
395 395
     onChangeAdqAccount({ isSelectAll, selectedList }) {
396
-      console.log('onChangeAdqAccount => ', isSelectAll, selectedList)
397 396
       this.adq_account = [...selectedList]
398 397
       this.is_all_adq = isSelectAll
399
-      console.log('this.adq_account => ', this.adq_account)
400
-      console.log('this.is_all_adq => ', this.is_all_adq)
401 398
     },
402 399
     // 监听"关联MP账号"变化
403 400
     onChangeMpAccount({ isSelectAll, selectedList }) {
404
-      console.log('onChangeMpAccount => ', isSelectAll, selectedList)
405 401
       this.mp_account = [...selectedList]
406 402
       this.is_all_mp = isSelectAll
407
-      console.log('this.mp_account => ', this.mp_account)
408
-      console.log('this.is_all_mp => ', this.is_all_mp)
409 403
     },
410 404
     // 编辑账号 - 回显关联账号相关数据
411 405
     async handleGetAccountData(detailData) {
412
-      console.log('detailData => ', detailData)
413 406
       const { is_all_adq, is_all_mp, can_export, adq_account, mp_account } = detailData
414 407
       this.is_all_adq = is_all_adq == 1 ? true : false
415 408
       this.is_all_mp = is_all_mp == 1 ? true : false
@@ -438,8 +431,6 @@ export default {
438 431
         })
439 432
         this.mp_account = [..._temp]
440 433
       }
441
-      console.log('this.adq_account => ', this.adq_account)
442
-      console.log('this.mp_account => ', this.mp_account)
443 434
     },
444 435
     // 获取全部ADQ账号
445 436
     handleGetAdqAccount() {