fix -- 修复流程设计保存后,未禁用保存按钮问题

This commit is contained in:
konbai
2022-05-24 23:31:58 +08:00
parent 6bc8b5bbd8
commit 2782e6354c

View File

@@ -19,7 +19,7 @@
<el-col :offset="1" :span="3">
<div style="display:flex;justify-content:center;">
<el-button type="primary" @click="onNext()" :disabled="activeStep >= 1">下一步</el-button>
<el-button type="success" @click="onSave()" :disabled="activeStep < 1">保存</el-button>
<el-button type="success" @click="onSave()" :disabled="activeStep !== 1">保存</el-button>
</div>
</el-col>
</el-row>