This commit is contained in:
HJ 2023-03-04 23:13:46 +08:00
commit 237ee81360
8 changed files with 175 additions and 317 deletions

View File

@ -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)) {

View File

@ -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> {
}

View File

@ -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;
}

View File

@ -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);
}

View File

@ -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);
}
}

View File

@ -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>
@ -133,7 +132,9 @@
}
})
},
chat(){
this.$u.toast('开源版暂未开放')
},
getUserInfo() {
this.$H.post('user/userInfoById', {
uid: this.uid
@ -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>

View File

@ -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