Commit f94b8d65179e877f394606d56a67e3ff852dbff3
1 parent
fba71e27
perf: hide submit button on create rule data flow on first step
Showing
1 changed file
with
3 additions
and
1 deletions
... | ... | @@ -33,7 +33,9 @@ |
33 | 33 | </div> |
34 | 34 | </div> |
35 | 35 | <div style="float: right" v-if="isViewStatus"> |
36 | - <Button type="primary" @click="handleSubmit" class="mr-2">确认</Button> | |
36 | + <Button type="primary" @click="handleSubmit" v-show="current === 1" class="mr-2" | |
37 | + >确认</Button | |
38 | + > | |
37 | 39 | <Button type="default" @click="handleCancel" class="mr-2">取消</Button> |
38 | 40 | </div> |
39 | 41 | </BasicModal> | ... | ... |