up
This commit is contained in:
commit
237ee81360
@ -300,6 +300,9 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserDao, AppUserEntity> i
|
||||
public Integer miniWxLogin(WxLoginForm form) {
|
||||
|
||||
String openId = getOpenId(form.getCode());
|
||||
if(io.linfeng.common.utils.ObjectUtil.isEmpty(openId)){
|
||||
throw new LinfengException("请正确配置appId和密钥");
|
||||
}
|
||||
//根据openId获取数据库信息 判断用户是否登录
|
||||
AppUserEntity user = this.lambdaQuery().eq(AppUserEntity::getOpenid, openId).one();
|
||||
if (ObjectUtil.isNotNull(user)) {
|
||||
|
@ -1,28 +0,0 @@
|
||||
/**
|
||||
* -----------------------------------
|
||||
* 林风社交论坛开源版本请务必保留此注释头信息
|
||||
* 开源地址: https://gitee.com/virus010101/linfeng-community
|
||||
* 演示站点: https://www.linfeng.tech
|
||||
* 可正常分享和学习源码,不得专卖或非法牟利!
|
||||
* 商业版购买联系技术客服 QQ: 3582996245
|
||||
* Copyright (c) 2021-2023 linfeng all rights reserved.
|
||||
* 版权所有 ,侵权必究!
|
||||
* -----------------------------------
|
||||
*/
|
||||
package io.linfeng.modules.app.dao;
|
||||
|
||||
import io.linfeng.modules.app.entity.UserTopicEntity;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author linfeng
|
||||
* @email 3582996245@qq.com
|
||||
* @date 2022-01-23 21:24:46
|
||||
*/
|
||||
@Mapper
|
||||
public interface UserTopicDao extends BaseMapper<UserTopicEntity> {
|
||||
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
/**
|
||||
* -----------------------------------
|
||||
* 林风社交论坛开源版本请务必保留此注释头信息
|
||||
* 开源地址: https://gitee.com/virus010101/linfeng-community
|
||||
* 演示站点: https://www.linfeng.tech
|
||||
* 可正常分享和学习源码,不得用于非法牟利!
|
||||
* 商业版购买联系技术客服 QQ: 3582996245
|
||||
* Copyright (c) 2021-2023 linfeng all rights reserved.
|
||||
* 版权所有 ,侵权必究!
|
||||
* -----------------------------------
|
||||
*/
|
||||
package io.linfeng.modules.app.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author linfeng
|
||||
* @email 3582996245@qq.com
|
||||
* @date 2022-01-23 21:24:46
|
||||
*/
|
||||
@Data
|
||||
@TableName("lf_user_topic")
|
||||
public class UserTopicEntity implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
// @TableId
|
||||
private Integer uid;
|
||||
/**
|
||||
* 圈子id
|
||||
*/
|
||||
private Integer topicId;
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
}
|
@ -1,33 +0,0 @@
|
||||
/**
|
||||
* -----------------------------------
|
||||
* 林风社交论坛开源版本请务必保留此注释头信息
|
||||
* 开源地址: https://gitee.com/virus010101/linfeng-community
|
||||
* 演示站点:https://www.linfeng.tech
|
||||
* 可正常分享和学习源码,不得用于非法牟利!
|
||||
* 商业版购买联系技术客服 QQ: 3582996245
|
||||
* Copyright (c) 2021-2023 linfeng all rights reserved.
|
||||
* 版权所有,侵权必究!
|
||||
* -----------------------------------
|
||||
*/
|
||||
package io.linfeng.modules.app.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import io.linfeng.common.utils.PageUtils;
|
||||
import io.linfeng.modules.app.entity.UserTopicEntity;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @author linfeng
|
||||
* @email 3582996245@qq.com
|
||||
* @date 2022-01-23 21:24:46
|
||||
*/
|
||||
public interface UserTopicService extends IService<UserTopicEntity> {
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params);
|
||||
|
||||
}
|
||||
|
@ -1,41 +0,0 @@
|
||||
/**
|
||||
* -----------------------------------
|
||||
* 林风社交论坛开源版本请务必保留此注释头信息
|
||||
* 开源地址: https://gitee.com/virus010101/linfeng-community
|
||||
* 可正常分享和学习源码,不得用于非法牟利!
|
||||
* 商业版购买联系技术客服 QQ: 3582996245
|
||||
* Copyright (c) 2021-2023 linfeng all rights reserved.
|
||||
* 演示站点:https://www.linfeng.tech
|
||||
* 版权所有,侵权必究!
|
||||
* -----------------------------------
|
||||
*/
|
||||
package io.linfeng.modules.app.service.impl;
|
||||
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.Map;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import io.linfeng.common.utils.PageUtils;
|
||||
import io.linfeng.common.utils.Query;
|
||||
|
||||
import io.linfeng.modules.app.dao.UserTopicDao;
|
||||
import io.linfeng.modules.app.entity.UserTopicEntity;
|
||||
import io.linfeng.modules.app.service.UserTopicService;
|
||||
|
||||
|
||||
@Service("userTopicService")
|
||||
public class UserTopicServiceImpl extends ServiceImpl<UserTopicDao, UserTopicEntity> implements UserTopicService {
|
||||
|
||||
@Override
|
||||
public PageUtils queryPage(Map<String, Object> params) {
|
||||
IPage<UserTopicEntity> page = this.page(
|
||||
new Query<UserTopicEntity>().getPage(params),
|
||||
new QueryWrapper<>()
|
||||
);
|
||||
|
||||
return new PageUtils(page);
|
||||
}
|
||||
|
||||
}
|
@ -1,150 +1,150 @@
|
||||
<template>
|
||||
<view>
|
||||
<u-navbar :is-back="false" z-index="99999">
|
||||
<u-tabs :list="tabList" font-size="35" name="cateName" bg-color="#fff" :current="current"
|
||||
@change="tabChange"></u-tabs>
|
||||
</u-navbar>
|
||||
<!-- 最新 -->
|
||||
<view v-if="current === 1">
|
||||
<post-list :list="lastPost" :loadStatus="loadStatus2"></post-list>
|
||||
</view>
|
||||
<!-- 关注 -->
|
||||
<view v-if="current === 0">
|
||||
<post-list :list="followUserPost" :loadStatus="loadStatus1"></post-list>
|
||||
</view>
|
||||
<!-- 发贴入口 -->
|
||||
<add-post-tag></add-post-tag>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import postList from '../../components/post-list/post-list.vue';
|
||||
import addPostTag from '../../components/add-post-tag/add-post-tag.vue';
|
||||
export default {
|
||||
components: {
|
||||
postList,
|
||||
addPostTag
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
sessionUid: uni.getStorageSync('userInfo').uid,
|
||||
loadStatus1: 'loadmore',
|
||||
loadStatus2: 'loadmore',
|
||||
page1: 1,
|
||||
page2: 1,
|
||||
shareCover: '',
|
||||
followUserPost: [],
|
||||
lastPost: [],
|
||||
tabList: [{
|
||||
name: '关注'
|
||||
},
|
||||
{
|
||||
name: '最新'
|
||||
}
|
||||
],
|
||||
current: 1,
|
||||
|
||||
};
|
||||
},
|
||||
onShareAppMessage(res) {
|
||||
return {
|
||||
title: this.$c.miniappName,
|
||||
path: '/pages/index/index',
|
||||
imageUrl: this.shareCover
|
||||
};
|
||||
},
|
||||
onLoad() {
|
||||
this.getLastPost();
|
||||
},
|
||||
onReachBottom() {
|
||||
if (this.current === 0) {
|
||||
this.page1++;
|
||||
this.getFollowUserPost();
|
||||
}
|
||||
|
||||
if (this.current === 1) {
|
||||
this.page2++;
|
||||
this.getLastPost();
|
||||
}
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
if (this.current === 0) {
|
||||
this.page1 = 1;
|
||||
this.followUserPost = [];
|
||||
this.getFollowUserPost();
|
||||
}
|
||||
if (this.current === 1) {
|
||||
this.page2 = 1;
|
||||
this.lastPost = [];
|
||||
this.getLastPost();
|
||||
}
|
||||
uni.stopPullDownRefresh();
|
||||
},
|
||||
methods: {
|
||||
|
||||
tabChange(index) {
|
||||
this.current = index;
|
||||
this.followUserPost = [];
|
||||
this.lastPost = [];
|
||||
|
||||
if (index === 0) {
|
||||
this.page1 = 1;
|
||||
this.getFollowUserPost();
|
||||
|
||||
}
|
||||
if (index === 1) {
|
||||
this.page2 = 1;
|
||||
this.getLastPost();
|
||||
}
|
||||
},
|
||||
getSysInfo() {
|
||||
this.$H.get('system/miniConfig').then(res => {
|
||||
this.shareCover = res.result.intro;
|
||||
});
|
||||
},
|
||||
// 获取关注用户帖子
|
||||
getFollowUserPost() {
|
||||
this.loadStatus1 = 'loading';
|
||||
this.$H
|
||||
.get('post/followUserPost', {
|
||||
page: this.page1
|
||||
})
|
||||
.then(res => {
|
||||
if (res.code == 0 && res.result) {
|
||||
this.followUserPost = this.followUserPost.concat(res.result.data);
|
||||
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
|
||||
this.loadStatus1 = 'nomore';
|
||||
} else {
|
||||
this.loadStatus1 = 'loadmore';
|
||||
}
|
||||
} else {
|
||||
this.loadStatus1 = 'nomore';
|
||||
}
|
||||
|
||||
});
|
||||
},
|
||||
//获取最新帖子
|
||||
getLastPost() {
|
||||
this.loadStatus2 = 'loading';
|
||||
this.$H
|
||||
.get('post/lastPost', {
|
||||
page: this.page2
|
||||
})
|
||||
.then(res => {
|
||||
this.lastPost = this.lastPost.concat(res.result.data);
|
||||
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
|
||||
this.loadStatus2 = 'nomore';
|
||||
} else {
|
||||
this.loadStatus2 = 'loadmore';
|
||||
}
|
||||
});
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
page {
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
<template>
|
||||
<view>
|
||||
<u-navbar :is-back="false" z-index="99999">
|
||||
<u-tabs :list="tabList" font-size="35" name="cateName" bg-color="#fff" :current="current"
|
||||
@change="tabChange"></u-tabs>
|
||||
</u-navbar>
|
||||
<!-- 最新 -->
|
||||
<view v-if="current === 1">
|
||||
<post-list :list="lastPost" :loadStatus="loadStatus2"></post-list>
|
||||
</view>
|
||||
<!-- 关注 -->
|
||||
<view v-if="current === 0">
|
||||
<post-list :list="followUserPost" :loadStatus="loadStatus1"></post-list>
|
||||
</view>
|
||||
<!-- 发贴入口 -->
|
||||
<add-post-tag></add-post-tag>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import postList from '../../components/post-list/post-list.vue';
|
||||
import addPostTag from '../../components/add-post-tag/add-post-tag.vue';
|
||||
export default {
|
||||
components: {
|
||||
postList,
|
||||
addPostTag
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
sessionUid: uni.getStorageSync('userInfo').uid,
|
||||
loadStatus1: 'loadmore',
|
||||
loadStatus2: 'loadmore',
|
||||
page1: 1,
|
||||
page2: 1,
|
||||
shareCover: '',
|
||||
followUserPost: [],
|
||||
lastPost: [],
|
||||
tabList: [{
|
||||
name: '关注'
|
||||
},
|
||||
{
|
||||
name: '最新'
|
||||
}
|
||||
],
|
||||
current: 1,
|
||||
|
||||
};
|
||||
},
|
||||
onShareAppMessage(res) {
|
||||
return {
|
||||
title: this.$c.miniappName,
|
||||
path: '/pages/index/index',
|
||||
imageUrl: this.shareCover
|
||||
};
|
||||
},
|
||||
onLoad() {
|
||||
this.getLastPost();
|
||||
},
|
||||
onReachBottom() {
|
||||
if (this.current === 0) {
|
||||
this.page1++;
|
||||
this.getFollowUserPost();
|
||||
}
|
||||
|
||||
if (this.current === 1) {
|
||||
this.page2++;
|
||||
this.getLastPost();
|
||||
}
|
||||
},
|
||||
onPullDownRefresh() {
|
||||
if (this.current === 0) {
|
||||
this.page1 = 1;
|
||||
this.followUserPost = [];
|
||||
this.getFollowUserPost();
|
||||
}
|
||||
if (this.current === 1) {
|
||||
this.page2 = 1;
|
||||
this.lastPost = [];
|
||||
this.getLastPost();
|
||||
}
|
||||
uni.stopPullDownRefresh();
|
||||
},
|
||||
methods: {
|
||||
|
||||
tabChange(index) {
|
||||
this.current = index;
|
||||
this.followUserPost = [];
|
||||
this.lastPost = [];
|
||||
|
||||
if (index === 0) {
|
||||
this.page1 = 1;
|
||||
this.getFollowUserPost();
|
||||
|
||||
}
|
||||
if (index === 1) {
|
||||
this.page2 = 1;
|
||||
this.getLastPost();
|
||||
}
|
||||
},
|
||||
getSysInfo() {
|
||||
this.$H.get('system/miniConfig').then(res => {
|
||||
this.shareCover = res.result.intro;
|
||||
});
|
||||
},
|
||||
// 获取关注用户帖子
|
||||
getFollowUserPost() {
|
||||
this.loadStatus1 = 'loading';
|
||||
this.$H
|
||||
.get('post/followUserPost', {
|
||||
page: this.page1
|
||||
})
|
||||
.then(res => {
|
||||
if (res.code == 0 && res.result) {
|
||||
this.followUserPost = this.followUserPost.concat(res.result.data);
|
||||
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
|
||||
this.loadStatus1 = 'nomore';
|
||||
} else {
|
||||
this.loadStatus1 = 'loadmore';
|
||||
}
|
||||
} else {
|
||||
this.loadStatus1 = 'nomore';
|
||||
}
|
||||
|
||||
});
|
||||
},
|
||||
//获取最新帖子
|
||||
getLastPost() {
|
||||
this.loadStatus2 = 'loading';
|
||||
this.$H
|
||||
.get('post/lastPost', {
|
||||
page: this.page2
|
||||
})
|
||||
.then(res => {
|
||||
this.lastPost = this.lastPost.concat(res.result.data);
|
||||
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
|
||||
this.loadStatus2 = 'nomore';
|
||||
} else {
|
||||
this.loadStatus2 = 'loadmore';
|
||||
}
|
||||
});
|
||||
},
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
page {
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
</style>
|
||||
|
@ -27,8 +27,7 @@
|
||||
shape="circle" size="mini">
|
||||
<text>已关注</text>
|
||||
</u-button>
|
||||
<u-button :custom-style="btnStyle2"
|
||||
shape="circle" size="mini">
|
||||
<u-button :custom-style="btnStyle2" @click="chat" shape="circle" size="mini">
|
||||
<text style="margin: 0 15rpx;">私信</text>
|
||||
</u-button>
|
||||
</view>
|
||||
@ -40,10 +39,10 @@
|
||||
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
|
||||
<!-- 发贴入口 -->
|
||||
<add-post-tag></add-post-tag>
|
||||
|
||||
|
||||
</view>
|
||||
</template>
|
||||
|
||||
@ -118,7 +117,7 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
getPostList() {
|
||||
this.loadStatus = "loading";
|
||||
this.$H.post('post/list', {
|
||||
@ -133,12 +132,14 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
chat(){
|
||||
this.$u.toast('开源版暂未开放')
|
||||
},
|
||||
getUserInfo() {
|
||||
this.$H.post('user/userInfoById', {
|
||||
uid: this.uid
|
||||
}).then(res => {
|
||||
if(res.code==0){
|
||||
if (res.code == 0) {
|
||||
this.userInfo = res.result;
|
||||
if (res.result.gender === 1) {
|
||||
this.userInfo.gender = '男'
|
||||
@ -147,7 +148,7 @@
|
||||
} else {
|
||||
this.userInfo.gender = '保密'
|
||||
}
|
||||
|
||||
|
||||
let user = {
|
||||
uid: res.result.uid,
|
||||
username: res.result.username,
|
||||
@ -157,14 +158,14 @@
|
||||
uni.setNavigationBarTitle({
|
||||
title: this.userInfo.username
|
||||
});
|
||||
}else{
|
||||
} else {
|
||||
setTimeout(function() {
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index'
|
||||
});
|
||||
}, 1500);
|
||||
}
|
||||
|
||||
|
||||
|
||||
this.loading = false;
|
||||
})
|
||||
@ -178,8 +179,6 @@
|
||||
}
|
||||
</style>
|
||||
<style lang="scss" scoped>
|
||||
|
||||
|
||||
.container {
|
||||
padding: 30rpx;
|
||||
position: relative;
|
||||
@ -191,8 +190,6 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
// position: relative;
|
||||
// height: 500rpx;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
@ -285,11 +282,12 @@
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
}
|
||||
.title-desc{
|
||||
margin-left: 30rpx;
|
||||
font-size: 28rpx;
|
||||
color: #565656;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.title-desc {
|
||||
// margin-left: 30rpx;
|
||||
margin: auto;
|
||||
font-size: 32rpx;
|
||||
color: #565656;
|
||||
font-weight: 500;
|
||||
}
|
||||
</style>
|
||||
|
@ -7,8 +7,13 @@ const shareH5Url = "https://www.linfeng.tech/#/"; //H5分享路径
|
||||
// const domain = 'http://' + baseUrl + "/app/";
|
||||
|
||||
//线上环境配置
|
||||
<<<<<<< HEAD
|
||||
const baseUrl = "wxapi.linfeng.tech";
|
||||
const domain = 'https://' + baseUrl + "/app/";
|
||||
=======
|
||||
// const baseUrl = "";
|
||||
// const domain = 'https://' + baseUrl + "/app/";
|
||||
>>>>>>> 85ba2abf696189e458edd77880b587e2e8b9d91c
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user