Explorar el Código

修复日历样式问题
增加列表数据更新

HW hace 3 años
padre
commit
f5d6ceb528

+ 6 - 7
src/pages/applyDepart/index.less

@@ -11,21 +11,20 @@
   color: white;
   border: 0 !important;
   border-radius: 0 !important;
-  background: #6eb173 !important;
+  background: #6eb173;
 }
 
-.at-calendar__list.flex  .flex__item{
-  background: #6eb173;
-  color: #FFFFFF;
+.at-calendar__list.flex .flex__item--selected-head.flex__item--selected-tail {
+  background-color: #6eb173;
 }
 
-.at-calendar__list.flex .flex__item--selected-head.flex__item--selected-tail .flex__item-container {
-  background-color: rgba(0,0,0,0);
+.at-calendar__list.flex  .flex__item{
+  background: #6eb173;
   color: #FFFFFF;
 }
 
 .at-calendar__list.flex .flex__item--blur{
-  background: #fff;
+  background: #fff !important;
   color: #e1e4e7 !important;
 }
 

+ 7 - 0
src/pages/egressDetails/index.jsx

@@ -104,6 +104,11 @@ class EgressDetails extends Component{
         this.setState({
           dtails:this.state.dtails
         })
+        Taro.eventCenter.trigger('listOperation',{
+          type:this.$instance.router.params.type,
+          index:this.$instance.router.params.type,
+        })
+
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -322,6 +327,8 @@ class EgressDetails extends Component{
           </AtModalAction>
         </AtModal>
         <Modify
+          type={this.$instance.router.params.type}
+          index={this.$instance.router.params.index}
           dtails={dtails}
           locationInfor={this.state.selectArrderLocation}
           id={this.$instance.router.params.id}

+ 7 - 7
src/pages/egressDetails/index.less

@@ -124,25 +124,25 @@
   .at-image-picker__remove-btn{
     display: none;
   }
+
   .at-calendar__list.flex .flex__item--selected{
     color: white;
     border: 0 !important;
     border-radius: 0 !important;
-    background: #6eb173 !important;
+    background: #6eb173;
   }
 
-  .at-calendar__list.flex  .flex__item{
-    background: #6eb173;
-    color: #FFFFFF;
+  .at-calendar__list.flex .flex__item--selected-head.flex__item--selected-tail {
+    background-color: #6eb173;
   }
 
-  .at-calendar__list.flex .flex__item--selected-head.flex__item--selected-tail .flex__item-container {
-    background-color: rgba(0,0,0,0);
+  .at-calendar__list.flex  .flex__item{
+    background: #6eb173;
     color: #FFFFFF;
   }
 
   .at-calendar__list.flex .flex__item--blur{
-    background: #fff;
+    background: #fff !important;
     color: #e1e4e7 !important;
   }
 

+ 8 - 1
src/pages/egressDetails/modify.jsx

@@ -29,7 +29,12 @@ class Modify extends Component{
       ...this.state.data
     }).then(v=>{
       if(v.error.length === 0){
-        Taro.showToast({title:'修好成功'})
+        Taro.showToast({title:'修改成功'});
+        Taro.eventCenter.trigger('listOperation',{
+          type:this.props.type,
+          status: 1,
+          index:this.props.index
+        })
         this.props.onClose();
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
@@ -63,6 +68,8 @@ class Modify extends Component{
             this.props.modifyType === 1 ?
               <Enterprise isOpened={this.props.isOpened} onChange={this.onChange}/> :
               <PublicContent
+                type={this.props.type}
+                index={this.props.index}
                 onClose={()=>{
                   this.props.onClose();
                 }}

+ 22 - 0
src/pages/egressDetails/publicContent.jsx

@@ -164,6 +164,14 @@ class PublicContent extends Component{
         Taro.showToast({
           title:'修改成功',
         })
+        Taro.eventCenter.trigger('listOperation',{
+          type:this.props.type,
+          index:this.props.index,
+          status: 1,
+          userName: this.props.locationInfor.name,
+          releaseStarts:this.state.rangeStartMinuteVal,
+          releaseEnds:this.state.rangeEndMinuteVal,
+        })
         this.props.onClose();
       }else{
         Taro.showToast({
@@ -218,6 +226,13 @@ class PublicContent extends Component{
             <DateTimePicker ref={ref=>this.rangeStartRef = ref} onOk={(current)=>{
               let arr = [];
               if(this.state.rangeEndVal){
+                if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndVal.split('-')))){
+                  Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'})
+                  this.rangeStartRef.clear();
+                  return;
+                }
+              }
+              if(this.state.rangeEndVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:str});
                 let a = dayjs(this.state.rangeEndVal.split('-'));
@@ -257,6 +272,13 @@ class PublicContent extends Component{
             <DateTimePicker ref={ref=>this.rangeEndRef = ref} onOk={(current)=>{
               let arr = [];
               if(this.state.rangeStartVal){
+                if(dayjs(current.current).isBefore(dayjs(this.state.rangeStartVal.split('-')))){
+                  Taro.showToast({title:'结束时间不能在开始时间之前',icon:'none'})
+                  this.rangeEndRef.clear();
+                  return;
+                }
+              }
+              if(this.state.rangeStartVal){
                 let str = dayjs(current.current).format('YYYY-MM-DD');
                 arr.push({value:this.state.rangeStartVal});
                 let a = dayjs(this.state.rangeStartVal.split('-'));

+ 21 - 1
src/pages/examine/index.jsx

@@ -32,7 +32,27 @@ class Examine extends Component {
   }
 
   componentDidShow(){
-
+    Taro.eventCenter.on('listOperation',(data)=>{
+      console.log(data,'data');
+      if(data.type === '1'){
+        let arr = this.state.examinelist.concat([]);
+        arr.splice(data.index,1);
+        this.setState({
+          examinelist:arr
+        })
+      }else if(data.type === '0'){
+        let arr = this.state.list.concat([]);
+        arr[data.index] = {
+          ...arr[data.index],
+          ...data
+        }
+        console.log(arr[data.index],'arr[data.index]')
+        console.log(arr,'this.state.list')
+        this.setState({
+          list:arr
+        })
+      }
+    })
   }
 
   async componentDidMount() {

+ 1 - 1
src/pages/examine/myList.jsx

@@ -36,7 +36,7 @@ class MyList extends Component {
             this.props.list.map((v,k)=>(
               <View key={k} className='item' onClick={()=>{
                 Taro.navigateTo({
-                  url:'/pages/egressDetails/index?type='+this.props.type+'&id='+v.id
+                  url:'/pages/egressDetails/index?type='+this.props.type+'&id='+v.id+'&index='+k
                 })
               }}>
                 <View className='infor'>

+ 2 - 2
src/utils/config.js

@@ -1,3 +1,3 @@
-export const resourceAddress = 'http://172.16.0.188:3000/upload'
-// export const resourceAddress = 'https://static.jishutao.com/upload'
+// export const resourceAddress = 'http://172.16.0.188:3000/upload'
+export const resourceAddress = 'https://static.jishutao.com/upload'