This commit is contained in:
linfeng 2023-03-07 12:26:56 +08:00
commit 634b497f2b
10 changed files with 2039 additions and 2033 deletions

View File

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

View File

@ -1,100 +1,100 @@
<template>
<view class="login-register">
<view class="title">请先登录/注册</view>
<u-form :model="form" ref="uForm">
<u-form-item>
<u-input v-model="form.mobile" placeholder="请输入手机号" />
</u-form-item>
<u-form-item>
<u-input v-model="form.code" placeholder="请输入验证码" />
<u-button slot="right" size="mini" @click="getCode">{{tips}}</u-button>
<u-verification-code :seconds="60" @end="end" @start="start" ref="uCode" @change="codeChange">
</u-verification-code>
</u-form-item>
</u-form>
<view class="button-login">
<u-button v-show="form.mobile && form.code" type="success" @click="phoneLogin" shape="circle">登录</u-button>
<u-button v-show="!form.mobile || !form.code" type="default" shape="circle">登录</u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
form: {
mobile: "",
code: ""
},
tips: '验证码'
};
},
methods: {
phoneLogin() {
uni.showLoading({
mask: true,
title: '登录中'
});
this.$H.post("user/smsLogin", this.form).then(res => {
if (res.code == 0) {
uni.setStorageSync("hasLogin", true);
uni.setStorageSync("token", res.token);
uni.switchTab({
url: '/pages/index/index'
});
}
uni.hideLoading();
})
},
codeChange(text) {
this.tips = text;
},
getCode() {
let phoneCodeVerification = /^[1][3-9][0-9]{9}$/;
if (this.form.mobile == '') {
this.$u.toast('请输入手机号');
} else if (!phoneCodeVerification.test(this.form.mobile)) {
this.$u.toast('请输入规范的手机号');
} else {
if (this.$refs.uCode.canGetCode) {
uni.showLoading({
title: '正在获取验证码'
})
this.$H.post("user/sendSmsCode", {
mobile: this.form.mobile
}).then(res => {
if (res.code == 0) {
uni.hideLoading();
this.$refs.uCode.start();
this.$u.toast(res.msg);
}
})
} else {
this.$u.toast('倒计时结束后再发送');
}
}
},
end() {},
start() {}
}
}
</script>
<style lang="scss" scoped>
.login-register {
padding: 20rpx 50rpx;
}
.button-login {
margin-top: 100rpx;
}
.title {
font-size: 40rpx;
font-weight: 600;
margin-bottom: 50rpx;
}
<template>
<view class="login-register">
<view class="title">请先登录/注册</view>
<u-form :model="form" ref="uForm">
<u-form-item>
<u-input v-model="form.mobile" placeholder="请输入手机号" />
</u-form-item>
<u-form-item>
<u-input v-model="form.code" placeholder="请输入验证码" />
<u-button slot="right" size="mini" @click="getCode">{{tips}}</u-button>
<u-verification-code :seconds="60" @end="end" @start="start" ref="uCode" @change="codeChange">
</u-verification-code>
</u-form-item>
</u-form>
<view class="button-login">
<u-button v-show="form.mobile && form.code" type="success" @click="phoneLogin" shape="circle">登录</u-button>
<u-button v-show="!form.mobile || !form.code" type="default" shape="circle">登录</u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
form: {
mobile: "",
code: ""
},
tips: '验证码'
};
},
methods: {
phoneLogin() {
uni.showLoading({
mask: true,
title: '登录中'
});
this.$H.post("user/smsLogin", this.form).then(res => {
if (res.code == 0) {
uni.setStorageSync("hasLogin", true);
uni.setStorageSync("token", res.token);
uni.switchTab({
url: '/pages/index/index'
});
}
uni.hideLoading();
})
},
codeChange(text) {
this.tips = text;
},
getCode() {
let phoneCodeVerification = /^[1][3-9][0-9]{9}$/;
if (this.form.mobile == '') {
this.$u.toast('请输入手机号');
} else if (!phoneCodeVerification.test(this.form.mobile)) {
this.$u.toast('请输入规范的手机号');
} else {
if (this.$refs.uCode.canGetCode) {
uni.showLoading({
title: '正在获取验证码'
})
this.$H.post("user/sendSmsCode", {
mobile: this.form.mobile
}).then(res => {
if (res.code == 0) {
uni.hideLoading();
this.$refs.uCode.start();
this.$u.toast(res.msg);
}
})
} else {
this.$u.toast('倒计时结束后再发送');
}
}
},
end() {},
start() {}
}
}
</script>
<style lang="scss" scoped>
.login-register {
padding: 20rpx 50rpx;
}
.button-login {
margin-top: 100rpx;
}
.title {
font-size: 40rpx;
font-weight: 600;
margin-bottom: 50rpx;
}
</style>

View File

