Commit 0838ed3d authored by 陈明豪's avatar 陈明豪

bug修改

parent dd801400
...@@ -268,7 +268,7 @@ export default { ...@@ -268,7 +268,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const jobLogIds = this.ids const jobLogIds = this.ids
this.$modal.confirm('是否确认删除调度日志编号为"' + jobLogIds + '"的数据项').then(function() { this.$modal.confirm('是否确认删除调度日志编号为"' + jobLogIds + '"的数据项').then(function() {
return delJobLog(jobLogIds) return delJobLog(jobLogIds)
}).then(() => { }).then(() => {
this.getList() this.getList()
......
...@@ -285,7 +285,7 @@ export default { ...@@ -285,7 +285,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const operIds = row.operId || this.ids const operIds = row.operId || this.ids
this.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项').then(function() { this.$modal.confirm('是否确认删除日志编号为"' + operIds + '"的数据项').then(function() {
return delOperlog(operIds) return delOperlog(operIds)
}).then(() => { }).then(() => {
this.getList() this.getList()
...@@ -294,7 +294,7 @@ export default { ...@@ -294,7 +294,7 @@ export default {
}, },
/** 清空按钮操作 */ /** 清空按钮操作 */
handleClean() { handleClean() {
this.$modal.confirm('是否确认清空所有操作日志数据项').then(function() { this.$modal.confirm('是否确认清空所有操作日志数据项').then(function() {
return cleanOperlog() return cleanOperlog()
}).then(() => { }).then(() => {
this.getList() this.getList()
......
...@@ -200,7 +200,7 @@ export default { ...@@ -200,7 +200,7 @@ export default {
}, },
// 打开加载层 // 打开加载层
openLoading() { openLoading() {
this.$modal.loading('正在加载服务监控数据,请稍候') this.$modal.loading('正在加载服务监控数据,请稍候')
} }
} }
} }
......
...@@ -867,7 +867,7 @@ export default { ...@@ -867,7 +867,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids const ids = row.id || this.ids
this.$modal.confirm('是否确认删除业务管理-检查管理编号为"' + ids + '"的数据项').then(function() { this.$modal.confirm('是否确认删除业务管理-检查管理编号为"' + ids + '"的数据项').then(function() {
return delManage(ids) return delManage(ids)
}).then(() => { }).then(() => {
this.getList() this.getList()
......
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 to comment