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

+ 2 - 1
package.json

@@ -47,7 +47,8 @@
     "react-redux": "^7.2.0",
     "redux": "^4.0.0",
     "redux-logger": "^3.0.6",
-    "redux-thunk": "^2.3.0"
+    "redux-thunk": "^2.3.0",
+    "taro-skeleton": "^2.0.3"
   },
   "devDependencies": {
     "@babel/core": "^7.8.0",

+ 1 - 1
src/app.config.js

@@ -1,11 +1,11 @@
 export default {
   pages: [
+    // 'pages/staffDistribution/index',//员工分布
     'pages/punchClock/index',//打卡
     'pages/applyDepart/index',//申请公出
     'pages/examine/index',//审核
     'pages/egressDetails/index',//公出详情
     'pages/login/index',//登录
-    // 'pages/staffDistribution/index',//员工分布
   ],
   tabBar: {
     list: [

+ 42 - 24
src/components/common/DateTimePicker/index.jsx

@@ -26,6 +26,7 @@ export default class DateTimePicker extends Component {
         day: '',
         hour: '',
         minute: '',
+      isPickend:true,
     };
     // 打开时间选择的模态框 - 根据当前时间初始化picker-view的数据
     openModal = () => {
@@ -152,62 +153,79 @@ export default class DateTimePicker extends Component {
         const { visible, current, yearList, monthLsit, dayList, hourList, minuteList, selectIndexList } = this.state;
         const { placeholder = '请选择时间' } = this.props;
         return (
-            <View className="datetime-picker-wrap wrap-class">
-                <View className="selector-wrap">
-                    <View className="select-item select-item-class" onClick={this.openModal}>
+            <View className='datetime-picker-wrap wrap-class'>
+                <View className='selector-wrap'>
+                    <View className='select-item select-item-class' onClick={this.openModal}>
                         {current || placeholder}
                     </View>
                     {
-                        current && <View className="clear-icon">
-                            <AtIcon value="close-circle" size="20" onClick={this.clear} />
+                        current && <View className='clear-icon'>
+                            <AtIcon value='close-circle' size='20' onClick={this.clear} />
                         </View>
                     }
                 </View>
                 {visible
-                && <View className="wrapper">
+                && <View className='wrapper'>
                     {/*日期模态框 */}
-                    <View className="model-box-bg"></View>
-                    <View className="model-box">
-                        <View className="model-picker">
-                            <View className="button-model">
-                                <Text class="btn-txt" onClick={this.cancelHandel}>取消</Text>
-                                <Text class="btn-txt" onClick={this.okHandel}>确定</Text>
+                    <View className='model-box-bg'></View>
+                    <View className='model-box'>
+                        <View className='model-picker'>
+                            <View className='button-model'>
+                                <Text class='btn-txt' onClick={this.cancelHandel}>取消</Text>
+                                <Text class='btn-txt' onClick={()=>{
+                                  if(!this.state.isPickend){return;}
+                                  this.okHandel()
+                                }} style={{color:this.state.isPickend ? '#007aff' : '#a1a2a3'}}>确定</Text>
                             </View>
-                            <View className="cont_model">
-                                <PickerView className="pick-view" indicatorStyle="height: 50px;" value={selectIndexList} onChange={this.changeHandel}>
+                            <View className='cont_model'>
+                                <PickerView
+                                  className='pick-view'
+                                  indicatorStyle='height: 50px;'
+                                  value={selectIndexList}
+                                  onChange={this.changeHandel}
+                                  onPickstart={()=>{
+                                    this.setState({
+                                      isPickend:false
+                                    })
+                                  }}
+                                  onPickend={()=>{
+                                  this.setState({
+                                    isPickend:true
+                                  })
+                                }}>
                                     {/*年*/}
-                                    <PickerViewColumn className="picker-view-column">
+                                    <PickerViewColumn className='picker-view-column'>
                                         {
                                             yearList.length && yearList.map((item, index) =>
-                                                <View key={String(index)} className="pick-view-column-item">{item}</View>)
+                                                <View key={String(index)} className='pick-view-column-item'>{item}</View>)
                                         }
                                     </PickerViewColumn>
                                     {/*月*/}
-                                    <PickerViewColumn className="picker-view-column">
+                                    <PickerViewColumn className='picker-view-column'>
                                         {
                                             monthLsit.length && monthLsit.map((item, index) =>
-                                                <View key={String(index)} className="pick-view-column-item">{item}</View>)
+                                                <View key={String(index)} className='pick-view-column-item'>{item}</View>)
                                         }
                                     </PickerViewColumn>
                                     {/*日*/}
-                                    <PickerViewColumn className="picker-view-column">
+                                    <PickerViewColumn className='picker-view-column'>
                                         {
                                             dayList.length && dayList.map((item, index) =>
-                                                <View key={String(index)} className="pick-view-column-item">{item}</View>)
+                                                <View key={String(index)} className='pick-view-column-item'>{item}</View>)
                                         }
                                     </PickerViewColumn>
                                     {/*时*/}
-                                    <PickerViewColumn className="picker-view-column">
+                                    <PickerViewColumn className='picker-view-column'>
                                         {
                                             hourList.length && hourList.map((item, index) =>
-                                                <View key={String(index)} className="pick-view-column-item">{item}</View>)
+                                                <View key={String(index)} className='pick-view-column-item'>{item}</View>)
                                         }
                                     </PickerViewColumn>
                                     {/*分*/}
-                                    <PickerViewColumn className="picker-view-column">
+                                    <PickerViewColumn className='picker-view-column'>
                                         {
                                             minuteList.length && minuteList.map((item, index) =>
-                                                <View key={String(index)} className="pick-view-column-item">{item}</View>)
+                                                <View key={String(index)} className='pick-view-column-item'>{item}</View>)
                                         }
                                     </PickerViewColumn>
                                 </PickerView>

+ 1 - 1
src/pages/applyDepart/index.jsx

@@ -1,7 +1,7 @@
 import React, { Component } from 'react'
 import { connect } from 'react-redux'
 import {View} from '@tarojs/components'
-import { AtSteps,AtTabs, AtTabsPane } from 'taro-ui'
+import { AtSteps } from 'taro-ui'
 
 import 'taro-ui/dist/style/components/steps.scss';
 import 'taro-ui/dist/style/components/icon.scss';

+ 1 - 1
src/pages/applyDepart/publicContent.jsx

@@ -7,7 +7,7 @@ import DateTimePicker from '../../components/common/DateTimePicker';
 
 import ImagePicker from '../../components/common/imagePicker'
 
-import {AtButton, AtTextarea, AtIcon, AtCalendar, message} from 'taro-ui'
+import {AtButton, AtTextarea, AtIcon, AtCalendar} from 'taro-ui'
 import {addPublicRelease} from '../../utils/servers/servers';
 
 import 'taro-ui/dist/style/components/form.scss';

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

@@ -303,7 +303,7 @@ class Examine extends Component {
                   })
                 }else{
                   this.setState({
-                    rangeEndVal:e.detail.value,
+                    rangeEndVal1:e.detail.value,
                   })
                 }
               }}>