@ -1,78 +1,78 @@
<template>
<view>
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
</view>
</template>
<script>
import postList from '../../components/post-list/post-list.vue';
export default {
components: {
postList
},
data() {
return {
postList: [],
loadStatus: "loading",
page: 1,
type: 1, //1 2
};
},
onLoad(options) {
this.type = options.type
if (options.type == 1) {
this.getCollectPostList();
} else if (options.type == 2) {
this.getMyPostList();
}
},
onReachBottom() {
if (this.type == 1) {
this.page++;
this.getCollectPostList();
} else if (this.type == 2) {
this.page++;
this.getMyPostList();
}
},
methods: {
getCollectPostList() {
this.loadStatus = "loading";
this.$H.get('post/myCollectPost', {
page: this.page
}).then(res => {
if (res.result.data) {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
} else {
this.loadStatus = "nomore";
}
})
},
getMyPostList() {
this.loadStatus = "loading";
this.$H.get('post/myPost', {
page: this.page
}).then(res => {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #f5f5f5;
}
<template>
<view>
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
</view>
</template>
<script>
import postList from '../../components/post-list/post-list.vue';
export default {
components: {
postList
},
data() {
return {
postList: [],
loadStatus: "loading",
page: 1,
type: 1, //1 2
};
},
onLoad(options) {
this.type = options.type
if (options.type == 1) {
this.getCollectPostList();
} else if (options.type == 2) {
this.getMyPostList();
}
},
onReachBottom() {
if (this.type == 1) {
this.page++;
this.getCollectPostList();
} else if (this.type == 2) {
this.page++;
this.getMyPostList();
}
},
methods: {
getCollectPostList() {
this.loadStatus = "loading";
this.$H.get('post/myCollectPost', {
page: this.page
}).then(res => {
if (res.result.data) {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
} else {
this.loadStatus = "nomore";
}
})
},
getMyPostList() {
this.loadStatus = "loading";
this.$H.get('post/myPost', {
page: this.page
}).then(res => {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page >= res.result.total || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
})
}
}
}
</script>
<style lang="scss">
page {
background-color: #f5f5f5;
}
</style>

View File

@ -1,166 +1,166 @@
<template>
<view class="container">
<input v-model="form.title" class="title-input" placeholder="标题" />
<textarea placeholder="说些什么叭..." :auto-height="true" maxlength="-1" v-model="form.content"
class="content-display"></textarea>
<!-- 上传图片 -->
<block v-if="form.type == 1">
<u-upload ref="uUpload" :size-type="['original']" name="Image" :max-count="4" :header="header"
:action="uploadImgUrl" @on-uploaded="submit" :auto-upload="false"></u-upload>
</block>
<!-- 分类 -->
<view @click="chooseClass" class="choose-item">
<u-icon class="icon add-icon" name="file-text-fill" color="#999" size="40"></u-icon>
<text class="txt">{{ cateName || '选择帖子分类' }}</text>
<u-icon class="u-icon" name="arrow-right"></u-icon>
</view>
<view class="button-style">
<u-button v-if="form.type == 1" :custom-style="btnStyle" @click="uploadImg" shape="circle">发布</u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
btnStyle: {
color: "#fff",
backgroundColor: '#333333'
},
uploadImgUrl: this.$c.domain + 'common/upload',
form: {
title: '',
type: 1,
topicId: 2,
discussId: '',
content: '',
media: [],
longitude: 0,
latitude: 0,
address: '',
cut: 0, //id
pay: '',
},
cateName: '',
header: {
token: uni.getStorageSync('token')
},
};
},
onLoad(options) {
if(!uni.getStorageSync("hasLogin")){
this.$u.toast('请先登录哦');
}
},
methods: {
chooseClass() {
uni.navigateTo({
url: "category"
})
},
uploadImg() {
if (!this.form.content) {
this.$u.toast('内容不能为空');
return;
}
if (!this.form.title) {
this.$u.toast('标题不能为空');
return;
}
uni.showLoading({
mask: true,
title: '发布中'
});
this.$refs.uUpload.upload();
},
submit(e) {
uni.showLoading({
mask: true,
title: '发布中'
});
let mediaList = [];
e.forEach(function(item, index) {
mediaList.push(item.response.result);
});
this.form.media = mediaList;
this.$H.post('post/addPost', this.form).then(res => {
if (res.code == 0) {
uni.redirectTo({
url: '/pages/post/post?id=' + res.result
});
}
uni.hideLoading();
});
}
}
};
</script>
<style lang="scss" scoped>
.title-input {
border-bottom: 1px solid #F5F5F5;
margin: 20rpx 0;
padding: 20rpx 0;
}
.content-display {
width: 100%;
padding: 20rpx 0;
min-height: 300rpx;
}
.choose-item {
display: flex;
align-items: center;
padding: 20rpx;
border-bottom: 1px solid #F5F5F5;
&:last-child {
border: 0;
}
.txt {
margin-left: 20rpx;
}
.sw {
margin-left: 300rpx;
}
.inputStyle {
margin-left: 60rpx;
width: 400rpx;
}
.radio {
margin-left: 320rpx;
}
.icon {
width: 40rpx;
height: 40rpx;
}
.u-icon {
margin-left: auto;
color: #999;
}
.add-icon {
margin-left: 0;
}
}
.button-style {
margin-top: 50rpx;
color: #F4F4F5;
}
<template>
<view class="container">
<input v-model="form.title" class="title-input" placeholder="标题" />
<textarea placeholder="说些什么叭..." :auto-height="true" maxlength="-1" v-model="form.content"
class="content-display"></textarea>
<!-- 上传图片 -->
<block v-if="form.type == 1">
<u-upload ref="uUpload" :size-type="['original']" name="Image" :max-count="4" :header="header"
:action="uploadImgUrl" @on-uploaded="submit" :auto-upload="false"></u-upload>
</block>
<!-- 分类 -->
<view @click="chooseClass" class="choose-item">
<u-icon class="icon add-icon" name="file-text-fill" color="#999" size="40"></u-icon>
<text class="txt">{{ cateName || '选择帖子分类' }}</text>
<u-icon class="u-icon" name="arrow-right"></u-icon>
</view>
<view class="button-style">
<u-button v-if="form.type == 1" :custom-style="btnStyle" @click="uploadImg" shape="circle">发布</u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
btnStyle: {
color: "#fff",
backgroundColor: '#333333'
},
uploadImgUrl: this.$c.domain + 'common/upload',
form: {
title: '',
type: 1,
topicId: 2,
discussId: '',
content: '',
media: [],
longitude: 0,
latitude: 0,
address: '',
cut: 0, //id
pay: '',
},
cateName: '',
header: {
token: uni.getStorageSync('token')
},
};
},
onLoad(options) {
if (!uni.getStorageSync("hasLogin")) {
this.$u.toast('请先登录哦');
}
},
methods: {
chooseClass() {
uni.navigateTo({
url: "category"
})
},
uploadImg() {
if (!this.form.content) {
this.$u.toast('内容不能为空');
return;
}
if (!this.form.title) {
this.$u.toast('标题不能为空');
return;
}
uni.showLoading({
mask: true,
title: '发布中'
});
this.$refs.uUpload.upload();
},
submit(e) {
uni.showLoading({
mask: true,
title: '发布中'
});
let mediaList = [];
e.forEach(function(item, index) {
mediaList.push(item.response.result);
});
this.form.media = mediaList;
this.$H.post('post/addPost', this.form).then(res => {
if (res.code == 0) {
uni.redirectTo({
url: '/pages/post/post?id=' + res.result
});
}
uni.hideLoading();
});
}
}
};
</script>
<style lang="scss" scoped>
.title-input {
border-bottom: 1px solid #F5F5F5;
margin: 20rpx 0;
padding: 20rpx 0;
}
.content-display {
width: 100%;
padding: 20rpx 0;
min-height: 300rpx;
}
.choose-item {
display: flex;
align-items: center;
padding: 20rpx;
border-bottom: 1px solid #F5F5F5;
&:last-child {
border: 0;
}
.txt {
margin-left: 20rpx;
}
.sw {
margin-left: 300rpx;
}
.inputStyle {
margin-left: 60rpx;
width: 400rpx;
}
.radio {
margin-left: 320rpx;
}
.icon {
width: 40rpx;
height: 40rpx;
}
.u-icon {
margin-left: auto;
color: #999;
}
.add-icon {
margin-left: 0;
}
}
.button-style {
margin-top: 50rpx;
color: #F4F4F5;
}
</style>

