Commit bf53c261 by zhangzhijie

线索核办完成情况调整至合同内容

parent a9796cb2
......@@ -8,7 +8,7 @@
-->
<template>
<div class="Content">
<right-content ref="rightContent"
<right-content ref="rightContent" v-loading="tableLoading"
:pageBs="pageBs"
:header="header"
:cxFormData="cxFormData"
......@@ -89,6 +89,7 @@ export default {
},
data () {
return {
tableLoading : false,
page: {
page: 1,
limit: 10,
......@@ -267,7 +268,6 @@ export default {
yxms: "",
cron: "",
lycl: "",
yxms: "",
},
};
},
......@@ -356,12 +356,18 @@ export default {
this.$alert("执行任务时会短暂影响系统性能,系统其它模块可能会受影响卡顿,请谨慎操作。", "可能业务风险", {
confirmButtonText: "确定",
type: "warning",
// callback: action => {
// this.$message({
// type: 'info',
// message: `action: ${ action }`
// });
// }
callback: action => {
this.tableLoading = true;
setTimeout(() => {
this.$message.success("执行成功")
this.tableLoading = false;
}, 1000)
// this.$message({
// type: 'info',
// message: `action: ${ action }`
// });
}
});
},
//编辑
......
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