|
@@ -1,3 +1,4 @@
|
|
|
+<!-- 流程配置 -->
|
|
|
<template>
|
|
|
<div class="flowPath">
|
|
|
<div class="filteroption">
|
|
@@ -94,11 +95,12 @@
|
|
|
:ssbms="ssbms"
|
|
|
:option="option"
|
|
|
:isedit="isedit"
|
|
|
+ :loading="loading"
|
|
|
@remind="remind"
|
|
|
/>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialogVisible = false">取 消</el-button>
|
|
|
- <el-button type="primary" @click="submitOrder">确 定</el-button>
|
|
|
+ <el-button type="primary" @click="submitOrder" :loading="load">确 定</el-button>
|
|
|
<!-- <el-button type="primary" @click="submitOrders">测 试</el-button> -->
|
|
|
</span>
|
|
|
</el-dialog>
|
|
@@ -118,6 +120,8 @@ export default {
|
|
|
components: { TableItem, Merge },
|
|
|
data() {
|
|
|
return {
|
|
|
+ // 提交按钮
|
|
|
+ load:false,
|
|
|
gdlx: '',
|
|
|
gdlxs: [],
|
|
|
isedit: false,
|
|
@@ -314,7 +318,9 @@ export default {
|
|
|
|
|
|
// 提交
|
|
|
submitOrder() {
|
|
|
+ this.load = true
|
|
|
this.$refs.merge.submitForm()
|
|
|
+
|
|
|
},
|
|
|
// 提交
|
|
|
submitOrders() {
|
|
@@ -322,6 +328,8 @@ export default {
|
|
|
},
|
|
|
// 提示
|
|
|
remind(data) {
|
|
|
+ // console.log("提示"+JSON.stringify(data))
|
|
|
+ this.load = data[1]
|
|
|
this.dialogVisible = false
|
|
|
this.fetchData(this.pagination)
|
|
|
}
|