Files
aiot-uniapp/src/pages/about/components/upload.vue
feige996 d0b8b5d28d refactor: 移除json5支持并更新路由配置
移除vscode对json5的支持配置和相关插件
将路由配置从json5迁移到jsonc格式
更新vite配置中的分包设置
2025-07-08 16:47:46 +08:00

39 lines
767 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<route lang="jsonc" type="page">
{
"layout": "default",
"style": {
"navigationBarTitleText": "上传-状态一体化"
}
}
</route>
<script lang="ts" setup>
const { loading, data, run } = useUpload()
</script>
<template>
<view class="p-4 text-center">
<wd-button @click="run">
选择图片并上传
</wd-button>
<view v-if="loading" class="h-10 text-blue">
上传...
</view>
<template v-else>
<view class="m-2">
上传后返回的接口数据
</view>
<view class="m-2">
{{ data }}
</view>
<view v-if="data" class="h-80 w-full">
<image :src="data.url" mode="scaleToFill" />
</view>
</template>
</view>
</template>
<style lang="scss" scoped>
//
</style>