|
|
@@ -1477,28 +1477,29 @@
|
|
|
</a-card>
|
|
|
<a-card style="position: relative;bottom: 0;width: 100%">
|
|
|
<div style="text-align: center">
|
|
|
- <a-button v-if=" !this.showInfo" style="margin-right: 8px" @click="terminatingOperation"
|
|
|
- :disabled="isDisabled">终止
|
|
|
- </a-button>
|
|
|
- <a-button v-if="current < steps.length - 1 && !this.showInfo" type="primary" @click="nextSteps">下一步</a-button>
|
|
|
+<!-- <a-button v-if=" !this.showInfo" style="margin-right: 8px" @click="terminatingOperation"-->
|
|
|
+<!-- :disabled="isDisabled">终止-->
|
|
|
+<!-- </a-button>-->
|
|
|
+ <a-button v-if="current > 0 && !this.showInfo" style="margin-left: 8px" @click="prevSteps">上一步</a-button>
|
|
|
+
|
|
|
<a-button
|
|
|
v-if="current == steps.length - 1 && !this.showInfo"
|
|
|
- @click="submitBusiness"
|
|
|
+ @click="submitBusiness" style="margin-left: 8px;margin-right: 8px"
|
|
|
type="primary" :disabled="isDisabled"
|
|
|
>
|
|
|
提交
|
|
|
</a-button>
|
|
|
- <a-button v-if="current > 0 && !this.showInfo" style="margin-left: 8px" @click="prevSteps">上一步</a-button>
|
|
|
+
|
|
|
<a-button v-if="current==2 && this.showInfo" style="margin-left: 8px;margin-right: 8px"
|
|
|
@click="terminatingPrevSteps">上一步
|
|
|
</a-button>
|
|
|
-
|
|
|
+ <a-button v-if="current < steps.length - 1 && !this.showInfo" type="primary" style="margin-left: 8px" @click="nextSteps">下一步</a-button>
|
|
|
<a-button @click="continueOperation" type="primary" v-if="current==2 && this.showInfo ">
|
|
|
继续操作
|
|
|
</a-button>
|
|
|
- <a-button v-if="current==2 && this.showInfo " style="margin-left: 8px" @click="terminatingOperation"
|
|
|
- :disabled="isDisabled">终止操作
|
|
|
- </a-button>
|
|
|
+<!-- <a-button v-if="current==2 && this.showInfo " style="margin-left: 8px" @click="terminatingOperation"-->
|
|
|
+<!-- :disabled="isDisabled">终止操作-->
|
|
|
+<!-- </a-button>-->
|
|
|
</div>
|
|
|
</a-card>
|
|
|
|