Commit 0f0747c9 by lyl_task Committed by GitHub

Merge pull request #15 from lanyulei/dev

fix bug.
parents 559f459e 5fec88a6
...@@ -35,7 +35,6 @@ export default { ...@@ -35,7 +35,6 @@ export default {
if (typeof val !== 'string') return if (typeof val !== 'string') return
const themeCluster = this.getThemeCluster(val.replace('#', '')) const themeCluster = this.getThemeCluster(val.replace('#', ''))
const originalCluster = this.getThemeCluster(oldVal.replace('#', '')) const originalCluster = this.getThemeCluster(oldVal.replace('#', ''))
console.log(themeCluster, originalCluster)
const $message = this.$message({ const $message = this.$message({
message: ' Compiling the theme', message: ' Compiling the theme',
......
...@@ -444,7 +444,6 @@ export default { ...@@ -444,7 +444,6 @@ export default {
computed: { computed: {
show() { show() {
if (this.data && Object.keys(this.data).length > 0) { if (this.data && Object.keys(this.data).length > 0) {
console.log(this.data)
return true return true
} }
return false return false
......
...@@ -25,7 +25,6 @@ service.interceptors.request.use( ...@@ -25,7 +25,6 @@ service.interceptors.request.use(
}, },
error => { error => {
// do something with request error // do something with request error
console.log(error) // for debug
return Promise.reject(error) return Promise.reject(error)
} }
) )
...@@ -99,7 +98,6 @@ service.interceptors.response.use( ...@@ -99,7 +98,6 @@ service.interceptors.response.use(
}) })
return return
} }
console.log('err' + error) // for debug
Message({ Message({
message: error.message, message: error.message,
......
...@@ -235,7 +235,6 @@ export default { ...@@ -235,7 +235,6 @@ export default {
this.getCode() this.getCode()
}) })
} else { } else {
console.log('error submit!!')
return false return false
} }
}) })
......
...@@ -230,7 +230,6 @@ export default { ...@@ -230,7 +230,6 @@ export default {
// 当前节点 // 当前节点
this.nodeStepList.push(this.processStructureValue.nodes[i]) this.nodeStepList.push(this.processStructureValue.nodes[i])
this.activeIndex = this.nodeStepList.length - 1 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) { if (i + 1 === this.processStructureValue.nodes.length) {
this.activeIndex = this.nodeStepList.length this.activeIndex = this.nodeStepList.length
} }
......
...@@ -209,7 +209,6 @@ export default { ...@@ -209,7 +209,6 @@ export default {
urgeWorkOrder({ urgeWorkOrder({
workOrderId: row.id workOrderId: row.id
}).then(response => { }).then(response => {
console.log(response)
this.$message({ this.$message({
type: 'success', type: 'success',
message: '已进行催办通知!' message: '已进行催办通知!'
......
...@@ -156,7 +156,6 @@ export default { ...@@ -156,7 +156,6 @@ export default {
}, },
handleAvatarSuccess(res, file) { handleAvatarSuccess(res, file) {
this.ruleForm.logo = res.data this.ruleForm.logo = res.data
console.log(this.ruleForm.logo)
}, },
beforeAvatarUpload(file) { beforeAvatarUpload(file) {
const isLt2M = file.size / 1024 / 1024 < 2 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