Auto merge base into tabbar

This commit is contained in:
GitHub Actions 2025-06-06 04:41:25 +00:00
commit 8464a040ab
3 changed files with 4 additions and 3 deletions

View File

@ -31,7 +31,6 @@ export default function useUpload<T extends TfileType>(options: TOptions<T> = {}
const data = ref<any>(null) const data = ref<any>(null)
const run = () => { const run = () => {
// #ifdef MP-WEIXIN
// 微信小程序从基础库 2.21.0 开始, wx.chooseImage 停止维护,请使用 uni.chooseMedia 代替。 // 微信小程序从基础库 2.21.0 开始, wx.chooseImage 停止维护,请使用 uni.chooseMedia 代替。
// 微信小程序在2023年10月17日之后使用本API需要配置隐私协议 // 微信小程序在2023年10月17日之后使用本API需要配置隐私协议
const chooseFileOptions = { const chooseFileOptions = {

View File

@ -85,7 +85,9 @@
"mp-weixin": { "mp-weixin": {
"appid": "wxa2abb91f64032a2b", "appid": "wxa2abb91f64032a2b",
"setting": { "setting": {
"urlCheck": false "urlCheck": false,
"es6": true,
"minified": true
}, },
"usingComponents": true "usingComponents": true
}, },

View File

@ -22,7 +22,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
const { loading, data, run } = useUpload({ user: '菲鸽' }) const { loading, data, run } = useUpload()
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>