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

+ 14 - 6
src/pages/egressDetails/index.jsx

@@ -197,12 +197,15 @@ class EgressDetails extends Component{
           <View className='item'>
             <View className='title'>
               公出地点:
-              {this.$instance.router.params.type === '0' && dtails.status === 0 ? <AtIcon value='edit' size='18' color='#3864ef' onClick={()=>{
-                this.setState({
-                  isModifyOpened:true,
-                  modifyType:2,
-                })
-              }}/> : null}
+              {this.$instance.router.params.type === '0' && dtails.status === 0 ?
+                <View className='edit' onClick={()=>{
+                  this.setState({
+                    isModifyOpened:true,
+                    modifyType:2,
+                  })
+                }}>
+                  <AtIcon value='edit' size='18' color='#3864ef'/>
+                </View> : null}
             </View>
             <View className='value'>{dtails.userName}</View>
             <View className='timeContent'>
@@ -334,6 +337,11 @@ class EgressDetails extends Component{
           id={this.$instance.router.params.id}
           isOpened={this.state.isModifyOpened}
           modifyType={this.state.modifyType}
+          onModalClose={()=>{
+            this.setState({
+              isModifyOpened:false,
+            })
+          }}
           onClose={()=>{
           this.setState({
             isModifyOpened:false,

+ 8 - 2
src/pages/egressDetails/index.less

@@ -19,8 +19,8 @@
       flex-flow: row;
       align-items: center;
       .switchItem{
-        width: 30px;
-        height: 30px;
+        width: 40px;
+        height: 40px;
         margin-left: 20px;
       }
     }
@@ -51,6 +51,12 @@
         color: #b7acac;
         font-size: 27px;
         padding-bottom: 10px;
+        position: relative;
+        .edit{
+          position: absolute;
+          right: -30px;
+          padding: 30px;
+        }
       }
       .value{
         color: #000000;

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

@@ -62,7 +62,7 @@ class Modify extends Component{
 
   render() {
     return (
-      <AtModal isOpened={this.props.isOpened}>
+      <AtModal isOpened={this.props.isOpened} onClose={this.props.onModalClose}>
         <AtModalContent>
           {
             this.props.modifyType === 1 ?

+ 1 - 1
src/pages/punchClock/index.less

@@ -124,7 +124,7 @@
         padding-bottom: 8px;
       }
       .refreshClock{
-        color: #308de8;
+        color: #f5f6f8;
         font-size: 25px;
       }
     }

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

@@ -472,8 +472,8 @@ class PunchClocks extends Component {
                   }
                 })
               }} style={{
-                boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? '1px 1px 15px 1px #659268' : '1px 1px 15px 1px #acb8ad',
-                background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '#eca529' : '#72cb78') : '#acb8ad'
+                boxShadow:  (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '1px 1px 15px 1px #3f82e8' : '1px 1px 15px 1px #659268') : '1px 1px 15px 1px #acb8ad',
+                background: (!isNaN(parseInt(this.state.distance))) && this.state.distance <=100 && this.state.distance >= 0 ? (dtails.clockIn === 1 ? '#3f82e8' : '#72cb78') : '#acb8ad'
               }}>
                 <View className='punchClockTitle'>公出打卡</View>
                 <View className='punchClockTime'>{this.state.nowTime}</View>