HW пре 3 година
родитељ
комит
7abe6ea636

+ 62 - 10
src/components/common/messageNoticebar/index.jsx

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

+ 35 - 0
src/components/common/messageNoticebar/index.less

@@ -20,4 +20,39 @@
       right: 20px;
     }
   }
+  .messageNoticebarContent{
+    position: fixed;
+    top: 0;
+    left: 0;
+    right: 0;
+    bottom: 0;
+    background: rgba(0,0,0,.7);
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    .messageContent{
+      margin: 0 35px;
+      width: calc(100vw - 70px);
+      background: #FFFFFF;
+      border-radius: 25px;
+      .title{
+        text-align: center;
+        font-size: 32px;
+        padding: 25px 0;
+        border-bottom: 1px #d4d1d1 solid;
+      }
+      .list{
+        padding: 25px 0;
+        min-height: 120px;
+      }
+      .operation{
+        padding: 25px;
+        font-size: 28px;
+        border-top: 1px #d4d1d1 solid;
+        display: flex;
+        justify-content: center;
+        text-align: center;
+      }
+    }
+  }
 }

+ 5 - 5
src/pages/punchClock/punchClocks.jsx

@@ -167,28 +167,28 @@ class PunchClocks extends Component {
 
   publicReleaseClockIn(){
     if(Object.keys(this.state.dtails).length === 0){
-      Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'});
       Taro.hideLoading()
+      Taro.showToast({title:'暂无公出申请,无法打卡',icon:'none'});
       return ;
     }
     if(isNaN(parseInt(this.state.distance))){
-      Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
       Taro.hideLoading()
+      Taro.showToast({title:'定位错误,请联系管理员',icon:'none'})
       return ;
     }
     if(dayjs().isBefore(this.state.dtails.releaseStarts) || dayjs().isAfter(this.state.dtails.releaseEnds)){
-      Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
       Taro.hideLoading()
+      Taro.showToast({title:'还没到打卡时间,无法打卡',icon:'none'})
       return ;
     }
     if(!(this.state.distance <=100 && this.state.distance >= 0)){
-      Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       Taro.hideLoading()
+      Taro.showToast({title:'当前位置未处于可打卡范围,无法打卡',icon:'none'})
       return ;
     }
     if(this.state.imgs.length === 0){
-      Taro.showToast({title:'请上传打卡照片',icon:'none'})
       Taro.hideLoading()
+      Taro.showToast({title:'请上传打卡照片',icon:'none'})
       return ;
     }
     publicReleaseClockIn({