|
@@ -1,12 +1,15 @@
|
|
|
import React,{Component} from "react";
|
|
|
-import {View,Text} from '@tarojs/components'
|
|
|
+import {View,Text,Button} from '@tarojs/components'
|
|
|
import Taro from '@tarojs/taro';
|
|
|
-import { AtIcon,AtNoticebar } from 'taro-ui'
|
|
|
+import { AtModal, AtModalHeader, AtModalContent, AtModalAction,AtNoticebar,AtList, AtListItem } from 'taro-ui'
|
|
|
import './index.less';
|
|
|
import {getPublicReleaseUnread} from '../../../utils/servers/servers';
|
|
|
|
|
|
import "taro-ui/dist/style/components/icon.scss";
|
|
|
import "taro-ui/dist/style/components/noticebar.scss";
|
|
|
+import "taro-ui/dist/style/components/modal.scss";
|
|
|
+import "taro-ui/dist/style/components/list.scss";
|
|
|
+import "taro-ui/dist/style/components/icon.scss";
|
|
|
|
|
|
class MessageNoticebar extends Component{
|
|
|
constructor(props) {
|
|
@@ -14,11 +17,14 @@ class MessageNoticebar extends Component{
|
|
|
this.state={
|
|
|
animationData:{},
|
|
|
isOpend:false,
|
|
|
- str:''
|
|
|
+ isOpened:false,
|
|
|
+ str:'',
|
|
|
+ list:[],
|
|
|
}
|
|
|
this.onClose = this.onClose.bind(this);
|
|
|
this.getPublicReleaseUnread = this.getPublicReleaseUnread.bind(this);
|
|
|
this.close = this.close.bind(this);
|
|
|
+ this.onGotoMore = this.onGotoMore.bind(this);
|
|
|
}
|
|
|
|
|
|
componentWillMount () {
|
|
@@ -46,7 +52,8 @@ class MessageNoticebar extends Component{
|
|
|
|
|
|
Taro.eventCenter.on('getMessageNoticebar', (data) => {
|
|
|
this.setState({
|
|
|
- str:data
|
|
|
+ str:data.str,
|
|
|
+ list:data.list
|
|
|
},()=>{
|
|
|
this.animation.opacity(1).step()
|
|
|
this.setState({
|
|
@@ -76,9 +83,12 @@ class MessageNoticebar extends Component{
|
|
|
if(v.data.length === 0){return;}
|
|
|
let str = '';
|
|
|
for(let i of v.data){
|
|
|
- str+=i.content+'\n'
|
|
|
+ str+=i.content+'\t\t\t\t\t'
|
|
|
}
|
|
|
- Taro.eventCenter.trigger('getMessageNoticebar',str);
|
|
|
+ Taro.eventCenter.trigger('getMessageNoticebar',{
|
|
|
+ str,
|
|
|
+ list:v.data
|
|
|
+ });
|
|
|
}else{
|
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
|
}
|
|
@@ -90,21 +100,63 @@ class MessageNoticebar extends Component{
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+ onGotoMore(){
|
|
|
+ this.setState({
|
|
|
+ isOpened:true
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
render() {
|
|
|
return (
|
|
|
<View className='messageNoticebar' animation={this.state.animation}>
|
|
|
{this.state.isOpend ? <View className='content'>
|
|
|
<View style={{width:'100%'}}>
|
|
|
- <AtNoticebar speed='50' icon='volume-plus'>
|
|
|
+ <AtNoticebar
|
|
|
+ close
|
|
|
+ showMore
|
|
|
+ moreText='查看全部'
|
|
|
+ speed='50'
|
|
|
+ single
|
|
|
+ icon='volume-plus'
|
|
|
+ onClose={this.onClose}
|
|
|
+ onGotoMore={this.onGotoMore}
|
|
|
+ >
|
|
|
<Text decode>
|
|
|
{this.state.str}
|
|
|
</Text>
|
|
|
</AtNoticebar>
|
|
|
</View>
|
|
|
- <View className='noticebar' onClick={this.onClose}>
|
|
|
- <AtIcon value='close' size='10'/>
|
|
|
- </View>
|
|
|
+ {/*<View className='noticebar' onClick={this.onClose}>*/}
|
|
|
+ {/* <AtIcon value='close' size='10'/>*/}
|
|
|
+ {/*</View>*/}
|
|
|
</View> : null}
|
|
|
+ {this.state.isOpened ?
|
|
|
+ <View className='messageNoticebarContent'>
|
|
|
+ <View className='messageContent'>
|
|
|
+ <View className='title'>未读消息</View>
|
|
|
+ <View className='list'>
|
|
|
+ <AtList>
|
|
|
+ {
|
|
|
+ this.state.list.map((v,k)=>(
|
|
|
+ <AtListItem
|
|
|
+ hasBorder
|
|
|
+ key={k}
|
|
|
+ note={v.noticeTypeName}
|
|
|
+ title={v.content}
|
|
|
+ />
|
|
|
+ ))
|
|
|
+ }
|
|
|
+ </AtList>
|
|
|
+ </View>
|
|
|
+ <View className='operation' onClick={()=>{
|
|
|
+ this.setState({
|
|
|
+ isOpened:false,
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ 确定
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+ </View> : null}
|
|
|
</View>
|
|
|
)
|
|
|
}
|