View File

@ -1,71 +1,71 @@
<template>
<view class="container">
<view class="title">选择圈子类目</view>
<view class="class-wrap">
<view class="class-item u-line-1" @click="chooseClass(item.cateId,item.cateName)"
v-for="(item, index) in classList" :key="index">{{ item.cateName }}</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
classList: []
};
},
created() {
this.getClassList();
},
methods: {
getClassList() {
this.$H.get('topic/classList').then(res => {
this.classList = res.result
})
},
chooseClass(id, name) {
console.log('id:', id)
console.log('name:', name)
let pages = getCurrentPages();
let nowPage = pages[pages.length - 1];
let prevPage = pages[pages.length - 2];
prevPage.$vm.form.cut = id;
prevPage.$vm.cateName = name;
uni.navigateBack();
}
}
};
</script>
<style lang="scss" scoped>
.title {
margin-bottom: 30rpx;
}
.class-wrap {
.class-item {
width: 30%;
display: inline-block;
border: 1px solid #999;
padding: 20rpx;
font-size: 24rpx;
color: #999;
text-align: center;
margin-bottom: 20rpx;
border-radius: 10rpx;
&:nth-child(3n + 2) {
margin-left: 5%;
margin-right: 5%;
}
&:active {
background-color: #333;
color: #fff;
}
}
}
<template>
<view class="container">
<view class="title">选择圈子类目</view>
<view class="class-wrap">
<view class="class-item u-line-1" @click="chooseClass(item.cateId,item.cateName)"
v-for="(item, index) in classList" :key="index">{{ item.cateName }}</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
classList: []
};
},
created() {
this.getClassList();
},
methods: {
getClassList() {
this.$H.get('topic/classList').then(res => {
this.classList = res.result
})
},
chooseClass(id, name) {
console.log('id:', id)
console.log('name:', name)
let pages = getCurrentPages();
let nowPage = pages[pages.length - 1];
let prevPage = pages[pages.length - 2];
prevPage.$vm.form.cut = id;
prevPage.$vm.cateName = name;
uni.navigateBack();
}
}
};
</script>
<style lang="scss" scoped>
.title {
margin-bottom: 30rpx;
}
.class-wrap {
.class-item {
width: 30%;
display: inline-block;
border: 1px solid #999;
padding: 20rpx;
font-size: 24rpx;
color: #999;
text-align: center;
margin-bottom: 20rpx;
border-radius: 10rpx;
&:nth-child(3n + 2) {
margin-left: 5%;
margin-right: 5%;
}
&:active {
background-color: #333;
color: #fff;
}
}
}
</style>

