Skip to content

Commit 0ae785c

Browse files
committed
fix(view): 注释 console.log
1 parent afe9663 commit 0ae785c

File tree

13 files changed

+21
-21
lines changed

13 files changed

+21
-21
lines changed

admin/src/views/api_excel/add.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default {
118118
watch: {
119119
item(value) {
120120
this.form.api_param_id = value
121-
console.log(this.form.api_param_id)
121+
// console.log(this.form.api_param_id)
122122
this.getItem()
123123
}
124124
},
@@ -135,10 +135,10 @@ export default {
135135
})
136136
},
137137
handleRemove(file, fileList) {
138-
console.log(file, fileList)
138+
// console.log(file, fileList)
139139
},
140140
handlePreview(file) {
141-
console.log(file)
141+
// console.log(file)
142142
},
143143
handleExceed(files, fileList) {
144144
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`)
@@ -158,7 +158,7 @@ export default {
158158
}
159159
},
160160
onSubmit(form) {
161-
console.log(this.form)
161+
// console.log(this.form)
162162
this.$refs[form].validate((valid) => {
163163
if (valid) {
164164
this.loading = true

admin/src/views/api_excel/edit.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ export default {
103103
watch: {
104104
item(value) {
105105
this.form.api_excel_id = value
106-
console.log(this.form.api_excel_id)
106+
// console.log(this.form.api_excel_id)
107107
this.getItem()
108108
}
109109
},
@@ -122,10 +122,10 @@ export default {
122122
})
123123
},
124124
handleRemove(file, fileList) {
125-
console.log(file, fileList)
125+
// console.log(file, fileList)
126126
},
127127
handlePreview(file) {
128-
console.log(file)
128+
// console.log(file)
129129
},
130130
handleExceed(files, fileList) {
131131
this.$message.warning(`当前限制选择 3 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`)
@@ -134,7 +134,7 @@ export default {
134134
return this.$confirm(`确定移除 ${file.name}`)
135135
},
136136
handleSuccess(response, file, fileList) {
137-
console.log(response)
137+
// console.log(response)
138138
this.form.upload_url = response.data.url
139139
},
140140
getData(id) {

admin/src/views/api_excel/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export default {
140140
type: 'warning'
141141
}).then(() => {
142142
startTask(row).then(res => {
143-
console.log(res)
143+
// console.log(res)
144144
let msg = ''
145145
if (res.code === 200) {
146146
row.state = 1

admin/src/views/api_param/add.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default {
8484
},
8585
methods: {
8686
onSubmit(form) {
87-
console.log(this.form)
87+
// console.log(this.form)
8888
this.$refs[form].validate((valid) => {
8989
if (valid) {
9090
this.loading = true

admin/src/views/api_param/edit.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default {
100100
})
101101
},
102102
onSubmit(form) {
103-
console.log(this.form)
103+
// console.log(this.form)
104104
this.$refs[form].validate((valid) => {
105105
if (valid) {
106106
this.loading = true

admin/src/views/article/edit.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ export default {
167167
* 1. 通过引入对象获取: `import {mavonEditor} from ...` 等方式引入后,`$vm`为`mavonEditor`
168168
* 2. 通过$refs获取: html声明ref : `<mavon-editor ref=md ></mavon-editor>,`$vm`为 `this.$refs.md`
169169
*/
170-
console.log(pos)
171-
console.log(url)
170+
// console.log(pos)
171+
// console.log(url)
172172
this.$refs.md.$img2Url(pos, url.data)
173173
})
174174
},

admin/src/views/category/add.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default {
5454
},
5555
methods: {
5656
onSubmit(form) {
57-
console.log(this.form)
57+
// console.log(this.form)
5858
this.$refs[form].validate((valid) => {
5959
if (valid) {
6060
this.loading = true

admin/src/views/login/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default {
123123
this.loading = false
124124
})
125125
} else {
126-
console.log('error submit!!')
126+
// console.log('error submit!!')
127127
return false
128128
}
129129
})

admin/src/views/markdown/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export default {
3131
* 1. 通过引入对象获取: `import {mavonEditor} from ...` 等方式引入后,`$vm`为`mavonEditor`
3232
* 2. 通过$refs获取: html声明ref : `<mavon-editor ref=md ></mavon-editor>,`$vm`为 `this.$refs.md`
3333
*/
34-
console.log(pos)
35-
console.log(url)
34+
// console.log(pos)
35+
// console.log(url)
3636
this.$refs.md.$img2Url(pos, url.data)
3737
})
3838
},

admin/src/views/nav/add.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default {
4343
},
4444
methods: {
4545
onSubmit(form) {
46-
console.log(this.form)
46+
// console.log(this.form)
4747
this.$refs[form].validate((valid) => {
4848
if (valid) {
4949
this.loading = true

0 commit comments

Comments
 (0)