2 Star 8 Fork 8

糯米藕/chatgpt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1010 Bytes
一键复制 编辑 原始数据 按行查看 历史
糯米藕 提交于 2023-03-25 10:49 . no message
<script>
import {mapMutations} from 'vuex';
export default {
onLaunch: function() {
let that = this
uni.getSystemInfo({
success: function (res) {
let platform = ""
switch (res.uniPlatform) {
case "mp-weixin":
platform = "weixin"
break;
case "mp-douyin":
platform = "douyin"
break;
}
that.$setVal({key: "platform", value: platform})
}
});
that.$wiseApi.getConfig(); // 获取配置
this.updateUserInfo(); // 更新用户数据
let today_data = uni.getStorageSync("today_data");
if(today_data){
this.$setVal({key: "today_data",value: today_data});
}
let msgAllList = uni.getStorageSync("msgAllList");
if(msgAllList){
this.$setVal({key: "msgAllList",value: JSON.parse(msgAllList)});
}
},
onShow: function() {
},
onHide: function() {
},
}
</script>
<style lang="scss">
@import "@/uni_modules/uview-plus/index.scss";
@import "@/static/css/iconfont.css";
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/maxmansx/chatgpt.git
git@gitee.com:maxmansx/chatgpt.git
maxmansx
chatgpt
chatgpt
master

搜索帮助