This commit is contained in:
linfeng 2023-08-07 10:38:31 +08:00
commit a03720203c
3 changed files with 8 additions and 13 deletions

View File

@ -2,10 +2,11 @@
林风社交论坛用户端linfeng-community-uniapp-ky启动方式 林风社交论坛用户端linfeng-community-uniapp-ky启动方式
将项目导入HBuilderX编辑器在项目根目录执行npm install安装依赖 将项目导入HBuilderX编辑器初次使用请在项目根目录执行npm install安装依赖
然后执行`运行`—>`运行到浏览器`
运行到H5端请执行`运行`—>`运行到浏览器`
运行到微信小程序需要注意,先在`mainfest.json`—>`微信小程序配置`设置小程序APPID
然后再`运行`—>`运行到小程序模拟器`—>`微信开发者工具`
注意开源版适配H5和微信小程序端。 注意开源版适配H5和微信小程序端。

View File

@ -113,7 +113,7 @@
], ],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",
"navigationBarTitleText": "林风论坛", "navigationBarTitleText": "林风社交论坛开源版",
"navigationBarBackgroundColor": "#FFFFFF", "navigationBarBackgroundColor": "#FFFFFF",
"backgroundColor": "#FFFFFF" "backgroundColor": "#FFFFFF"
}, },

View File

@ -30,7 +30,7 @@
}, },
getSysInfo() { getSysInfo() {
this.$H.get("system/miniConfig").then(res => { this.$H.get("system/miniConfig").then(res => {
if(res.code==0){ if (res.code == 0) {
this.logo = res.logo; this.logo = res.logo;
} }
}) })
@ -39,14 +39,13 @@
async login() { async login() {
uni.showLoading({ uni.showLoading({
mask: true, mask: true,
title: '正在登' title: '正在登录中'
}); });
var that = this; var that = this;
let code = await this.getLoginCode(); let code = await this.getLoginCode();
that.$H.post('user/miniWxlogin', { that.$H.post('user/miniWxlogin', {
code: code code: code
}).then(res => { }).then(res => {
if (res.code === 0) { if (res.code === 0) {
uni.setStorageSync("hasLogin", true); uni.setStorageSync("hasLogin", true);
uni.setStorageSync("token", res.token); uni.setStorageSync("token", res.token);
@ -57,12 +56,7 @@
} }
uni.hideLoading(); uni.hideLoading();
}) })
}, },
getUserInfo() { getUserInfo() {
this.$H.get("user/userInfo").then(res => { this.$H.get("user/userInfo").then(res => {
uni.setStorageSync("userInfo", res.result) uni.setStorageSync("userInfo", res.result)