Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangao authored and zhangao committed Aug 5, 2023
1 parent 06beaf6 commit bb31303
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pan/menus/PanTopbtn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ export default defineComponent({
<a-dropdown trigger="hover" class="rightmenu" position="bl">
<a-button type="text" size="small" tabindex="-1"><i class="iconfont iconplus" />新建<i class="iconfont icondown" /></a-button>
<template #content>
<a-doption value="newfile" title="Ctrl+N" @click="modalCreatNewFile">
<a-doption value="newfile" title="Ctrl+N" @click="modalCreatNewFile('backupPan')">
<template #icon> <i class="iconfont iconwenjian" /> </template>
<template #default>新建文件</template>
</a-doption>
<a-doption value="newfolder" title="Ctrl+Shift+N" @click="() => modalCreatNewDir('folder')">
<a-doption value="newfolder" title="Ctrl+Shift+N" @click="() => modalCreatNewDir('backupPan', 'folder')">
<template #icon> <i class="iconfont iconfile-folder" /> </template>
<template #default>新建文件夹</template>
</a-doption>
<a-doption value="newdatefolder" @click="() => modalCreatNewDir('datefolder')">
<a-doption value="newdatefolder" @click="() => modalCreatNewDir('backupPan', 'datefolder')">
<template #icon> <i class="iconfont iconfolderadd" /> </template>
<template #default>日期+序号</template>
</a-doption>
Expand Down

0 comments on commit bb31303

Please sign in to comment.