|
@ -35,7 +35,7 @@ |
|
|
<div class="text"><i style="color: red;">*</i>执行操作:</div> |
|
|
<div class="text"><i style="color: red;">*</i>执行操作:</div> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="22"> |
|
|
<el-col :span="22"> |
|
|
<FormTable ref="secondFormTable" :tableData="secondFormData"></FormTable> |
|
|
<FormTable ref="secondFormTable" :tableData="secondFormData" :type="1"></FormTable> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
</div> |
|
|
</div> |
|
@ -45,7 +45,7 @@ |
|
|
<div class="text"><i style="color: red;">*</i>恢复操作:</div> |
|
|
<div class="text"><i style="color: red;">*</i>恢复操作:</div> |
|
|
</el-col> |
|
|
</el-col> |
|
|
<el-col :span="22"> |
|
|
<el-col :span="22"> |
|
|
<FormTable ref="thirdFormTable" :tableData="thirdFormData"></FormTable> |
|
|
<FormTable ref="thirdFormTable" :tableData="thirdFormData" :type="2"></FormTable> |
|
|
</el-col> |
|
|
</el-col> |
|
|
</el-row> |
|
|
</el-row> |
|
|
</div> |
|
|
</div> |
|
@ -89,7 +89,8 @@ export default { |
|
|
}, |
|
|
}, |
|
|
provide() { |
|
|
provide() { |
|
|
return { |
|
|
return { |
|
|
loadData: throttle(this.loadData, 1000) |
|
|
// loadData: throttle(this.loadData, 100) |
|
|
|
|
|
loadData: this.loadData |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
props: { |
|
|
props: { |
|
@ -238,7 +239,7 @@ export default { |
|
|
this.thirdFormData.push(action); |
|
|
this.thirdFormData.push(action); |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
console.log('secondFormData', this.secondFormData) |
|
|
// console.log('secondFormData', this.secondFormData) |
|
|
}).catch((err) => { |
|
|
}).catch((err) => { |
|
|
console.log(err) |
|
|
console.log(err) |
|
|
Message.error("查询事件预案列表失败", err); |
|
|
Message.error("查询事件预案列表失败", err); |
|
|