手机端图片上传

This commit is contained in:
youzi 2025-03-24 09:34:59 +08:00
parent 84d02b5a48
commit e55bdd2c16
5 changed files with 28 additions and 6 deletions

View File

@ -39,8 +39,8 @@ const router = createRouter({
component: () => import("@/views/plink/index.vue"), component: () => import("@/views/plink/index.vue"),
}, },
{ {
path: "/cookbook", path: "/appshare",
component: () => import("@/views/cookbook/index.vue"), component: () => import("@/views/appshare/index.vue"),
}, },
], ],
}, },

View File

@ -26,13 +26,13 @@ const menuInfo = {
}, },
{ {
key: "5", key: "5",
label: () => h(RouterLink, { to: "/cookbook", class: "menu-item font-[500] text-lg" }, { default: () => "菜谱" }), label: () => h(RouterLink, { to: "/appshare", class: "menu-item font-[500] text-lg" }, { default: () => "软件分享" }),
}, },
{ {
key: "6", key: "6",
label: () => h(RouterLink, { to: "/plink", class: "menu-item font-[500] text-lg" }, { default: () => "友链" }), label: () => h(RouterLink, { to: "/plink", class: "menu-item font-[500] text-lg" }, { default: () => "友链" }),
}, },
], ],
menuList: ["/home", "/gallery", "/article", "/widget","/cookbook","/plink"], menuList: ["/home", "/gallery", "/article", "/widget","/appshare","/plink"],
}; };
export default menuInfo; export default menuInfo;

View File

@ -0,0 +1,21 @@
<template>
<div>
</div>
</template>
<script setup>
//mark import
//mark data
//mark method
//mark
</script>
<style scoped>
</style>

View File

@ -19,7 +19,7 @@
<falls :fileList="list" :count="acount" :bot="bottomLen" pathname="filepath" v-slot="{ file }"> <falls :fileList="list" :count="acount" :bot="bottomLen" pathname="filepath" v-slot="{ file }">
<div class="img mb-1" @contextmenu="handdlemenu($event, file)" @longpress="handdlemenu($event, file)"> <div class="img mb-1" @contextmenu="handdlemenu($event, file)" @longpress="handdlemenu($event, file)">
<n-image height="200px" :src="file.filepath" object-fit="fill" :img-props="{ loading: 'lazy' }" /> <n-image height="200px" :src="file.filepath" object-fit="fill" />
</div> </div>
</falls> </falls>

View File

@ -34,7 +34,8 @@
</n-modal> </n-modal>
</n-scrollbar> </n-scrollbar>
<n-upload multiple action="https://www.hxyouzi.com/api/file/upload" accept="image/*" <n-upload multiple action="https://www.hxyouzi.com/api/file/upload" accept="image/*"
:headers="{ Authorization: token }" :show-file-list="false" :on-finish="fileFinish"> :data="{ strategy_id: 2 }"
:headers="{ Authorization: 'Bearer ' + '2|RKsuwoT7mbtuTW7Eguc566uwt7Wg4qgpGA6XTpM1' }" :show-file-list="false" :on-finish="fileFinish">
<n-button type="primary">上传图片</n-button> <n-button type="primary">上传图片</n-button>
</n-upload> </n-upload>
</div> </div>