View File

@ -1,293 +1,293 @@
<template>
<view>
<view style="position: absolute;">
<u-navbar :custom-back="onBack" back-icon-color="#0c0000" :background="background" :border-bottom="false">
</u-navbar>
</view>
<view class="container">
<view class="info-wrap">
<u-avatar class="avatar" :src="userInfo.avatar" :show-level='userInfo.type == 1'
level-bg-color="#8072f3" size="130"></u-avatar>
<view class="user-style">
<view class="username">{{userInfo.username}}
<text class="iconfont icon-nan kong" v-if="userInfo.gender=='男'"></text>
<text class="iconfont icon-nv kong" v-else-if="userInfo.gender==''"></text>
</view>
<text class="desc">{{userInfo.intro}}</text>
<text class="desc" v-if="userInfo.city">IP:{{userInfo.city}}</text>
<view class="btn-box" v-if="currUid!=uid">
<u-button v-show="!userInfo.isFollow" @click="follow" :custom-style="btnStyle" class="btn"
shape="circle" size="mini">
<u-icon name="plus"></u-icon>
<text>关注</text>
</u-button>
<u-button v-show="userInfo.isFollow" @click="cancelFollow" :custom-style="btnStyle2" class="btn"
shape="circle" size="mini">
<text>已关注</text>
</u-button>
<u-button :custom-style="btnStyle2" @click="chat" shape="circle" size="mini">
<text style="margin: 0 15rpx;">私信</text>
</u-button>
</view>
</view>
</view>
<!-- 帖子 -->
<view>
<view class="title-desc">发布的动态</view>
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
</view>
</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
},
data() {
return {
loading: true,
btnStyle: {
color: "#fff",
backgroundColor: '#000000'
},
btnStyle2: {
border: '1px solid #000000',
color: "#000000"
},
background: {
backgroundColor: 'unset'
},
tabs: [{
tab_name: '帖子'
}],
current: 1,
uid: 0,
postList: [],
topicList: [],
userInfo: {},
userJson: "",
loadStatus: "loading",
page: 1,
currUid: 0
};
},
onLoad(options) {
this.uid = options.uid;
this.getUserInfo();
this.getPostList();
if (uni.getStorageSync('userInfo').uid) {
this.currUid = uni.getStorageSync('userInfo').uid;
}
},
onReachBottom() {
this.page++;
this.getPostList();
},
methods: {
onBack() {
uni.navigateBack();
},
follow() {
this.$H.post('user/addFollow', {
id: this.userInfo.uid
}).then(res => {
if (res.code === 0) {
this.userInfo.isFollow = true;
} else {
this.$u.toast(res.msg);
}
})
},
cancelFollow() {
this.$H.post('user/cancelFollow', {
id: this.userInfo.uid
}).then(res => {
if (res.code === 0) {
this.userInfo.isFollow = false;
}
})
},
getPostList() {
this.loadStatus = "loading";
this.$H.post('post/list', {
page: this.page,
uid: this.uid
}).then(res => {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page === res.result.last_page || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
})
},
chat(){
this.$u.toast('开源版暂未开放')
},
getUserInfo() {
this.$H.post('user/userInfoById', {
uid: this.uid
}).then(res => {
if (res.code == 0) {
this.userInfo = res.result;
if (res.result.gender === 1) {
this.userInfo.gender = '男'
} else if (res.result.gender === 2) {
this.userInfo.gender = '女'
} else {
this.userInfo.gender = '保密'
}
let user = {
uid: res.result.uid,
username: res.result.username,
avatar: res.result.avatar,
}
this.userJson = JSON.stringify(user)
uni.setNavigationBarTitle({
title: this.userInfo.username
});
} else {
setTimeout(function() {
uni.switchTab({
url: '/pages/index/index'
});
}, 1500);
}
this.loading = false;
})
}
}
}
</script>
<style>
page {
background-color: #f5f5f5;
}
</style>
<style lang="scss" scoped>
.container {
padding: 30rpx;
position: relative;
top: 100rpx;
width: 100%;
}
.info-wrap {
display: flex;
flex-direction: column;
align-items: center;
}
.avatar {
width: 130rpx;
height: 130rpx;
border-radius: 100rpx !important;
z-index: 999;
margin: 150rpx 550rpx 100rpx 50rpx;
}
.info-wrap .user-style {
background-color: #FFFFFF;
border-radius: 30rpx;
padding: 30rpx;
position: absolute;
top: 85rpx;
width: 100%;
box-shadow: 5rpx 10rpx 20rpx #e6e6e6;
display: flex;
flex-direction: column;
align-items: center;
}
.info-wrap .user-style .username {
font-size: 34rpx;
font-weight: bold;
margin: 10rpx 10rpx 10rpx 90rpx;
.kong {
margin-left: 25rpx;
}
}
.info-wrap .user-style .num-box {
font-size: 24rpx;
margin: 20rpx 0;
text-align: center;
}
.info-wrap .user-style .num-box .txt {
color: #999;
margin-left: 5rpx;
}
.info-wrap .user-style .num-box text {
margin-right: 30rpx;
}
.info-wrap .user-style .desc {
font-size: 28rpx;
color: #999;
margin: 1rpx 20rpx 20rpx 140rpx;
}
.info-wrap .user-style .btn-box {
margin: 0rpx 30rpx 10rpx 90rpx;
}
.info-wrap .user-style .btn-box .btn {
margin-right: 20rpx;
}
.tab-box {
margin-top: 30rpx;
margin-bottom: 30rpx;
}
.info-c {
display: flex;
flex-direction: column;
}
.info-c>text {
margin-bottom: 20rpx;
color: #999;
}
.info-c .level-box {
margin-bottom: 20rpx;
display: flex;
align-items: center;
color: #999;
.level {
font-size: 20rpx;
color: #fff;
padding: 5rpx 10rpx;
background-color: #333333;
border-radius: 10rpx;
margin-right: 10rpx;
}
}
.title-desc {
// margin-left: 30rpx;
margin: auto;
font-size: 32rpx;
color: #565656;
font-weight: 500;
}
<template>
<view>
<view style="position: absolute;">
<u-navbar :custom-back="onBack" back-icon-color="#0c0000" :background="background" :border-bottom="false">
</u-navbar>
</view>
<view class="container">
<view class="info-wrap">
<u-avatar class="avatar" :src="userInfo.avatar" :show-level='userInfo.type == 1'
level-bg-color="#8072f3" size="130"></u-avatar>
<view class="user-style">
<view class="username">{{userInfo.username}}
<text class="iconfont icon-nan kong" v-if="userInfo.gender=='男'"></text>
<text class="iconfont icon-nv kong" v-else-if="userInfo.gender==''"></text>
</view>
<text class="desc">{{userInfo.intro}}</text>
<text class="desc" v-if="userInfo.city">IP:{{userInfo.city}}</text>
<view class="btn-box" v-if="currUid!=uid">
<u-button v-show="!userInfo.isFollow" @click="follow" :custom-style="btnStyle" class="btn"
shape="circle" size="mini">
<u-icon name="plus"></u-icon>
<text>关注</text>
</u-button>
<u-button v-show="userInfo.isFollow" @click="cancelFollow" :custom-style="btnStyle2" class="btn"
shape="circle" size="mini">
<text>已关注</text>
</u-button>
<u-button :custom-style="btnStyle2" @click="chat" shape="circle" size="mini">
<text style="margin: 0 15rpx;">私信</text>
</u-button>
</view>
</view>
</view>
<!-- 帖子 -->
<view>
<view class="title-desc">发布的动态</view>
<post-list :list="postList" :loadStatus="loadStatus"></post-list>
</view>
</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
},
data() {
return {
loading: true,
btnStyle: {
color: "#fff",
backgroundColor: '#000000'
},
btnStyle2: {
border: '1px solid #000000',
color: "#000000"
},
background: {
backgroundColor: 'unset'
},
tabs: [{
tab_name: '帖子'
}],
current: 1,
uid: 0,
postList: [],
topicList: [],
userInfo: {},
userJson: "",
loadStatus: "loading",
page: 1,
currUid: 0
};
},
onLoad(options) {
this.uid = options.uid;
this.getUserInfo();
this.getPostList();
if (uni.getStorageSync('userInfo').uid) {
this.currUid = uni.getStorageSync('userInfo').uid;
}
},
onReachBottom() {
this.page++;
this.getPostList();
},
methods: {
onBack() {
uni.navigateBack();
},
follow() {
this.$H.post('user/addFollow', {
id: this.userInfo.uid
}).then(res => {
if (res.code === 0) {
this.userInfo.isFollow = true;
} else {
this.$u.toast(res.msg);
}
})
},
cancelFollow() {
this.$H.post('user/cancelFollow', {
id: this.userInfo.uid
}).then(res => {
if (res.code === 0) {
this.userInfo.isFollow = false;
}
})
},
getPostList() {
this.loadStatus = "loading";
this.$H.post('post/list', {
page: this.page,
uid: this.uid
}).then(res => {
this.postList = this.postList.concat(res.result.data);
if (res.result.current_page === res.result.last_page || res.result.last_page === 0) {
this.loadStatus = "nomore";
} else {
this.loadStatus = "loadmore"
}
})
},
chat() {
this.$u.toast('开源版暂未开放')
},
getUserInfo() {
this.$H.post('user/userInfoById', {
uid: this.uid
}).then(res => {
if (res.code == 0) {
this.userInfo = res.result;
if (res.result.gender === 1) {
this.userInfo.gender = '男'
} else if (res.result.gender === 2) {
this.userInfo.gender = '女'
} else {
this.userInfo.gender = '保密'
}
let user = {
uid: res.result.uid,
username: res.result.username,
avatar: res.result.avatar,
}
this.userJson = JSON.stringify(user)
uni.setNavigationBarTitle({
title: this.userInfo.username
});
} else {
setTimeout(function() {
uni.switchTab({
url: '/pages/index/index'
});
}, 1500);
}
this.loading = false;
})
}
}
}
</script>
<style>
page {
background-color: #f5f5f5;
}
</style>
<style lang="scss" scoped>
.container {
padding: 30rpx;
position: relative;
top: 100rpx;
width: 100%;
}
.info-wrap {
display: flex;
flex-direction: column;
align-items: center;
}
.avatar {
width: 130rpx;
height: 130rpx;
border-radius: 100rpx !important;
z-index: 999;
margin: 150rpx 550rpx 100rpx 50rpx;
}
.info-wrap .user-style {
background-color: #FFFFFF;
border-radius: 30rpx;
padding: 30rpx;
position: absolute;
top: 85rpx;
width: 100%;
box-shadow: 5rpx 10rpx 20rpx #e6e6e6;
display: flex;
flex-direction: column;
align-items: center;
}
.info-wrap .user-style .username {
font-size: 34rpx;
font-weight: bold;
margin: 10rpx 10rpx 10rpx 90rpx;
.kong {
margin-left: 25rpx;
}
}
.info-wrap .user-style .num-box {
font-size: 24rpx;
margin: 20rpx 0;
text-align: center;
}
.info-wrap .user-style .num-box .txt {
color: #999;
margin-left: 5rpx;
}
.info-wrap .user-style .num-box text {
margin-right: 30rpx;
}
.info-wrap .user-style .desc {
font-size: 28rpx;
color: #999;
margin: 1rpx 20rpx 20rpx 140rpx;
}
.info-wrap .user-style .btn-box {
margin: 0rpx 30rpx 10rpx 90rpx;
}
.info-wrap .user-style .btn-box .btn {
margin-right: 20rpx;
}
.tab-box {
margin-top: 30rpx;
margin-bottom: 30rpx;
}
.info-c {
display: flex;
flex-direction: column;
}
.info-c>text {
margin-bottom: 20rpx;
color: #999;
}
.info-c .level-box {
margin-bottom: 20rpx;
display: flex;
align-items: center;
color: #999;
.level {
font-size: 20rpx;
color: #fff;
padding: 5rpx 10rpx;
background-color: #333333;
border-radius: 10rpx;
margin-right: 10rpx;
}
}
.title-desc {
// margin-left: 30rpx;
margin: auto;
font-size: 32rpx;
color: #565656;
font-weight: 500;
}
</style>

