refactor: 去掉调试信息

This commit is contained in:
taojinlong 2021-05-12 11:53:50 +08:00
parent 18bb4f382d
commit 622169a33e
3 changed files with 0 additions and 4 deletions

View File

@ -124,7 +124,6 @@ export default {
}, },
getData(id) { getData(id) {
if (id) { if (id) {
debugger
this.requestStatus = 'waiting' this.requestStatus = 'waiting'
this.message = null this.message = null
viewData(id, this.filter).then(response => { viewData(id, this.filter).then(response => {

View File

@ -127,7 +127,6 @@ export default {
}, },
methods: { methods: {
subjectDelete(id) { subjectDelete(id) {
debugger
deleteSubject(id).then(response => { deleteSubject(id).then(response => {
this.$message({ this.$message({
message: '删除成功', message: '删除成功',
@ -141,7 +140,6 @@ export default {
const request = { const request = {
details: JSON.stringify(this.canvasStyleData) details: JSON.stringify(this.canvasStyleData)
} }
debugger
saveSubject(request).then(response => { saveSubject(request).then(response => {
this.$message({ this.$message({
message: '保存成功', message: '保存成功',

View File

@ -163,7 +163,6 @@ export default {
watch: { watch: {
subjectItem: { subjectItem: {
handler(newVal, oldVla) { handler(newVal, oldVla) {
debugger
this.subjectItemDetails = chartTransStr2Object(JSON.parse(newVal.details), 'Y') this.subjectItemDetails = chartTransStr2Object(JSON.parse(newVal.details), 'Y')
}, },
deep: true deep: true