处理无效模块&修改样式
This commit is contained in:
parent
50839d796a
commit
3b30f5f6bc
@ -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);
|
||||
}
|
||||
|
||||
}
|
@ -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,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 = '男'
|
||||
@ -157,7 +158,7 @@
|
||||
uni.setNavigationBarTitle({
|
||||
title: this.userInfo.username
|
||||
});
|
||||
}else{
|
||||
} else {
|
||||
setTimeout(function() {
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index'
|
||||
@ -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,7 +7,7 @@ const baseUrl = "localhost:8080";
|
||||
const domain = 'http://' + baseUrl + "/app/";
|
||||
|
||||
//线上环境配置
|
||||
// const baseUrl = "wxapi.linfeng.tech";
|
||||
// const baseUrl = "";
|
||||
// const domain = 'https://' + baseUrl + "/app/";
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user