1 Star 0 Fork 0

NayoAyo/md-form-modal

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
AddBtn的副本.vue 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
NayoAyo 提交于 2023-07-05 09:03 . Initial commit
<template>
<a-dropdown-button @click="$emit('add')" type="primary">
<a-icon type="plus"/>
{{ $t('functiontrans.sysInstitutionsEmplist.ins') }}
<template #overlay>
<a-menu style="width: 115px">
<!-- <a-menu-item key="1" @click="$emit('download')">-->
<!-- 下载模板-->
<!-- </a-menu-item>-->
<a-menu-item v-if="Import" key="2" @click="$emit('import')">
{{ menuTitle || $t('functiontrans.sysInstitutionsEmplist.input') }}
</a-menu-item>
<a-menu-item v-for="item in menus" :key="item.key" @click="$emit('clickMenus',item.key)">
{{ item.name }}
</a-menu-item>
</a-menu>
</template>
<template #icon>
<a-icon type="down"/>
</template>
</a-dropdown-button>
</template>
<script>
export default {
name: 'AddBtn',
props: {
menuTitle: {
type: String,
},
Import: {
type: Boolean,
default: true
},
menus: Array
}
};
</script>
<style scoped lang="scss">
::v-deep {
.ant-btn-group > .ant-btn:first-child:not(:last-child), .ant-btn-group > span:first-child:not(:last-child) > .ant-btn {
border-top-left-radius: 2px !important;
border-bottom-left-radius: 2px !important;
}
}
.addBtn-content {
div {
cursor: pointer;
}
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ysllll/md-form-modal.git
git@gitee.com:ysllll/md-form-modal.git
ysllll
md-form-modal
md-form-modal
master

搜索帮助