1.去除确认按钮

<template>
  <a-modal
    :title="title"
    :width="950"
    :visible="visible"
    :confirmLoading="confirmLoading"
    @ok="handleOk"
    @cancel="handleCancel"
    cancelText="关闭">
	
    <template slot="footer">
      <a-button @click="handleCancel">关闭</a-button>
    </template>
	
  </a-modal>
</template>

这个是只留下了关闭按钮,也可以换其他的,只留下确认按钮。
在这里插入图片描述

2.增加其他按钮

<template #footer>
  <a-button @click="handleCancel">取消</a-button>
  <a-button type="primary" @click="handleReject">驳回</a-button>
  <a-button type="primary" @click="handleOk">确定</a-button>
</template>

更换模态框内的template即可。
在这里插入图片描述
可以看到这个是三个按钮的。

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