From 3b30f5f6bc3a7adc9a25cb95b88bc30c4c6b2d7c Mon Sep 17 00:00:00 2001 From: linfeng <2445465217@qq.com> Date: Tue, 28 Feb 2023 10:15:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E6=97=A0=E6=95=88=E6=A8=A1?= =?UTF-8?q?=E5=9D=97&=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../linfeng/modules/app/dao/UserTopicDao.java | 28 ----------- .../modules/app/entity/UserTopicEntity.java | 46 ------------------- .../modules/app/service/UserTopicService.java | 33 ------------- .../service/impl/UserTopicServiceImpl.java | 41 ----------------- .../pages/user/home.vue | 38 ++++++++------- .../utils/config.js | 2 +- 6 files changed, 19 insertions(+), 169 deletions(-) delete mode 100644 src/main/java/io/linfeng/modules/app/dao/UserTopicDao.java delete mode 100644 src/main/java/io/linfeng/modules/app/entity/UserTopicEntity.java delete mode 100644 src/main/java/io/linfeng/modules/app/service/UserTopicService.java delete mode 100644 src/main/java/io/linfeng/modules/app/service/impl/UserTopicServiceImpl.java diff --git a/src/main/java/io/linfeng/modules/app/dao/UserTopicDao.java b/src/main/java/io/linfeng/modules/app/dao/UserTopicDao.java deleted file mode 100644 index ca607ab..0000000 --- a/src/main/java/io/linfeng/modules/app/dao/UserTopicDao.java +++ /dev/null @@ -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 { - -} diff --git a/src/main/java/io/linfeng/modules/app/entity/UserTopicEntity.java b/src/main/java/io/linfeng/modules/app/entity/UserTopicEntity.java deleted file mode 100644 index 70a412d..0000000 --- a/src/main/java/io/linfeng/modules/app/entity/UserTopicEntity.java +++ /dev/null @@ -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; - -} diff --git a/src/main/java/io/linfeng/modules/app/service/UserTopicService.java b/src/main/java/io/linfeng/modules/app/service/UserTopicService.java deleted file mode 100644 index 579a471..0000000 --- a/src/main/java/io/linfeng/modules/app/service/UserTopicService.java +++ /dev/null @@ -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 { - - PageUtils queryPage(Map params); - -} - diff --git a/src/main/java/io/linfeng/modules/app/service/impl/UserTopicServiceImpl.java b/src/main/java/io/linfeng/modules/app/service/impl/UserTopicServiceImpl.java deleted file mode 100644 index 3b419a1..0000000 --- a/src/main/java/io/linfeng/modules/app/service/impl/UserTopicServiceImpl.java +++ /dev/null @@ -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 implements UserTopicService { - - @Override - public PageUtils queryPage(Map params) { - IPage page = this.page( - new Query().getPage(params), - new QueryWrapper<>() - ); - - return new PageUtils(page); - } - -} \ No newline at end of file diff --git a/src/main/resources/static/linfeng-community-uniapp-ky/pages/user/home.vue b/src/main/resources/static/linfeng-community-uniapp-ky/pages/user/home.vue index d7a4c11..6279f55 100644 --- a/src/main/resources/static/linfeng-community-uniapp-ky/pages/user/home.vue +++ b/src/main/resources/static/linfeng-community-uniapp-ky/pages/user/home.vue @@ -27,8 +27,7 @@ shape="circle" size="mini"> 已关注 - + 私信 @@ -40,10 +39,10 @@ - + - + @@ -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 @@ } diff --git a/src/main/resources/static/linfeng-community-uniapp-ky/utils/config.js b/src/main/resources/static/linfeng-community-uniapp-ky/utils/config.js index 5ce0272..cfd3eca 100644 --- a/src/main/resources/static/linfeng-community-uniapp-ky/utils/config.js +++ b/src/main/resources/static/linfeng-community-uniapp-ky/utils/config.js @@ -7,7 +7,7 @@ const baseUrl = "localhost:8080"; const domain = 'http://' + baseUrl + "/app/"; //线上环境配置 -// const baseUrl = "wxapi.linfeng.tech"; +// const baseUrl = ""; // const domain = 'https://' + baseUrl + "/app/";