1 Star 0 Fork 1

Neufurious/neuinterview

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
Neufurious 提交于 2024-09-19 13:24 +08:00 . 项目初始化 202409191324 v1.0.0
<script setup>
import {
onLaunch,
onShow,
onError
} from '@dcloudio/uni-app';
import {
ChatproInit
} from './sheep';
onLaunch(() => {
console.log('AppOnLaunch');
// 加载Shopro底层依赖
ChatproInit();
});
onError((err) => {
console.log('AppOnError:', err);
});
onShow((options) => {
// #ifdef APP-PLUS
// 获取urlSchemes参数
const args = plus.runtime.arguments;
if (args) {}
// 获取剪贴板
uni.getClipboardData({
success: (res) => {},
});
// #endif
// #ifdef MP-WEIXIN
// 确认收货回调结果
console.log(options, 'options');
// #endif
});
</script>
<style lang="scss">
/*每个页面公共css */
@import '@/static/commoncustom.css';
@import '@/uni_modules/uni-scss/index.scss';
/* #ifndef APP-NVUE */
@import '@/static/customicons.css';
@import '@/sheep/scss/index.scss';
// 设置整个项目的背景色
page {
background-color: #ffffff;
}
/* #endif */
.example-info {
font-size: 14px;
color: #333;
padding: 10px;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
其他
1
https://gitee.com/neufurious/neuinterview.git
git@gitee.com:neufurious/neuinterview.git
neufurious
neuinterview
neuinterview
master

搜索帮助