This commit is contained in:
jxxghp
2024-06-01 22:07:19 +08:00
parent f29f408b67
commit 5018f96786
7 changed files with 36 additions and 44 deletions

View File

@@ -314,7 +314,7 @@ onBeforeMount(async () => {
</draggable>
<!-- 底部操作按钮 -->
<VFab icon="mdi-view-dashboard-edit" location="bottom end" size="x-large" fixed app appear @click="dialog = true" />
<VFab icon="mdi-view-dashboard-edit" location="bottom" size="x-large" fixed app appear @click="dialog = true" />
<!-- 弹窗根据配置生成选项 -->
<VDialog v-model="dialog" max-width="35rem" scrollable>

View File

@@ -133,21 +133,12 @@ onMounted(() => {
<VFab
v-if="viewType === 'list'"
icon="mdi-view-grid"
location="bottom end"
location="bottom"
size="x-large"
fixed
app
appear
@click="setViewType('card')"
/>
<VFab
v-else
icon="mdi-view-list"
location="bottom end"
size="x-large"
fixed
app
appear
@click="setViewType('list')"
/>
<VFab v-else icon="mdi-view-list" location="bottom" size="x-large" fixed app appear @click="setViewType('list')" />
</template>