修复样式

This commit is contained in:
peihaoyu 2020-09-18 21:13:55 +08:00
parent f290b65694
commit 56016fffe9
3 changed files with 85 additions and 53 deletions

View File

@ -1,25 +1,27 @@
<template> <template>
<view class="page"> <view class="page">
<view class="title"> <view class="top">
{{noticeInfo.title}} <view class="title">
</view> {{noticeInfo.title}}
<view class="label">
{{noticeInfo.label}}
</view>
<view class="author-and-time">
<view class="author">
{{noticeInfo.real_name}}
</view> </view>
<view class="time"> <view class="label">
{{noticeInfo.release_time}} {{noticeInfo.label}}
</view>
<view class="author-and-time">
<view class="author">
{{noticeInfo.real_name}}
</view>
<view class="time">
{{noticeInfo.release_time}}
</view>
</view>
<view class="content">
<textarea placeholder="请输入文章内容"
v-model="noticeInfo.content"
auto-height="true"
disabled="true"
></textarea>
</view> </view>
</view>
<view class="content">
<textarea placeholder="请输入文章内容"
v-model="noticeInfo.content"
auto-height="true"
disabled="true"
></textarea>
</view> </view>
<view class="feedback"> <view class="feedback">
<view class="reading-volume"> <view class="reading-volume">
@ -103,30 +105,40 @@
mounted() { mounted() {
this.getMessageList() this.getMessageList()
}, },
onPullDownRefresh () {
uni.startPullDownRefresh();
},
methods: { methods: {
/** /**
* 点击留言弹出输入框确定 * 点击留言弹出输入框确定
*/ */
clickPromptConfirm(message) { clickPromptConfirm(message) {
request.post('/hs/addMessage',{ if (message === '') {
noticeId: this.noticeInfo.id, uni.showToast({
userId: uni.getStorageSync("userInfo").user_id, icon: 'none',
content: message title: '请输入留言,亲'
}).then(res=>{ })
console.log("新增留言结果",res); } else {
if (res.data === 1) { request.post('/hs/addMessage',{
this.promptVisible = false; noticeId: this.noticeInfo.id,
uni.showToast({ userId: uni.getStorageSync("userInfo").user_id,
icon: 'loading', content: message
title: '留言成功', }).then(res=>{
}); console.log("新增留言结果",res);
setTimeout(()=>{ if (res.data === 1) {
this.getMessageList(); this.promptVisible = false;
},1000) uni.showToast({
} icon: 'loading',
},err=>{ title: '留言成功',
console.log("err",err); });
}) setTimeout(()=>{
this.getMessageList();
},1000)
}
},err=>{
console.log("err",err);
})
}
}, },
/** /**
* 获取留言 * 获取留言
@ -153,6 +165,11 @@
</script> </script>
<style scoped> <style scoped>
.page .top, .one-message{
background-color: #FFFFFF;
border-radius: 10rpx;
padding: 20rpx;
}
.content textarea{ .content textarea{
background-color: #F1F1F1; background-color: #F1F1F1;
padding: 20rpx; padding: 20rpx;
@ -213,9 +230,10 @@
display: inline-block; display: inline-block;
} }
.label{ .label{
margin-left: 20rpx; margin: 20rpx 0 20rpx 20rpx;
border-radius: 10rpx; border-radius: 10rpx;
width: 4rem; width: 4rem;
font-size: 30rpx;
text-align: center; text-align: center;
color: #ff9041; color: #ff9041;
border: 1rpx solid #ff9041; border: 1rpx solid #ff9041;

View File

@ -11,7 +11,7 @@
</view> </view>
</view> </view>
<view class="header-photo cu-avatar radius" v-if="item.send_id === userInfo.user_id"> <view class="header-photo cu-avatar radius" v-if="item.send_id === userInfo.user_id">
{{messageInfo.userInfo.real_name.slice(0,1)}} {{userInfo.real_name.slice(0,1)}}
</view> </view>
<view class="date">{{item.letter_create_time}}</view> <view class="date">{{item.letter_create_time}}</view>
</view> </view>
@ -53,10 +53,9 @@
onShow() { onShow() {
this.updateRead(); this.updateRead();
this.getTwoLetterApp(); this.getTwoLetterApp();
this.interval = setInterval(() => { this.interval = setInterval(() => {
this.getTwoLetterApp(); this.getTwoLetterApp();
} ,1000); } ,5000);
}, },
onBackPress() { onBackPress() {
clearInterval(this.interval); clearInterval(this.interval);
@ -97,19 +96,27 @@
* 发送消息 * 发送消息
*/ */
sendMessage() { sendMessage() {
request.post('/hs/sendLetter',{ if (this.messageContent === '') {
sendId: uni.getStorageSync("userInfo").user_id, uni.showToast({
receiveId: this.messageInfo.userInfo.user_id, icon: 'none',
content: this.messageContent title: '请输入消息,亲'
}).then(res => { })
console.log("发送消息",res); } else {
if (res.data === 1) { request.post('/hs/sendLetter',{
this.getTwoLetterApp(); sendId: uni.getStorageSync("userInfo").user_id,
receiveId: this.messageInfo.userInfo.user_id,
content: this.messageContent
}).then(res => {
this.messageContent = ''; this.messageContent = '';
} console.log("发送消息",res);
},err=>{ if (res.data === 1) {
console.log("err",err); this.getTwoLetterApp();
}) this.messageContent = '';
}
},err=>{
console.log("err",err);
})
}
}, },
/** /**
* 改为已读 * 改为已读

View File

@ -64,6 +64,9 @@
}, },
mounted() { mounted() {
}, },
onPullDownRefresh () {
uni.startPullDownRefresh();
},
methods: { methods: {
/** /**
* 发表 * 发表
@ -103,6 +106,10 @@
</script> </script>
<style scoped> <style scoped>
.page{
background-color: #FFFFFF;
border-radius: 10rpx;
}
.button{ .button{
padding: 40rpx 100rpx 80rpx; padding: 40rpx 100rpx 80rpx;
} }