feat: 删除debugger和console.log

This commit is contained in:
fit2cloud-chenyw 2021-06-07 17:11:33 +08:00
parent e520101af1
commit 198208fc8c
4 changed files with 2 additions and 4 deletions

View File

@ -9,7 +9,6 @@ export function checkPermission(pers) {
}
export function hasDataPermission(pTarget, pSource) {
debugger
if (pSource && pTarget) {
return pSource.indexOf(pTarget) > -1
}

View File

@ -82,7 +82,6 @@ export default {
},
methods: {
showCurrentTemplateInfo(data) {
debugger
this.editPanel.panelInfo.name = data.name
this.editPanel.panelInfo.panelStyle = data.templateStyle
this.editPanel.panelInfo.panelData = data.templateData

View File

@ -146,7 +146,7 @@ export default {
},
methods: {
handleClick(tab, event) {
console.log(tab, event)
// console.log(tab, event)
},
create() {
this.$router.push({ name: 'system-role-form' })

View File

@ -152,7 +152,7 @@ export default {
this.formInline = response.data
this.formInline.ssl = this.formInline.ssl === 'true'
this.formInline.tls = this.formInline.tls === 'true'
console.log(this.formInline)
// console.log(this.formInline)
this.$nextTick(() => {
this.$refs.formInline.clearValidate()
})