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,7 +33,9 @@ | ||
33 | </div> | 33 | </div> |
34 | </div> | 34 | </div> |
35 | <div style="float: right" v-if="isViewStatus"> | 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 | <Button type="default" @click="handleCancel" class="mr-2">取消</Button> | 39 | <Button type="default" @click="handleCancel" class="mr-2">取消</Button> |
38 | </div> | 40 | </div> |
39 | </BasicModal> | 41 | </BasicModal> |