处理无效模块&修改样式
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">
|
shape="circle" size="mini">
|
||||||
<text>已关注</text>
|
<text>已关注</text>
|
||||||
</u-button>
|
</u-button>
|
||||||
<u-button :custom-style="btnStyle2"
|
<u-button :custom-style="btnStyle2" @click="chat" shape="circle" size="mini">
|
||||||
shape="circle" size="mini">
|
|
||||||
<text style="margin: 0 15rpx;">私信</text>
|
<text style="margin: 0 15rpx;">私信</text>
|
||||||
</u-button>
|
</u-button>
|
||||||
</view>
|
</view>
|
||||||
@ -40,10 +39,10 @@
|
|||||||
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
|
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 发贴入口 -->
|
<!-- 发贴入口 -->
|
||||||
<add-post-tag></add-post-tag>
|
<add-post-tag></add-post-tag>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -118,7 +117,7 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
getPostList() {
|
getPostList() {
|
||||||
this.loadStatus = "loading";
|
this.loadStatus = "loading";
|
||||||
this.$H.post('post/list', {
|
this.$H.post('post/list', {
|
||||||
@ -133,12 +132,14 @@
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
chat(){
|
||||||
|
this.$u.toast('开源版暂未开放')
|
||||||
|
},
|
||||||
getUserInfo() {
|
getUserInfo() {
|
||||||
this.$H.post('user/userInfoById', {
|
this.$H.post('user/userInfoById', {
|
||||||
uid: this.uid
|
uid: this.uid
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if(res.code==0){
|
if (res.code == 0) {
|
||||||
this.userInfo = res.result;
|
this.userInfo = res.result;
|
||||||
if (res.result.gender === 1) {
|
if (res.result.gender === 1) {
|
||||||
this.userInfo.gender = '男'
|
this.userInfo.gender = '男'
|
||||||
@ -147,7 +148,7 @@
|
|||||||
} else {
|
} else {
|
||||||
this.userInfo.gender = '保密'
|
this.userInfo.gender = '保密'
|
||||||
}
|
}
|
||||||
|
|
||||||
let user = {
|
let user = {
|
||||||
uid: res.result.uid,
|
uid: res.result.uid,
|
||||||
username: res.result.username,
|
username: res.result.username,
|
||||||
@ -157,14 +158,14 @@
|
|||||||
uni.setNavigationBarTitle({
|
uni.setNavigationBarTitle({
|
||||||
title: this.userInfo.username
|
title: this.userInfo.username
|
||||||
});
|
});
|
||||||
}else{
|
} else {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
uni.switchTab({
|
uni.switchTab({
|
||||||
url: '/pages/index/index'
|
url: '/pages/index/index'
|
||||||
});
|
});
|
||||||
}, 1500);
|
}, 1500);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
})
|
})
|
||||||
@ -178,8 +179,6 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -191,8 +190,6 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
// position: relative;
|
|
||||||
// height: 500rpx;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
@ -285,11 +282,12 @@
|
|||||||
margin-right: 10rpx;
|
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>
|
</style>
|
||||||
|
@ -7,7 +7,7 @@ const baseUrl = "localhost:8080";
|
|||||||
const domain = 'http://' + baseUrl + "/app/";
|
const domain = 'http://' + baseUrl + "/app/";
|
||||||
|
|
||||||
//线上环境配置
|
//线上环境配置
|
||||||
// const baseUrl = "wxapi.linfeng.tech";
|
// const baseUrl = "";
|
||||||
// const domain = 'https://' + baseUrl + "/app/";
|
// const domain = 'https://' + baseUrl + "/app/";
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user