赞
踩
1.不显示:
:footer="null"
- <ele-modal
- :width="1200"
- :visible="visible"
- :confirm-loading="loading"
- title="监控点"
- :body-style="{ paddingBottom: '8px' }"
- @update:visible="updateVisible"
- @validate="validate1"
- @ok="save"
- :footer='null' //不显示底部按钮
- >
2.底部按钮文字更改:
- <ele-modal
- :width="1200"
- :visible="visible"
- :confirm-loading="loading"
- title="监控点"
- :body-style="{ paddingBottom: '8px' }"
- @update:visible="updateVisible"
- @validate="validate1"
- @ok="save"
- ok-text="返回" //确定按钮的文字
- cancel-text="取消" //取消按钮的文字
-
- >
3.自定义显示:
- <ele-modal
- :width="1200"
- :visible="visible"
- :confirm-loading="loading"
- title="监控点"
- :body-style="{ paddingBottom: '8px' }"
- @update:visible="updateVisible"
- @validate="validate1"
- @ok="save"
- :footer="null"
- >
-
- //
- <a-row style="margin: 20px 10px 5px" type="flex">
- <a-col flex="1 1 200px"></a-col>
- <a-col flex="0 0 70px">
- <button class="ant-btn ant-btn-primary" type="button" @click="submit" style>
- <span>关闭</span>
- </button>
- </a-col>
- </a-row>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。