View File

@ -1,251 +1,251 @@
<template>
<view>
<view class="head">
<block v-if="hasLogin">
<view class="userinfo" @click="goUser">
<u-avatar :src="userInfo.avatar"></u-avatar>
<view class="username">
<text>{{ userInfo.username }}</text>
<text class="sub-txt">{{ userInfo.intro }}</text>
</view>
<u-icon name="arrow-right" class="arrow-right"></u-icon>
</view>
</block>
<block v-else>
<view class="btn-login">
<!-- #ifdef H5 -->
<u-button type="default" shape="circle" @click="phoneLogin" plain>登录</u-button>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<u-button type="default" shape="circle" @click="wxLogin" plain>登录</u-button>
<!-- #endif -->
</view>
</block>
<u-grid :col="4" :border="false" style="margin: 20rpx 0;" @click="toNav">
<u-grid-item index="/pages/my/user?type=2">
<text>{{ userInfo.fans || 0}}</text>
<view class="grid-text">粉丝</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=1">
<text>{{ userInfo.follow || 0 }}</text>
<view class="grid-text">关注</view>
</u-grid-item>
<u-grid-item index="/pages/my/post?type=2">
<text>{{ userInfo.postNum || 0 }}</text>
<view class="grid-text">帖子</view>
</u-grid-item>
<u-grid-item index="">
<text>{{ userInfo.integral || 0 }}</text>
<view class="grid-text">积分</view>
</u-grid-item>
</u-grid>
</view>
<!-- 我的服务 -->
<view class="block-wrap">
<view class="block-title">我的服务</view>
<u-grid :col="4" :border="false" style="margin: 20rpx 0;" @click="toNav">
<u-grid-item index="/pages/my/post?type=2">
<image class="gn-icon" src="/static/img/post.png"></image>
<view class="grid-text">我的帖子</view>
</u-grid-item>
<u-grid-item index="/pages/my/post?type=1">
<image class="gn-icon" src="/static/img/star.png"></image>
<view class="grid-text">我的点赞</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=1">
<image class="gn-icon" src="/static/img/watch.png"></image>
<view class="grid-text">我的关注</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=2">
<image class="gn-icon" src="/static/img/fans.png"></image>
<view class="grid-text">我的粉丝</view>
</u-grid-item>
<!-- #ifdef MP-WEIXIN -->
<u-grid-item>
<button open-type="contact" class="u-reset-button">
<image class="gn-icon" style="margin-bottom: unset;" src="/static/img/kefu.png"></image>
<view class="grid-text">客服</view>
</button>
</u-grid-item>
<!-- #endif -->
</u-grid>
</view>
<!-- 发贴入口 -->
<add-post-tag></add-post-tag>
</view>
</template>
<script>
import addPostTag from '../../components/add-post-tag/add-post-tag.vue';
export default {
components: {
addPostTag
},
data() {
return {
userInfo: '',
hasLogin: false
};
},
onLoad() {
//#ifdef MP-WEIXIN
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
});
//#endif
},
onShow() {
if (uni.getStorageSync('hasLogin')) {
this.getUserInfo();
this.hasLogin = true;
} else {
this.hasLogin = false;
}
},
onShareAppMessage(res) {
let imgURL = 'http://pic.linfeng.tech/logo.png';
return {
title: this.$c.miniappName,
path: '/pages/index/index',
imageUrl: imgURL
};
},
methods: {
phoneLogin() {
uni.navigateTo({
url: '/pages/login/login'
});
},
wxLogin() {
uni.navigateTo({
url: '/pages/login/weixin'
});
},
getUserInfo() {
this.$H.get('user/userInfo').then(res => {
this.userInfo = res.result;
});
},
goUser() {
uni.navigateTo({
url: '/pages/user/edit'
});
},
toNav(url) {
uni.navigateTo({
url: url
});
}
}
};
</script>
<style>
page {
background-color: #f5f5f5;
}
</style>
<style lang="scss" scoped>
.head {
padding: 20rpx;
background-color: #fff;
.sub-txt {
font-size: 24rpx;
color: #616161;
display: block;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
margin-bottom: 20rpx;
}
.userinfo {
display: flex;
align-items: center;
padding: 20rpx;
}
.userinfo .username {
display: flex;
flex-direction: column;
margin-left: 20rpx;
}
.grid-text {
color: #999;
font-size: 12px;
margin-bottom: 20rpx;
}
.userinfo u-avatar {
margin-right: 20rpx;
}
.userinfo .arrow-right {
margin-left: auto;
}
.btn-login {
margin: 40rpx 0;
}
.gn-icon {
width: 60rpx;
height: 60rpx;
margin-bottom: 20rpx;
}
/*服务按钮*/
.btn-wrap {
display: flex;
margin-top: 30rpx;
}
.btn-wrap .btn-contact {
background-color: #fff;
margin-left: 15rpx;
margin-right: 15rpx;
padding: 20rpx;
line-height: unset;
font-size: 12px;
color: #999;
}
.btn-wrap .btn-contact:active {
background-color: #f5f5f5;
}
.btn-wrap .btn-contact .txt {
margin-top: 20rpx;
}
.btn-wrap .btn-contact::after {
border: unset;
position: unset;
}
.icon-size {
font-size: 50rpx;
}
.block-wrap {
background-color: #fff;
border-radius: 20rpx;
margin: 20rpx;
overflow: hidden;
.block-title {
background-color: #fff;
padding: 20rpx;
}
}
<template>
<view>
<view class="head">
<block v-if="hasLogin">
<view class="userinfo" @click="goUser">
<u-avatar :src="userInfo.avatar"></u-avatar>
<view class="username">
<text>{{ userInfo.username }}</text>
<text class="sub-txt">{{ userInfo.intro }}</text>
</view>
<u-icon name="arrow-right" class="arrow-right"></u-icon>
</view>
</block>
<block v-else>
<view class="btn-login">
<!-- #ifdef H5 -->
<u-button type="default" shape="circle" @click="phoneLogin" plain>登录</u-button>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<u-button type="default" shape="circle" @click="wxLogin" plain>登录</u-button>
<!-- #endif -->
</view>
</block>
<u-grid :col="4" :border="false" style="margin: 20rpx 0;" @click="toNav">
<u-grid-item index="/pages/my/user?type=2">
<text>{{ userInfo.fans || 0}}</text>
<view class="grid-text">粉丝</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=1">
<text>{{ userInfo.follow || 0 }}</text>
<view class="grid-text">关注</view>
</u-grid-item>
<u-grid-item index="/pages/my/post?type=2">
<text>{{ userInfo.postNum || 0 }}</text>
<view class="grid-text">帖子</view>
</u-grid-item>
<u-grid-item index="">
<text>{{ userInfo.integral || 0 }}</text>
<view class="grid-text">积分</view>
</u-grid-item>
</u-grid>
</view>
<!-- 我的服务 -->
<view class="block-wrap">
<view class="block-title">我的服务</view>
<u-grid :col="4" :border="false" style="margin: 20rpx 0;" @click="toNav">
<u-grid-item index="/pages/my/post?type=2">
<image class="gn-icon" src="/static/img/post.png"></image>
<view class="grid-text">我的帖子</view>
</u-grid-item>
<u-grid-item index="/pages/my/post?type=1">
<image class="gn-icon" src="/static/img/star.png"></image>
<view class="grid-text">我的点赞</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=1">
<image class="gn-icon" src="/static/img/watch.png"></image>
<view class="grid-text">我的关注</view>
</u-grid-item>
<u-grid-item index="/pages/my/user?type=2">
<image class="gn-icon" src="/static/img/fans.png"></image>
<view class="grid-text">我的粉丝</view>
</u-grid-item>
<!-- #ifdef MP-WEIXIN -->
<u-grid-item>
<button open-type="contact" class="u-reset-button">
<image class="gn-icon" style="margin-bottom: unset;" src="/static/img/kefu.png"></image>
<view class="grid-text">客服</view>
</button>
</u-grid-item>
<!-- #endif -->
</u-grid>
</view>
<!-- 发贴入口 -->
<add-post-tag></add-post-tag>
</view>
</template>
<script>
import addPostTag from '../../components/add-post-tag/add-post-tag.vue';
export default {
components: {
addPostTag
},
data() {
return {
userInfo: '',
hasLogin: false
};
},
onLoad() {
//#ifdef MP-WEIXIN
wx.showShareMenu({
withShareTicket: true,
menus: ['shareAppMessage', 'shareTimeline']
});
//#endif
},
onShow() {
if (uni.getStorageSync('hasLogin')) {
this.getUserInfo();
this.hasLogin = true;
} else {
this.hasLogin = false;
}
},
onShareAppMessage(res) {
let imgURL = 'http://pic.linfeng.tech/logo.png';
return {
title: this.$c.miniappName,
path: '/pages/index/index',
imageUrl: imgURL
};
},
methods: {
phoneLogin() {
uni.navigateTo({
url: '/pages/login/login'
});
},
wxLogin() {
uni.navigateTo({
url: '/pages/login/weixin'
});
},
getUserInfo() {
this.$H.get('user/userInfo').then(res => {
this.userInfo = res.result;
});
},
goUser() {
uni.navigateTo({
url: '/pages/user/edit'
});
},
toNav(url) {
uni.navigateTo({
url: url
});
}
}
};
</script>
<style>
page {
background-color: #f5f5f5;
}
</style>
<style lang="scss" scoped>
.head {
padding: 20rpx;
background-color: #fff;
.sub-txt {
font-size: 24rpx;
color: #616161;
display: block;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
}
margin-bottom: 20rpx;
}
.userinfo {
display: flex;
align-items: center;
padding: 20rpx;
}
.userinfo .username {
display: flex;
flex-direction: column;
margin-left: 20rpx;
}
.grid-text {
color: #999;
font-size: 12px;
margin-bottom: 20rpx;
}
.userinfo u-avatar {
margin-right: 20rpx;
}
.userinfo .arrow-right {
margin-left: auto;
}
.btn-login {
margin: 40rpx 0;
}
.gn-icon {
width: 60rpx;
height: 60rpx;
margin-bottom: 20rpx;
}
/*服务按钮*/
.btn-wrap {
display: flex;
margin-top: 30rpx;
}
.btn-wrap .btn-contact {
background-color: #fff;
margin-left: 15rpx;
margin-right: 15rpx;
padding: 20rpx;
line-height: unset;
font-size: 12px;
color: #999;
}
.btn-wrap .btn-contact:active {
background-color: #f5f5f5;
}
.btn-wrap .btn-contact .txt {
margin-top: 20rpx;
}
.btn-wrap .btn-contact::after {
border: unset;
position: unset;
}
.icon-size {
font-size: 50rpx;
}
.block-wrap {
background-color: #fff;
border-radius: 20rpx;
margin: 20rpx;
overflow: hidden;
.block-title {
background-color: #fff;
padding: 20rpx;
}
}
</style>

File diff suppressed because one or more lines are too long

View File

@ -3,12 +3,13 @@ const shareH5Url = "https://www.linfeng.tech/#/"; //H5分享路径
//本地环境配置
const baseUrl = "localhost:8080";
const domain = 'http://' + baseUrl + "/app/";
// const baseUrl = "localhost:8080";
// const domain = 'http://' + baseUrl + "/app/";
//线上环境配置
// const baseUrl = "";
// const domain = 'https://' + baseUrl + "/app/";
const baseUrl = "wxapi.linfeng.tech";
const domain = 'https://' + baseUrl + "/app/";