Commit 5fec88a6 by Mr. Lan

fix bug.

parent 7b05117e
......@@ -35,7 +35,6 @@ export default {
if (typeof val !== 'string') return
const themeCluster = this.getThemeCluster(val.replace('#', ''))
const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
console.log(themeCluster, originalCluster)
const $message = this.$message({
message: ' Compiling the theme',
......
......@@ -444,7 +444,6 @@ export default {
computed: {
show() {
if (this.data && Object.keys(this.data).length > 0) {
console.log(this.data)
return true
}
return false
......
......@@ -25,7 +25,6 @@ service.interceptors.request.use(
},
error => {
// do something with request error
console.log(error) // for debug
return Promise.reject(error)
}
)
......@@ -99,7 +98,6 @@ service.interceptors.response.use(
})
return
}
console.log('err' + error) // for debug
Message({
message: error.message,
......
......@@ -235,7 +235,6 @@ export default {
this.getCode()
})
} else {
console.log('error submit!!')
return false
}
})
......
......@@ -230,7 +230,6 @@ export default {
// 当前节点
this.nodeStepList.push(this.processStructureValue.nodes[i])
this.activeIndex = this.nodeStepList.length - 1
console.log(this.processStructureValue.workOrder.state.length, this.processStructureValue.workOrder.state.length <= 1)
if (i + 1 === this.processStructureValue.nodes.length) {
this.activeIndex = this.nodeStepList.length
}
......
......@@ -209,7 +209,6 @@ export default {
urgeWorkOrder({
workOrderId: row.id
}).then(response => {
console.log(response)
this.$message({
type: 'success',
message: '已进行催办通知!'
......
......@@ -156,7 +156,6 @@ export default {
},
handleAvatarSuccess(res, file) {
this.ruleForm.logo = res.data
console.log(this.ruleForm.logo)
},
beforeAvatarUpload(file) {
const isLt2M = file.size / 1024 / 1024 < 2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment