21 Star 338 Fork 138

sheepjs / shopro-uniapp(分销商城 开源商城)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 662 Bytes
一键复制 编辑 原始数据 按行查看 历史
kele 提交于 2023-12-16 17:42 . 商品列表瀑布流问题修改
<script setup>
import { onLaunch, onShow, onError } from '@dcloudio/uni-app';
import { ShoproInit } from './sheep';
onLaunch(() => {
// 隐藏原生导航栏 使用自定义底部导航
uni.hideTabBar();
// 加载Shopro底层依赖
ShoproInit();
});
onError((err) => {
console.log('AppOnError:', err);
});
onShow(() => {
// #ifdef APP-PLUS
// 获取urlSchemes参数
const args = plus.runtime.arguments;
if (args) {
}
// 获取剪贴板
uni.getClipboardData({
success: (res) => { },
});
// #endif
});
</script>
<style lang="scss">
@import '@/sheep/scss/index.scss';
</style>
1
https://gitee.com/sheepjs/shopro-uniapp.git
git@gitee.com:sheepjs/shopro-uniapp.git
sheepjs
shopro-uniapp
shopro-uniapp(分销商城 开源商城)
master

搜索帮助