Browse Source

style: clear console

zhengxy 2 years ago
parent
commit
634d065dff

+ 0 - 1
project/src/components/groupCode/components/chatGroupOptions.vue

@@ -116,7 +116,6 @@ export default {
116 116
   methods: {
117 117
     // 获取"可选择客户群列表"
118 118
     async handleGetChatList() {
119
-      console.log('handleGetChatList => ', )
120 119
       try {
121 120
         this.loading = true
122 121
         this.chatList = []

+ 0 - 1
project/src/components/groupCode/components/condition.vue

@@ -102,7 +102,6 @@ export default {
102 102
   },
103 103
   methods: {
104 104
     async handleGetData() {
105
-      console.log('handleGetData => ', this.rule_id)
106 105
       try {
107 106
         this.loading = true
108 107
         const { data: res = {} } = await this.$axios.get(this.URL.BASEURL + this.URL.groupCode_condition, {

+ 0 - 6
project/src/components/groupCode/createGroupCode.vue

@@ -292,19 +292,14 @@ export default {
292 292
     },
293 293
     // 点击保存按钮
294 294
     async onClickSave() {
295
-      console.log('onClickSave this.groupForm => ', JSON.parse(JSON.stringify(this.groupForm)))
296 295
       try {
297 296
         // 表单判空校验
298 297
         await this.handleFormValidate()
299 298
         // 获取请求地址 & 参数
300 299
         const { url, params } = this.handleGetParams()
301 300
 
302
-        console.log('params => ', JSON.parse(JSON.stringify(params)))
303
-        console.log('url => ', url)
304
-
305 301
         this.loading = true
306 302
         const { data: res } = await this.$axios.post(url, params)
307
-        console.log('res => ', res)
308 303
         if (res && res.errno == 0) {
309 304
           this.$message.success('保存成功')
310 305
           this.$router.go(-1)
@@ -442,7 +437,6 @@ export default {
442 437
         if (isFoundChat) newChats.splice(idx, 1, isFoundChat)
443 438
       })
444 439
       this.groupForm.chat_id_list = [...newChats]
445
-      console.log('this.groupForm.chat_id_list => ', this.groupForm.chat_id_list)
446 440
     },
447 441
   },
448 442
 }