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

+ 35 - 5
project.config.json

@@ -1,13 +1,43 @@
 {
-  "miniprogramRoot": "./dist",
+  "miniprogramRoot": "dist/",
   "projectname": "kede-tool-weapp",
   "description": "科德工具小程序",
   "appid": "wxff2f5720ed7d7f63",
   "setting": {
-    "urlCheck": true,
+    "urlCheck": false,
     "es6": false,
+    "enhance": true,
     "postcss": false,
-    "minified": false
+    "preloadBackgroundData": false,
+    "minified": false,
+    "newFeature": false,
+    "coverView": true,
+    "nodeModules": false,
+    "autoAudits": false,
+    "showShadowRootInWxmlPanel": true,
+    "scopeDataCheck": false,
+    "uglifyFileName": false,
+    "checkInvalidKey": true,
+    "checkSiteMap": true,
+    "uploadWithSourceMap": true,
+    "compileHotReLoad": false,
+    "lazyloadPlaceholderEnable": false,
+    "useMultiFrameRuntime": true,
+    "useApiHook": true,
+    "useApiHostProcess": false,
+    "babelSetting": {
+      "ignore": [],
+      "disablePlugins": [],
+      "outputPath": ""
+    },
+    "enableEngineNative": false,
+    "useIsolateContext": true,
+    "userConfirmedBundleSwitch": false,
+    "packNpmManually": false,
+    "packNpmRelationList": [],
+    "minifyWXSS": true,
+    "showES6CompileOption": false
   },
-  "compileType": "miniprogram"
-}
+  "compileType": "miniprogram",
+  "condition": {}
+}

+ 2 - 1
src/components/historicalClock/index.jsx

@@ -60,7 +60,8 @@ class HistoricalClock extends Component{
     return (
       <AtModal
         isOpened={this.props.isOpened}
-        onClose={this.props.onClose}>
+        onClose={this.props.onClose}
+        onCancel={this.props.onClose}>
         <AtModalContent>
           <View className='historicalClock'>
             {

BIN
src/image/select.png


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

@@ -273,7 +273,9 @@ class PublicContent extends Component{
               isPartition
               pickerShow={this.state.isPickerRender}
               onconditionaljudgment={(v)=>{
-                if(!dayjs(v.detail.endTime).isAfter(dayjs())){
+                let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD HH:mm:ss'));
+                let b = dayjs(dayjs().second(0).format('YYYY-MM-DD HH:mm:ss'))
+                if(a.isBefore(b)){
                   Taro.showToast({
                     title:'结束时间不能小于当前时间',
                     icon:'none'

+ 3 - 1
src/pages/egressDetails/publicContent.jsx

@@ -304,7 +304,9 @@ class PublicContent extends Component{
               isPartition
               pickerShow={this.state.isPickerRender}
               onconditionaljudgment={(v)=>{
-                if(!dayjs(v.detail.endTime).isAfter(dayjs())){
+                let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD HH:mm:ss'));
+                let b = dayjs(dayjs().second(0).format('YYYY-MM-DD HH:mm:ss'))
+                if(a.isBefore(b)){
                   Taro.showToast({
                     title:'结束时间不能小于当前时间',
                     icon:'none'

+ 8 - 3
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, Checkbox, Image} from '@tarojs/components'
+import {View, Input, Image} from '@tarojs/components'
 import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
@@ -17,6 +17,8 @@ import 'taro-ui/dist/style/components/loading.scss';
 import 'taro-ui/dist/style/components/icon.scss';
 import 'taro-ui/dist/style/components/modal.scss';
 
+import selectIcon from '../../image/select.png' ;
+
 import './index.less'
 
 @connect(({ counter }) => ({
@@ -317,11 +319,14 @@ class Login extends Component {
             />
           </View>
           <View className='rememberPassword'>
-            <Checkbox value='选中' checked={this.state.rememberPassword} onClick={()=>{
+            <View className='selectContent' onClick={()=>{
               this.setState({
                 rememberPassword:!this.state.rememberPassword
               })
-            }}>记住密码</Checkbox>
+            }}>
+              <Image src={selectIcon} className='selectIcon' style={{visibility:this.state.rememberPassword ? "visible" : "hidden"}}/>
+            </View>
+            记住密码
           </View>
           <AtButton type='primary' 	circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
           <View className='tips'>

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

@@ -47,8 +47,24 @@
       margin-bottom: 100px;
       display: flex;
       justify-content: flex-end;
+      align-items: center;
       margin-top: -70px;
       font-size: 26px;
+      color: #939393;
+      .selectContent{
+        padding: 7px;
+        display: flex;
+        flex-flow: row nowrap;
+        align-items: center;
+        justify-content: center;
+        border: 1px solid #d0cfcf;
+        border-radius: 4px;
+        margin-right: 10px;
+        .selectIcon{
+          width: 32px;
+          height: 32px;
+        }
+      }
     }
     .usernameListContent{
       position: relative;

+ 1 - 0
src/pages/punchClock/punchClocks.jsx

@@ -147,6 +147,7 @@ class PunchClocks extends Component {
         addressLatitude:parseFloat(arg.latitude),
         addressLongitude:parseFloat(arg.longitude),
       },()=>{
+        Taro.showToast({title:'切换成功'});
         Taro.startLocationUpdate({
           success:()=>{
             Taro.onLocationChange((v)=>{

+ 1 - 1
src/utils/config.js

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

+ 1 - 1
src/utils/servers/interceptors.js

@@ -7,7 +7,7 @@ const customInterceptor = (chain) => {
   const requestParams = chain.requestParams
 
   return chain.proceed(requestParams).then(res => {
-    console.log(res,'proceed')
+    // console.log(res,'proceed')
     // 只要请求成功,不管返回什么状态码,都走这个回调
     if (res.statusCode === HTTP_STATUS.NOT_FOUND) {
       return {