@@ -325,10 +325,16 @@ class Examine extends Component {
               </Picker>
             </View>
             <View className='searchItem'>
-              <Picker range={clockState} rangeKey='title' mode='selector' onChange={(e)=>{
-                this.setState({
-                  starts:clockState[e.detail.value],
-                })
+              <Picker value={this.state.current === 0 ? this.state.starts.id : this.state.starts1.id} range={clockState} rangeKey='title' mode='selector' onChange={(e)=>{
+                if(this.state.current === 0){
+                  this.setState({
+                    starts:clockState[e.detail.value],
+                  })
+                }else{
+                  this.setState({
+                    starts1:clockState[e.detail.value],
+                  })
+                }
               }}>
                 <AtList>
                   {
@@ -346,13 +352,19 @@ class Examine extends Component {
               </Picker>
             </View>
             <View className='searchItem'>
-              <Picker range={[
+              <Picker value={this.state.current === 0 ? this.state.clockInStarts : this.state.clockInStarts1} range={[
                 '未打卡',
                 '已打卡'
               ]} mode='selector' onChange={(e)=>{
-                this.setState({
-                  clockInStarts:String(e.detail.value)
-                })
+                if(this.state.current === 0){
+                  this.setState({
+                    clockInStarts:String(e.detail.value)
+                  })
+                }else{
+                  this.setState({
+                    clockInStarts1:String(e.detail.value)
+                  })
+                }
               }}>
                 <AtList>
                   {

+ 108 - 18
src/pages/login/index.jsx

@@ -1,7 +1,7 @@
 import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
-import {View, Input} from '@tarojs/components'
+import {View, Input, Checkbox} from '@tarojs/components'
 import {login} from '../../utils/servers/servers';
 import {setOpenId} from '../../utils/servers/servers';
 
@@ -18,10 +18,6 @@ import 'taro-ui/dist/style/components/modal.scss';
 
 import './index.less'
 
-const list = [
-
-]
-
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
@@ -42,10 +38,14 @@ class Login extends Component {
       username:'',
       password:'',
       isOpened:false,
-      openedType:0
+      openedType:0,
+      usernameList:Taro.getStorageSync('usernameList') || [],
+      rememberPassword:true
     }
     this.login = this.login.bind(this);
     this.authorization = this.authorization.bind(this);
+    this.setUsernameList = this.setUsernameList.bind(this);
+    this.getUsernameList = this.getUsernameList.bind(this);
   }
 
   componentDidShow () {
@@ -142,6 +142,7 @@ class Login extends Component {
               code:res.code,
             }).then(v=>{
               if(v.error.length === 0){
+                this.setUsernameList(this.state.username,this.state.password);
                 Taro.eventCenter.trigger('getStorageSync')
                 Taro.switchTab({
                   url: '/pages/punchClock/index',
@@ -159,6 +160,7 @@ class Login extends Component {
           }
         });
       }else{
+        this.setUsernameList(this.state.username,this.state.password);
         Taro.eventCenter.trigger('getStorageSync')
         Taro.switchTab({
           url: '/pages/punchClock/index',
@@ -172,9 +174,53 @@ class Login extends Component {
     })
   }
 
+  setUsernameList(username,password){
+    if(!this.state.rememberPassword){
+      let usernameList = Taro.getStorageSync('usernameList') || [];
+      let index = usernameList.findIndex(v=>v.username === username);
+      if(index !== -1){
+        usernameList.splice(index,1)
+      }
+      Taro.setStorageSync('usernameList', usernameList);
+    }else{
+      let usernameList = Taro.getStorageSync('usernameList') || [];
+      let index = usernameList.findIndex(v=>v.username === username);
+      if(index === -1){
+        usernameList.push({
+          username,
+          password
+        })
+      }else{
+        usernameList[index]={
+          username,
+          password
+        }
+      }
+      Taro.setStorageSync('usernameList', usernameList);
+    }
+  }
+
+  getUsernameList(value = this.state.username){
+    let usernameList = Taro.getStorageSync('usernameList') || [];
+    let arr = [];
+    for(let i of usernameList){
+      if(i.username.indexOf(value) !== -1){
+        arr.push(i)
+      }
+    }
+    this.setState({
+      usernameList:arr,
+      isopenUsernameList:true
+    })
+  }
+
   render () {
     return (
-      <View className='login'>
+      <View className='login' onClick={()=>{
+        this.setState({
+          isopenUsernameList:false
+        })
+      }}>
         <NavBar
           extClass='NavBar'
           title='科德集团'
@@ -189,17 +235,54 @@ class Login extends Component {
         <View className='loginContent'>
           <View className='loginItem'>
             <AtIcon value='user' size='20' color='#999999'/>
-            <Input
-              style={{marginLeft:'15px',width:'100%'}}
-              type='text'
-              placeholder='请输入您的系统账户'
-              value={this.state.username}
-              onInput={(v)=>{
-                this.setState({
-                  username: v.detail.value
-                })
-              }}
-            />
+            <View className='usernameContent'>
+              <Input
+                style={{marginLeft:'15px',width:'100%'}}
+                type='text'
+                placeholder='请输入您的系统账户'
+                value={this.state.username}
+                onInput={(v)=>{
+                  this.setState({
+                    username: v.detail.value
+                  })
+                  this.getUsernameList(v.detail.value);
+                }}
+                onFocus={()=>{
+                  this.getUsernameList();
+                }}
+                onBlur={()=>{
+                  // this.setState({
+                  //   isopenUsernameList:false
+                  // })
+                }}
+              />
+            </View>
+          </View>
+          <View className='usernameListContent'>
+            {this.state.isopenUsernameList && this.state.usernameList.length >0 ? <View className='usernameList'>
+              {
+                this.state.usernameList.map((v,k)=>(
+                  <View key={k} className='usernameItem' onClick={()=>{
+                    this.setState({
+                      username:v.username,
+                      password:v.password,
+                      isopenUsernameList:false
+                    })
+                    console.log({
+                      username:v.username,
+                      password:v.password,
+                      isopenUsernameList:false
+                    })
+                  }}>
+                    <AtIcon value='user' size='20' color='#c6c4c4'/>
+                    <View className='value'>
+                      <View className='name'>{v.username}</View>
+                      <View className='password'>*******</View>
+                    </View>
+                  </View>
+                ))
+              }
+            </View> : null}
           </View>
           <View className='loginItem'>
             <AtIcon value='lock' size='20' color='#999999'/>
@@ -215,6 +298,13 @@ class Login extends Component {
               }}
             />
           </View>
+          <View className='rememberPassword'>
+            <Checkbox value='选中' checked={this.state.rememberPassword} onClick={()=>{
+              this.setState({
+                rememberPassword:!this.state.rememberPassword
+              })
+            }}>记住密码</Checkbox>
+          </View>
           <AtButton type='primary' 	circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
           <View className='tips'>
             暂无账号?请联系管理员进行添加

+ 44 - 0
src/pages/login/index.less

@@ -33,6 +33,50 @@
       padding-bottom: 10px;
       border-bottom: 1px #dac3c3 solid;
       margin-bottom: 100px;
+      .usernameContent{
+        position: relative;
+      }
+    }
+    .rememberPassword{
+      margin-bottom: 100px;
+      display: flex;
+      justify-content: flex-end;
+      margin-top: -70px;
+      font-size: 26px;
+    }
+    .usernameListContent{
+      position: relative;
+      .usernameList{
+        position: absolute;
+        z-index: 100;
+        left: 0;
+        right: 0;
+        top: -100px;
+        background: white;
+        padding: 30px 20px;
+        box-shadow: -1px 5px 18px -8px #000;
+        border-bottom-left-radius: 15px;
+        border-bottom-right-radius: 15px;
+        .usernameItem{
+          display: flex;
+          flex-flow: row nowrap;
+          align-items: center;
+          margin-bottom: 25px;
+          .value{
+            padding-left: 15px;
+            color: #c6c4c4;
+            .name{
+              font-size: 20px;
+              font-weight: bold;
+            }
+            .password{
+              font-size: 20px;
+              padding-top: 8px;
+              font-weight: bold;
+            }
+          }
+        }
+      }
     }
     .tips{
       color: #3067d4;

+ 2 - 45
src/pages/staffDistribution/index.jsx

@@ -2,7 +2,6 @@ import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
 import {View, Map, Button} from '@tarojs/components'
-import dayjs from 'dayjs';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
 
@@ -25,30 +24,7 @@ import './index.less'
 class Index extends Component {
   constructor(props) {
     super(props);
-    this.state={
-      data:[],
-      newArrder:{},
-      newList:[
-        {
-          longitude: 112.9513,
-          latitude: 28.23529,
-          title:'营销员1',
-          label:{
-            content:'营销员1'
-          }
-        },
-        {
-          longitude: 112.9613,
-          latitude: 28.23529,
-          title:'营销员2',
-        },
-        {
-          longitude: 112.9713,
-          latitude: 28.23529,
-          title:'营销员3',
-        }
-      ],
-    }
+    this.state={}
   }
 
   componentDidShow () {
@@ -56,31 +32,12 @@ class Index extends Component {
   }
 
   componentDidMount() {
-    //获得当前位置
-    Taro.getLocation({
-      type: 'gcj02',
-      isHighAccuracy:true,
-      success: (res)=> {
-        const latitude = res.latitude
-        const longitude = res.longitude
-        this.setState({
-          newArrder:{
-            latitude,
-            longitude
-          },
-        })
-      }
-    })
+
   }
 
   render () {
     return (
       <View>
-        <Map
-          id="allmap"
-          {...this.state.newArrder}
-          markers={this.state.newList}
-        />
       </View>
     )
   }

Разлика између датотеке није приказан због своје велике величине
+ 266 - 510
yarn.lock