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

bug修改

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