29 lines
408 B
Vue
Raw Permalink Normal View History

2025-06-06 03:08:19 +08:00
<template>
<view>
<nav-bar title="图片上传/文件上传"></nav-bar>
<!-- 公共组件-每个页面必须引入 -->
<public-module></public-module>
</view>
</template>
<script>
export default {
data() {
return {
};
},
//方法
methods: {
onPageJump(url) {
uni.navigateTo({
url: url
});
}
}
};
</script>
<style lang="scss" scoped>
@import '@/style/mixin.scss';
</style>