dev01 vor 1 Jahr
Ursprung
Commit
3117f70e23

+ 9 - 10
project.config.json

@@ -1,8 +1,6 @@
 {
     "miniprogramRoot": "dist/",
-    "projectname": "kede-research-weapp",
     "description": "项目配置文件,详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
-    "appid": "wxff2f5720ed7d7f63",
     "setting": {
         "urlCheck": false,
         "es6": false,
@@ -23,8 +21,6 @@
         "compileHotReLoad": false,
         "lazyloadPlaceholderEnable": false,
         "useMultiFrameRuntime": false,
-        "useApiHook": false,
-        "useApiHostProcess": false,
         "babelSetting": {
             "ignore": [],
             "disablePlugins": [],
@@ -41,18 +37,21 @@
         "showES6CompileOption": false,
         "useCompilerPlugins": false,
         "useStaticServer": true,
-        "ignoreUploadUnusedFiles": true
+        "ignoreUploadUnusedFiles": true,
+        "useApiHook": false,
+        "useApiHostProcess": false
     },
     "compileType": "miniprogram",
     "condition": {},
-    "libVersion": "2.21.0",
     "srcMiniprogramRoot": "dist/",
-    "packOptions": {
-        "ignore": [],
-        "include": []
-    },
     "editorSetting": {
         "tabIndent": "insertSpaces",
         "tabSize": 4
+    },
+    "appid": "wx7f6d934ed596edda",
+    "libVersion": "2.21.0",
+    "packOptions": {
+        "ignore": [],
+        "include": []
     }
 }

+ 7 - 0
project.private.config.json

@@ -0,0 +1,7 @@
+{
+    "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
+    "projectname": "kede-research-weapp",
+    "setting": {
+        "compileHotReLoad": true
+    }
+}

+ 5 - 4
src/app.config.js

@@ -1,8 +1,9 @@
 export default {
   pages: [
+    'pages/project/index',//审核
     // 'pages/staffDistribution/index',//员工分布
     'pages/punchClock/index',//打卡
-    'pages/examine/index',//审核
+   
     'pages/egressDetails/index',//公出详情
     'pages/login/index',//登录
     'pages/applyDepart/index',//申请公出
@@ -25,14 +26,14 @@ export default {
       {
         iconPath: './image/examineUnSelect.png',
         selectedIconPath: './image/examineSelect.png',
-        pagePath: 'pages/examine/index',
-        text: '审核'
+        pagePath: 'pages/project/index',
+        text: '我的'
       },
       {
         iconPath: './image/my.png',
         selectedIconPath: './image/myselect.png',
         pagePath: 'pages/mybusiness/index',
-        text: '我'
+        text: '我'
       }],
     'color': '#515151',
     'selectedColor': '#56abe4',

+ 1 - 1
src/app.jsx

@@ -58,7 +58,7 @@ class App extends Component {
     if (token) {
       this.getStorageSync();
     }
-    this.getWxConfig();
+    // this.getWxConfig();
   }
 
   componentDidHide() {

+ 0 - 475
src/pages/examine/index.jsx

@@ -1,475 +0,0 @@
-import React, { Component } from 'react';
-import Taro from '@tarojs/taro';
-import { View, Picker, ScrollView, Button } from '@tarojs/components'
-import { getPublicReleaseList, techReject } from '../../utils/servers/servers';
-import dayjs from 'dayjs';
-import {
-  AtSearchBar,
-  AtTabs,
-  AtTabsPane,
-  AtIcon,
-  AtModal,
-  AtModalContent,
-  AtModalAction,
-  AtTextarea
-} from 'taro-ui';
-import { clockState } from '../../utils/tools/config';
-
-import './index.less';
-
-import 'taro-ui/dist/style/components/tabs.scss';
-import "taro-ui/dist/style/components/flex.scss";
-import "taro-ui/dist/style/components/action-sheet.scss";
-import "taro-ui/dist/style/components/icon.scss";
-import "taro-ui/dist/style/components/list.scss";
-import "taro-ui/dist/style/components/icon.scss";
-
-import MyList from './myList';
-import MessageNoticebar from "../../components/common/messageNoticebar";
-
-class Examine extends Component {
-
-  constructor(props) {
-    super(props);
-    this.state = {
-      typeList: [
-        { title: '审核', type: 1 },
-        { title: '查看公出', type: 2 },
-        { title: '查看协单', type: 3 },
-        { title: '他人公出', type: 4 }],
-      current: 0,
-      isPickerRender: false,
-      validDates: '',
-
-      list: [],
-      pageNo: 1,
-      listState: 'LOADING',
-      starts: {},
-      clockInStarts: '',
-      rangeEndVal: '',
-      rangeStartVal: '',
-      rangeEndMinuteVal: '',
-      rangeStartMinuteVal: '',
-
-      id: "",
-      rmk: "",
-      isOpen: false,
-
-    }
-    this.getPublicReleaseList = this.getPublicReleaseList.bind(this);
-    this.getMyList = this.getMyList.bind(this);
-    this.onSetPickerTime = this.onSetPickerTime.bind(this);
-    this.onPickerHide = this.onPickerHide.bind(this)
-  }
-
-  componentDidShow() {
-    Taro.eventCenter.on('listOperation', (data) => {
-      if (!isNaN(parseInt(data.index))) {
-        let arr = this.state.list.concat([]);
-        arr[data.index] = {
-          ...arr[data.index],
-          ...data
-        }
-        this.setState({
-          list: arr
-        })
-      }
-    })
-
-    this.getPublicReleaseList();
-  }
-
-  async componentDidMount() {
-    await this.getPublicReleaseList();
-  }
-
-  onPullDownRefresh() {
-    this.getPublicReleaseList();
-  }
-
-  onReachBottom() {
-    this.getPublicReleaseList(true);
-  }
-
-  onTabItemTap(obj) {
-    if (obj.index === 1) {
-      this.onTabTap();
-    }
-  }
-
-  onPickerHide() {
-    this.setState({
-      isPickerRender: false,
-    });
-  }
-
-  async onSetPickerTime(val) {
-    let data = val.detail;
-    await this.setState({
-      rangeStartMinuteVal: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
-      rangeEndMinuteVal: dayjs(data.selectEndTime).format("YYYY-MM-DD")
-    })
-    await this.getMyList(1);
-  }
-
-  async onTabTap() {
-    await this.getMyList(1);
-  }
-
-  async getPublicReleaseList(lv) {
-    await this.getMyList(lv ? this.state.pageNo + 1 : 1);
-    Taro.stopPullDownRefresh();
-  }
-
-  async getMyList(pageNo) {
-    const { current } = this.state
-    this.setState({
-      listState: 'LOADING'
-    })
-    let data = {
-      pageNo: pageNo,
-      pageSize: 10,
-      type: current === 0
-        ? "1" : current === 1
-          ? "2" : current === 2
-            ? "3" : current === 3 && "4",
-      releaseStarts: this.state.rangeStartMinuteVal || undefined,
-      releaseEnds: this.state.rangeEndMinuteVal || undefined,
-      status: isNaN(parseInt(this.state.starts.id)) ? undefined : String(this.state.starts.id),
-      clockIn: this.state.clockInStarts || undefined,
-      userName: this.state.searchValue || undefined,
-    }
-    for (let i in data) {
-      if (!data[i]) {
-        delete data[i]
-      }
-    }
-    let msg = await getPublicReleaseList(data);
-    if (msg.error.length === 0) {
-      if (msg.data.totalCount === 0) {
-        this.setState({
-          listState: 'NO_DATA'
-        })
-      } else if (msg.data.totalCount === this.state.list.length && pageNo !== 1) {
-        !this.state.isOpen && Taro.showToast({ title: '没有更多数据了', icon: 'none' });
-        this.setState({
-          listState: 'NO_MORE_DATA'
-        })
-      } else {
-        if (msg.data.totalCount === (pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list)).length) {
-          this.setState({
-            listState: 'NO_MORE_DATA'
-          })
-        }
-      }
-      this.setState({
-        list: pageNo === 1 ? msg.data.list : this.state.list.concat(msg.data.list),
-        pageNo: msg.data.list.length === 0 ? this.state.pageNo : msg.data.pageNo
-      })
-    } else {
-      Taro.showToast({ title: msg.error[0].message, icon: 'none' });
-      this.setState({
-        listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
-      })
-    }
-    Taro.stopPullDownRefresh();
-  }
-
-  onPageScroll(event) {
-    let touchMove = event.scrollTop;
-    if (touchMove >= 37) {
-      this.setState({
-        openSearch: true
-      })
-    } else {
-      this.setState({
-        openSearch: false
-      })
-    }
-  }
-
-  submit() {
-    if (!this.state.rmk) {
-      Taro.showToast({ title: '请填写备注!', icon: 'none' });
-      return
-    }
-    Taro.showLoading({ title: '正在提交...' });
-    techReject({
-      id: this.state.id,
-      remarks: this.state.rmk,
-    }).then(v => {
-      Taro.hideLoading()
-      if (v.error.length === 0) {
-        Taro.showToast({ title: '提交成功', icon: 'none' });
-        this.getPublicReleaseList();
-        this.setState({
-          isOpen: false,
-          rmk: "",
-        })
-      } else {
-        Taro.showToast({ title: v.error[0].message, icon: 'none' })
-      }
-    }).catch(() => {
-      Taro.hideLoading()
-      Taro.showToast({
-        title: '系统错误,请稍后再试',
-        icon: 'none'
-      })
-    })
-  }
-
-  render() {
-    return (
-      <View className='indexPage' >
-        <MessageNoticebar />
-        <View className='searchContent'>
-          <View className='searchTop'>
-            <AtSearchBar
-              showActionButton
-              placeholder='请输入企业/渠道'
-              value={this.state.searchValue}
-              onActionClick={() => {
-                this.getPublicReleaseList();
-              }}
-              onChange={(value) => {
-                this.setState({
-                  searchValue: value
-                })
-              }}
-              onClear={() => {
-                this.setState({
-                  searchValue: ''
-                })
-              }}
-            />
-          </View>
-          <ScrollView className={this.state.openSearch ? 'searchBottomLOL' : ''} scrollX style={{ width: '100%' }}>
-            <View className='searchBottom'>
-              <View className='searchItem' style={{ paddingLeft: '5px' }}>
-                <Picker
-                  value={this.state.starts.id}
-                  range={clockState} rangeKey='title' mode='selector'
-                  onChange={(e) => {
-                    this.setState({
-                      starts: clockState[e.detail.value],
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  }}>
-                  {
-                    !this.state.starts.title ?
-                      <View className='shortValuecontent'>
-                        <View className='selectTitle'>审核状态</View>
-                        <View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
-                      </View> :
-                      <View className='shortValuecontent'>
-                        <View className='selectValue'>
-                          {this.state.starts.title}
-                        </View>
-                        <View className='iconContent' />
-                      </View>
-                  }
-                </Picker>
-                {
-                  this.state.starts.title &&
-                  <View className='searchSelectContent'>
-                    <View className='selectIcon'
-                      onClick={(e) => {
-                        e.stopPropagation();
-                        this.setState({
-                          starts: {}
-                        }, () => {
-                          this.getPublicReleaseList();
-                        })
-                      }}>
-                      <AtIcon value='close-circle' size='10' color='#FFFFFF' />
-                    </View>
-                  </View>
-                }
-              </View>
-              <View className='searchItem' >
-                <Picker
-                  value={this.state.clockInStarts}
-                  range={['未打卡', '已打卡', '异常打卡']}
-                  mode='selector'
-                  onChange={(e) => {
-                    this.setState({
-                      clockInStarts: String(e.detail.value)
-                    }, () => {
-                      this.getPublicReleaseList();
-                    })
-                  }}>
-                  {
-                    !this.state.clockInStarts ?
-                      <View className='shortValuecontent'>
-                        <View className='selectTitle'>打卡状态</View>
-                        <View className='iconContent'><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
-                      </View> :
-                      <View className='shortValuecontent'>
-                        <View className='selectValue'>
-                          {
-                            this.state.clockInStarts === '2'
-                              ? '异常打卡' : this.state.clockInStarts === '1'
-                                ? '已打卡' : this.state.clockInStarts === '0'
-                                  ? '未打卡' : ''
-                          }
-                        </View>
-                        <View className='iconContent' />
-                      </View>
-                  }
-                </Picker>
-                {
-                  this.state.clockInStarts ?
-                    <View className='searchSelectContent'>
-                      <View className='selectIcon'
-                        onClick={(e) => {
-                          e.stopPropagation();
-                          this.setState({
-                            clockInStarts: '',
-                          }, () => {
-                            this.getPublicReleaseList();
-                          })
-                        }}>
-                        <AtIcon value='close-circle' size='10' color='#FFFFFF' />
-                      </View>
-                    </View> : null
-                }
-              </View>
-              {/* 多选时间框 */}
-              <View className='searchItem' onClick={() => {
-                this.setState({
-                  isPickerRender: true
-                })
-              }}>
-                <View>
-                  {
-                    !this.state.rangeStartMinuteVal ?
-                      <View className='valuecontent' style={{ width: '200px' }}>
-                        <View className='selectTitle' style={{ paddingLeft: '50px' }}>开始及结束时间</View>
-                        <View className='iconContent' style={{ paddingLeft: '20px' }}><AtIcon value='chevron-down' size='10' color='#FFFFFF' /></View>
-                      </View> :
-                      <View className='valuecontent' style={{ width: '200px' }}>
-                        <View className='selectValue' >
-                          {this.state.rangeStartMinuteVal + "~" + this.state.rangeEndMinuteVal}
-                        </View>
-                        <View className='iconContent' />
-                      </View>
-                  }
-                </View>
-                {
-                  this.state.rangeStartMinuteVal &&
-                  <View className='searchSelectContent'>
-                    <View className='selectIcon'
-                      onClick={(e) => {
-                        e.stopPropagation();
-                        this.setState({
-                          rangeStartMinuteVal: '',
-                          rangeEndMinuteVal: '',
-                        }, () => {
-                          this.getPublicReleaseList();
-                        })
-                      }}>
-                      <AtIcon value='close-circle' size='10' color='#FFFFFF' />
-                    </View>
-                  </View>
-                }
-              </View>
-            </View>
-          </ScrollView>
-        </View>
-        <AtTabs
-          swipeable={false}
-          current={this.state.current || 0}
-          tabList={this.state.typeList}
-          onClick={(current) => {
-            this.setState({
-              list: [],
-              pageNo: 1,
-              current,
-            }, () => {
-              this.getPublicReleaseList();
-            })
-          }}>
-          {
-            this.state.typeList?.map((item, index) =>
-              <AtTabsPane
-                current={this.state.current}
-                index={index}
-              >
-                <MyList
-                  type={item.type}
-                  title={item.title}
-                  typelist={this.state.typeList}
-                  seeView={this.state.current}
-                  list={this.state.list}
-                  listState={this.state.listState}
-                  onRefresh={() => {
-                    this.getPublicReleaseList(true);
-                  }}
-                  opens={e => {
-                    this.setState({
-                      id: e,
-                      isOpen: true,
-                    })
-                  }}
-                />
-              </AtTabsPane>
-            )
-          }
-        </AtTabs>
-        <timePicker
-          config={{
-            endDate: true,
-            column: "minute",
-            dateLimit: false,
-            limitStartTime: dayjs().subtract(3, 'year').format('YYYY-MM-DD '),
-            limitEndTime: dayjs().add(3, 'year').format('YYYY-MM-DD ')
-          }}
-          isPartition
-          pickerShow={this.state.isPickerRender}
-          onconditionaljudgment={(v) => {
-            // let a = dayjs(dayjs(v.detail.endTime).second(0).format('YYYY-MM-DD'));
-            // let b = dayjs(dayjs().second(0).format('YYYY-MM-DD'))
-            // if(a.isBefore(b)){
-            //   Taro.showToast({
-            //     title:'结束时间不能小于当前时间',
-            //     icon:'none'
-            //   })
-            //   v.detail.setLv(false);
-            // }
-          }}
-          onhidepicker={() => {
-            this.onPickerHide()
-          }}
-          onsetpickertime={(v) => {
-            this.onSetPickerTime(v)
-          }}>
-        </timePicker>
-        {/* 驳回协单 */}
-        {
-          this.state.isOpen &&
-          <AtModal
-            isOpened={this.state.isOpen}
-          >
-            <AtModalContent>
-              <AtTextarea
-                value={this.state.rmk}
-                onChange={e => {
-                  this.setState({ rmk: e })
-                }}
-                maxLength={200}
-                placeholder='请填写备注~'
-              />
-            </AtModalContent>
-            <AtModalAction>
-              <Button type='secondary' onClick={() => { this.setState({ isOpen: false }) }}>取消</Button>
-              <Button type='primary' onClick={this.submit.bind(this)}>提交</Button>
-            </AtModalAction>
-          </AtModal>
-        }
-      </View>
-    )
-  }
-}
-
-export default Examine

+ 0 - 147
src/pages/examine/myList.jsx

@@ -1,147 +0,0 @@
-import React, { Component } from "react";
-import Taro from "@tarojs/taro";
-import { View, Image, Button } from "@tarojs/components";
-import Skeleton from "taro-skeleton";
-import { getClockState } from "../../utils/tools";
-import ListBottomStart from "../../components/common/listBottomStart";
-import RevokeWhite from "../../image/revokeWhite.png";
-import "./index.less";
-
-class MyList extends Component {
-  constructor(props) {
-    super(props);
-  }
-
-  render() {
-    let seeView = this.props.seeView;
-    const { title } = this.props
-    return (
-      <View className="indexPage">
-        <View className="list">
-          {
-            this.props.list.length === 0 && this.props.listState === "LOADING" &&
-            this.props.typelist?.map((v) => (
-              <Skeleton key={v} title row={3} avatarShape="square" loading />
-            ))
-          }
-          {this.props.list.length > 0 && this.props.list?.map((v, k) => (
-            <View
-              key={k}
-              className="item"
-              onClick={() => {
-                Taro.navigateTo({
-                  url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title,
-                });
-              }}
-            >
-              {v.publicAgain == 1 && <View className="itype">再次</View>}
-              {v.status === 3 &&
-                <View className="revoke">
-                  <Image src={RevokeWhite} className="revokeImg" />
-                </View>}
-              <View className="infor">
-                <View className="title">
-                  <View className="aname">
-                    {v.type === 3 ? v.mainName : v.aname}提交的公出申请
-                    {v.updateStatus == 1 && <View className="aIcon">改</View>}
-                  </View>
-                  <View className="createTimes">{v.createTimes}</View>
-                </View>
-                <View className="userName">
-                  <View className="uNtext">
-                    公出企业:{v.userNames}
-                  </View>
-                  {
-                    title == "我的公出" &&
-                    (v.type === 0 || v.type === 1 || v.type === 2) &&
-                    v.status !== 3 &&
-                    <View
-                      className="reject"
-                      onClick={e => {
-                        e.stopPropagation();
-                        this.props.again(v)
-                      }}
-                    >
-                      再次公出
-                    </View>
-                  }
-                  {
-                    (title == "我的协单" || title === "查看协单") &&
-                    v.status === 2 &&
-                    v.type === 3 &&
-                    <View
-                      className="reject"
-                      onClick={e => {
-                        e.stopPropagation();
-                        this.props.opens(v.id)
-                      }}
-                    >
-                      驳回协单
-                    </View>
-                  }
-                </View>
-                <View className="userName">
-                  <View className="uNtext">
-                    公出地点:{v.districtName}
-                  </View>
-                </View>
-                <View className="releaseStarts">
-                  开始时间:{v.releaseStarts}
-                  {this.props.type === 0 && v.status !== 3 ? (
-                    <View
-                      className="punchClock"
-                      onClick={(e) => {
-                        e.stopPropagation();
-                        Taro.eventCenter.trigger("GoPunchIn", v);
-                        Taro.switchTab({
-                          url: "/pages/punchClock/index",
-                        });
-                      }}
-                    >
-                      {(v.clockIn === 1 || v.clockIn === 2) ? "更新打卡" : "去打卡"}
-                    </View>
-                  ) : null}
-                </View>
-                <View className="releaseEnds">
-                  结束时间:{v.releaseEnds}
-                </View>
-                {
-                  v.assistAidName != null && v.assistAidName != "" &&
-                  <View className="coOder">
-                    技术协单:{v.assistAidName.replace(/,/g, " ")}
-                  </View>
-                }
-                {
-                  v.assistantName != null && v.assistantName != "" &&
-                  <View className="coOder">
-                    协单助手:{v.assistantName.replace(/,/g, " ")}
-                  </View>
-                }
-                <View className="examine">{v.adminExamine}</View>
-                <View className="bottomContent">
-                  <View className="clockIn"
-                    style={{ color: ['red', "#6eb173", '#dbc037'][v.clockIn] }}
-                  >{['未打卡', '已打卡', '异常打卡'][v.clockIn]}</View>
-                  <View
-                    className="status"
-                    style={{ color: getClockState(v.status).color, }}
-                  >
-                    {(v.status === 0 || v.status === 4) && v.rejectName}{getClockState(v.status).title}
-                  </View>
-                </View>
-              </View>
-            </View>
-          ))}
-          <ListBottomStart
-            state={this.props.listState}
-            reload={() => {
-              this.props.onRefresh;
-            }}
-          />
-        </View>
-      </View>
-    );
-  }
-}
-
-export default MyList;

+ 128 - 118
src/pages/login/index.jsx

@@ -1,12 +1,12 @@
 import { Component } from 'react'
 import Taro from '@tarojs/taro'
 import { connect } from 'react-redux'
-import {View, Input, Image} from '@tarojs/components'
-import {login,getWorkingHours,setOpenId} from '../../utils/servers/servers';
+import { View, Input, Image } from '@tarojs/components'
+import { login, getWorkingHours, setOpenId } from '../../utils/servers/servers';
 
 import { add, minus, asyncAdd } from '../../actions/counter'
 
-import { AtButton,AtIcon,AtModal  } from 'taro-ui'
+import { AtButton, AtIcon, AtModal } from 'taro-ui'
 
 import NavBar from '../../components/common/NavBar';
 
@@ -17,33 +17,33 @@ 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 selectIcon from '../../image/select.png';
 
 import './index.less'
 
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
-  add () {
+  add() {
     dispatch(add())
   },
-  dec () {
+  dec() {
     dispatch(minus())
   },
-  asyncAdd () {
+  asyncAdd() {
     dispatch(asyncAdd())
   }
 }))
 class Login extends Component {
   constructor(props) {
     super(props);
-    this.state={
-      username:'',
-      password:'',
-      isOpened:false,
-      openedType:0,
-      usernameList:Taro.getStorageSync('usernameList') || [],
-      rememberPassword:true
+    this.state = {
+      username: '',
+      password: '',
+      isOpened: false,
+      openedType: 0,
+      usernameList: Taro.getStorageSync('usernameList') || [],
+      rememberPassword: true
     }
     this.login = this.login.bind(this);
     this.authorization = this.authorization.bind(this);
@@ -52,7 +52,7 @@ class Login extends Component {
     this.getWorkingHours = this.getWorkingHours.bind(this);
   }
 
-  componentDidShow () {
+  componentDidShow() {
 
   }
 
@@ -60,21 +60,25 @@ class Login extends Component {
 
   }
 
-  authorization(){
+  authorization() {
     this.setState({
-      loading:true,
+      loading: true,
     })
-    let _this= this;
+    let _this = this;
     Taro.getSetting({
       withSubscriptions: true,
-      success:(res)=>{
-        //console.log(res.subscriptionsSetting,'res.subscriptionsSetting')
-        if(res.subscriptionsSetting.mainSwitch){
-          if(res.subscriptionsSetting['j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I'] === "reject" || res.subscriptionsSetting['pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI'] === "reject" || res.subscriptionsSetting['vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'] === "reject"){
+      success: (res) => {
+
+        _this.login();
+
+        return
+
+        if (res.subscriptionsSetting.mainSwitch) {
+          if (res.subscriptionsSetting['j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I'] === "reject" || res.subscriptionsSetting['pWia-KJPFwDM8ReDu_BOa9FJn31VFc81bp3yxfBmIRI'] === "reject" || res.subscriptionsSetting['vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'] === "reject") {
             this.setState({
-              isOpened:true,
-              loading:false,
-              openedType:1
+              isOpened: true,
+              loading: false,
+              openedType: 1
             })
             return;
           }
@@ -84,36 +88,36 @@ class Login extends Component {
               'j7WH3EwQnxGxwuV2HwmJhryxySPE8vOiV5cVOpp-42I',
               'vo28uzT2sLS-9ioroNyZbMSvu0mMvf6le2pDZVN891U'
             ], //此处写在后台获取的模板ID,可以写多个模板ID,看自己的需求
-             success: function (s) {
-                _this.setState({
-                  loading:false,
-                })
-               _this.login();
+            success: function (s) {
+              _this.setState({
+                loading: false,
+              })
+              _this.login();
             },
             fail: function (err) {
               _this.setState({
-                loading:false,
+                loading: false,
               })
               //console.log(err)
             }
           })
-        }else{
+        } else {
           this.setState({
-            isOpened:true,
-            loading:false,
+            isOpened: true,
+            loading: false,
           })
         }
       },
-      fail:()=>{
+      fail: () => {
         this.setState({
-          loading:false,
+          loading: false,
         })
       }
     })
   }
 
-  login(){
-    if(!this.state.username){
+  login() {
+    if (!this.state.username) {
       Taro.showToast({
         title: '请输入用户名',
         icon: 'none',
@@ -121,7 +125,7 @@ class Login extends Component {
       })
       return;
     }
-    if(!this.state.password){
+    if (!this.state.password) {
       Taro.showToast({
         title: '请输入密码',
         icon: 'none',
@@ -130,87 +134,93 @@ class Login extends Component {
       return;
     }
     this.setState({
-      loading:true,
+      loading: true,
     })
     login({
-      username:this.state.username,
-      password:this.state.password
-    }).then((msg)=>{
+      username: this.state.username,
+      password: this.state.password
+    }).then((msg) => {
       this.setState({
-        loading:false
+        loading: false
       });
-      if(!msg.data.openId){
+
+      Taro.switchTab({
+        url: '/pages/project/index',
+      })
+
+      return
+      if (!msg.data.openId) {
         Taro.login({
-          success: (res)=>{
+          success: (res) => {
             setOpenId({
-              code:res.code,
-            }).then(v=>{
-              if(v.error.length === 0){
-                this.setUsernameList(this.state.username,this.state.password);
+              code: res.code,
+            }).then(v => {
+              if (v.error.length === 0) {
+                this.setUsernameList(this.state.username, this.state.password);
                 Taro.eventCenter.trigger('getStorageSync');
-                this.getWorkingHours(msg.data.departmentId);
-              }else{
+                // this.getWorkingHours(msg.data.departmentId);
+              } else {
                 Taro.showToast({
-                  title:v.error[0].message,
-                  icon:'none',
+                  title: v.error[0].message,
+                  icon: 'none',
                 })
               }
             })
           },
-          fail:()=>{
-            Taro.showToast({title:'系统错误,请稍后重试'})
+          fail: () => {
+            Taro.showToast({ title: '系统错误,请稍后重试' })
           }
         });
-      }else{
-        this.setUsernameList(this.state.username,this.state.password);
+      } else {
+        this.setUsernameList(this.state.username, this.state.password);
         Taro.eventCenter.trigger('getStorageSync');
-        this.getWorkingHours(msg.data.departmentId);
+        // this.getWorkingHours(msg.data.departmentId);
       }
-    }).catch((err)=>{
+    }).catch((err) => {
       //console.log(err)
       this.setState({
-        loading:false
+        loading: false
       })
     })
   }
 
-  getWorkingHours(depId){
+  getWorkingHours(depId) {
     getWorkingHours({
       depId
-    }).then((msg)=>{
-      if(msg.error.length === 0){
+    }).then((msg) => {
+      if (msg.error.length === 0) {
         let obj = Taro.getStorageSync('userInfor');
         obj.workTimeInfor = msg.data;
         Taro.setStorageSync('userInfor', obj);
         Taro.switchTab({
           url: '/pages/punchClock/index',
         })
-      }else{
-        Taro.showToast({title:msg.error[0].message,icon:'none'})
+      } else {
+        Taro.showToast({ title: msg.error[0].message, icon: 'none' })
       }
-    }).catch((err)=>{
+    }).catch((err) => {
       // console.log(err)
     })
   }
 
-  setUsernameList(username,password){
-    if(!this.state.rememberPassword){
+  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)
+      let index = usernameList.findIndex(v => v.username === username);
+      if (index !== -1) {
+        usernameList.splice(index, 1)
       }
       Taro.setStorageSync('usernameList', usernameList);
-    }else{
+    } else {
       let usernameList = Taro.getStorageSync('usernameList') || [];
-      let index = usernameList.findIndex(v=>v.username === username);
-      if(index === -1){
+      let index = usernameList.findIndex(v => v.username === username);
+      if (index === -1) {
         usernameList.push({
           username,
           password
         })
-      }else{
-        usernameList[index]={
+      } else {
+        usernameList[index] = {
           username,
           password
         }
@@ -219,25 +229,25 @@ class Login extends Component {
     }
   }
 
-  getUsernameList(value = this.state.username){
+  getUsernameList(value = this.state.username) {
     let usernameList = Taro.getStorageSync('usernameList') || [];
     let arr = [];
-    for(let i of usernameList){
-      if(i.username.indexOf(value) !== -1){
+    for (let i of usernameList) {
+      if (i.username.indexOf(value) !== -1) {
         arr.push(i)
       }
     }
     this.setState({
-      usernameList:arr,
-      isopenUsernameList:true
+      usernameList: arr,
+      isopenUsernameList: true
     })
   }
 
-  render () {
+  render() {
     return (
-      <View className='login' onClick={()=>{
+      <View className='login' onClick={() => {
         this.setState({
-          isopenUsernameList:false
+          isopenUsernameList: false
         })
       }}>
         <NavBar
@@ -245,32 +255,32 @@ class Login extends Component {
           title='科德集团'
           background='#0000'
           color='#FFF'
-          onHome={()=>{}}
+          onHome={() => { }}
         />
         <View className='welcome'>
-          <Image src={BG} className='bg' mode='heightFix'/>
-          <View className='welcomeTitle'>科德科技服务系统</View>
+          <Image src={BG} className='bg' mode='heightFix' />
+          <View className='welcomeTitle'>科德信息管理</View>
           <View className='welcomeTitle'>欢迎您!</View>
         </View>
         <View className='loginContent'>
           <View className='loginItem'>
-            <AtIcon value='user' size='20' color='#999999'/>
+            <AtIcon value='user' size='20' color='#999999' />
             <View className='usernameContent'>
               <Input
-                style={{marginLeft:'15px',width:'100%'}}
+                style={{ marginLeft: '15px', width: '100%' }}
                 type='text'
                 placeholder='请输入您的系统账户'
                 value={this.state.username}
-                onInput={(v)=>{
+                onInput={(v) => {
                   this.setState({
                     username: v.detail.value
                   })
                   this.getUsernameList(v.detail.value);
                 }}
-                onFocus={()=>{
+                onFocus={() => {
                   this.getUsernameList();
                 }}
-                onBlur={()=>{
+                onBlur={() => {
                   // this.setState({
                   //   isopenUsernameList:false
                   // })
@@ -279,17 +289,17 @@ class Login extends Component {
             </View>
           </View>
           <View className='usernameListContent'>
-            {this.state.isopenUsernameList && this.state.usernameList.length >0 ? <View className='usernameList'>
+            {this.state.isopenUsernameList && this.state.usernameList.length > 0 ? <View className='usernameList'>
               {
-                this.state.usernameList.map((v,k)=>(
-                  <View key={k} className='usernameItem' onClick={()=>{
+                this.state.usernameList.map((v, k) => (
+                  <View key={k} className='usernameItem' onClick={() => {
                     this.setState({
-                      username:v.username,
-                      password:v.password,
-                      isopenUsernameList:false
+                      username: v.username,
+                      password: v.password,
+                      isopenUsernameList: false
                     })
                   }}>
-                    <AtIcon value='user' size='20' color='#c6c4c4'/>
+                    <AtIcon value='user' size='20' color='#c6c4c4' />
                     <View className='value'>
                       <View className='name'>{v.username}</View>
                       <View className='password'>*******</View>
@@ -300,13 +310,13 @@ class Login extends Component {
             </View> : null}
           </View>
           <View className='loginItem'>
-            <AtIcon value='lock' size='20' color='#999999'/>
+            <AtIcon value='lock' size='20' color='#999999' />
             <Input
-              style={{marginLeft:'15px',width:'100%'}}
+              style={{ marginLeft: '15px', width: '100%' }}
               type='password'
               placeholder='请输入密码'
               value={this.state.password}
-              onInput={(v)=>{
+              onInput={(v) => {
                 this.setState({
                   password: v.detail.value
                 })
@@ -314,16 +324,16 @@ class Login extends Component {
             />
           </View>
           <View className='rememberPassword'>
-            <View className='selectContent' onClick={()=>{
+            <View className='selectContent' onClick={() => {
               this.setState({
-                rememberPassword:!this.state.rememberPassword
+                rememberPassword: !this.state.rememberPassword
               })
             }}>
-              <Image src={selectIcon} className='selectIcon' style={{visibility:this.state.rememberPassword ? "visible" : "hidden"}}/>
+              <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>
+          <AtButton type='primary' circle loading={this.state.loading} onClick={this.authorization}>登录</AtButton>
           <View className='tips'>
             暂无账号?请联系管理员进行添加
           </View>
@@ -336,25 +346,25 @@ class Login extends Component {
           title='提醒'
           cancelText='取消'
           confirmText='确认'
-          onClose={()=>{
+          onClose={() => {
             this.setState({
-              isOpened:false,
-              openedType:0,
+              isOpened: false,
+              openedType: 0,
             })
           }}
-          onCancel={()=>{
+          onCancel={() => {
             this.setState({
-              isOpened:false,
-              openedType:0
+              isOpened: false,
+              openedType: 0
             })
           }}
-          onConfirm={()=>{
+          onConfirm={() => {
             this.setState({
-              isOpened:false,
-              openedType:0
-            },()=>{
+              isOpened: false,
+              openedType: 0
+            }, () => {
               Taro.openSetting({
-                success:(value)=> {
+                success: (value) => {
 
                 }
               })

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

@@ -24,7 +24,7 @@ import "taro-ui/dist/style/components/list.scss";
 import "taro-ui/dist/style/components/icon.scss";
 import "taro-ui/dist/style/components/modal.scss";
 
-import MyList from '../examine/myList';
+import MyList from '../project/myList';
 import MessageNoticebar from "../../components/common/messageNoticebar";
 import InquiryModal from "../../components/common/inquiryModal";
 import PublicContent from "../egressDetails/publicContent";

+ 1 - 1
src/pages/examine/index.config.js

@@ -1,5 +1,5 @@
 export default {
-  navigationBarTitleText: '审核',
+  navigationBarTitleText: '研发项目列表',
   enablePullDownRefresh: true,
   onReachBottomDistance: 50,
   usingComponents: {

src/pages/examine/index.css → src/pages/project/index.css


+ 254 - 0
src/pages/project/index.jsx

@@ -0,0 +1,254 @@
+import React, { Component } from 'react';
+import Taro from '@tarojs/taro';
+import { View, Picker, ScrollView, Button } from '@tarojs/components'
+import { getProjectList, techReject } from '../../utils/servers/servers';
+import dayjs from 'dayjs';
+import {
+  AtSearchBar,
+  AtTabs,
+  AtTabsPane,
+  AtIcon,
+  AtModal,
+  AtModalContent,
+  AtModalAction,
+  AtTextarea
+} from 'taro-ui';
+import { clockState } from '../../utils/tools/config';
+
+import './index.less';
+
+import 'taro-ui/dist/style/components/tabs.scss';
+import "taro-ui/dist/style/components/flex.scss";
+import "taro-ui/dist/style/components/action-sheet.scss";
+import "taro-ui/dist/style/components/icon.scss";
+import "taro-ui/dist/style/components/list.scss";
+import "taro-ui/dist/style/components/icon.scss";
+
+import MyList from './myList';
+import MessageNoticebar from "../../components/common/messageNoticebar";
+
+class Project extends Component {
+
+  constructor(props) {
+    super(props);
+    this.state = {
+      typeList: [
+        { title: '全部', type: 1 },
+        { title: '我创建', type: 2 },
+        { title: '我参与', type: 3 }],
+      current: 0,
+
+      list: [],
+      pageNum: 1,
+      listState: 'LOADING',
+
+    }
+    this.getProjectList = this.getProjectList.bind(this);
+    this.getMyList = this.getMyList.bind(this);
+    this.onSetPickerTime = this.onSetPickerTime.bind(this);
+  }
+
+  componentDidShow() {
+    this.getProjectList();
+  }
+
+  async componentDidMount() {
+    await this.getProjectList();
+  }
+
+  onPullDownRefresh() {
+    this.getProjectList();
+  }
+
+  onReachBottom() {
+    this.getProjectList(true);
+  }
+
+  onTabItemTap(obj) {
+    if (obj.index === 1) {
+      this.onTabTap();
+    }
+  }
+
+
+  async onSetPickerTime(val) {
+    let data = val.detail;
+    await this.setState({
+      rangeStartMinuteVal: dayjs(data.selectStartTime).format("YYYY-MM-DD"),
+      rangeEndMinuteVal: dayjs(data.selectEndTime).format("YYYY-MM-DD")
+    })
+    await this.getMyList(1);
+  }
+
+  async onTabTap() {
+    await this.getMyList(1);
+  }
+
+  async getProjectList(lv) {
+    await this.getMyList(lv ? this.state.pageNum + 1 : 1);
+    Taro.stopPullDownRefresh();
+  }
+
+  async getMyList(pageNum) {
+    const { current } = this.state
+    this.setState({
+      listState: 'LOADING'
+    })
+    let data = {
+      pageNum: pageNum,
+      pageSize: 10,
+      roleType: 0,
+      name: this.state.searchValue || undefined,
+
+    }
+    for (let i in data) {
+      if (!data[i] && data[i] != 0) {
+        delete data[i]
+      }
+    }
+    let msg = await getProjectList(data);
+    if (msg.data.code === 200) {
+      if (msg.data.total === 0) {
+        this.setState({
+          listState: 'NO_DATA'
+        })
+      } else if (msg.data.total === this.state.list.length && pageNum !== 1) {
+        !this.state.isOpen && Taro.showToast({ title: '没有更多数据了', icon: 'none' });
+        this.setState({
+          listState: 'NO_MORE_DATA'
+        })
+      } else {
+        if (msg.data.total === (pageNum === 1 ? msg.data.rows : this.state.list.concat(msg.data.rows)).length) {
+          this.setState({
+            listState: 'NO_MORE_DATA'
+          })
+        }
+      }
+      this.setState({
+        list: pageNum === 1 ? msg.data.rows : this.state.list.concat(msg.data.rows),
+        pageNum: msg.data.rows.length === 0 ? this.state.pageNum : msg.data.next - 1
+      })
+    } else {
+      Taro.showToast({ title: msg.data.msg, icon: 'none' });
+      this.setState({
+        // listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
+      })
+    }
+    Taro.stopPullDownRefresh();
+  }
+
+  onPageScroll(event) {
+    let touchMove = event.scrollTop;
+    if (touchMove >= 37) {
+      this.setState({
+        openSearch: true
+      })
+    } else {
+      this.setState({
+        openSearch: false
+      })
+    }
+  }
+
+  submit() {
+    if (!this.state.rmk) {
+      Taro.showToast({ title: '请填写备注!', icon: 'none' });
+      return
+    }
+    Taro.showLoading({ title: '正在提交...' });
+    techReject({
+      id: this.state.id,
+      remarks: this.state.rmk,
+    }).then(v => {
+      Taro.hideLoading()
+      if (v.error.length === 0) {
+        Taro.showToast({ title: '提交成功', icon: 'none' });
+        this.getProjectList();
+        this.setState({
+          isOpen: false,
+          rmk: "",
+        })
+      } else {
+        Taro.showToast({ title: v.error[0].message, icon: 'none' })
+      }
+    }).catch(() => {
+      Taro.hideLoading()
+      Taro.showToast({
+        title: '系统错误,请稍后再试',
+        icon: 'none'
+      })
+    })
+  }
+
+  render() {
+    return (
+      <View className='indexPage' >
+        {/* <MessageNoticebar /> */}
+        <View className='searchContent'>
+          <View className='searchTop'>
+            <AtSearchBar
+              showActionButton
+              placeholder='请输项目名称'
+              value={this.state.searchValue}
+              onActionClick={() => {
+                this.getProjectList();
+              }}
+              onChange={(value) => {
+                this.setState({
+                  searchValue: value
+                })
+              }}
+              onClear={() => {
+                this.setState({
+                  searchValue: ''
+                })
+              }}
+            />
+          </View>
+          {/* <ScrollView className={this.state.openSearch ? 'searchBottomLOL' : ''} scrollX style={{ width: '100%' }}>
+            <View className='searchBottom'>
+              <View className='searchItem' style={{ paddingLeft: '5px' }}>
+
+              </View>
+            </View>
+          </ScrollView> */}
+        </View>
+        <AtTabs
+          swipeable={false}
+          current={this.state.current || 0}
+          tabList={this.state.typeList}
+          onClick={(current) => {
+            this.setState({
+              list: [],
+              pageNum: 1,
+              current,
+            }, () => {
+              this.getProjectList();
+            })
+          }}>
+          {
+            this.state.typeList?.map((item, index) =>
+              <AtTabsPane
+                current={this.state.current}
+                index={index}
+              >
+                <MyList
+                  title={item.title}
+                  typelist={this.state.typeList}
+                  seeView={this.state.current}
+                  list={this.state.list}
+                  listState={this.state.listState}
+                  onRefresh={() => {
+                    this.getProjectList(true);
+                  }}
+                />
+              </AtTabsPane>
+            )
+          }
+        </AtTabs>
+      </View>
+    )
+  }
+}
+
+export default Project

+ 1 - 2
src/pages/examine/index.less

@@ -280,13 +280,12 @@
             border-bottom-left-radius: 100px;
             border-top-left-radius: 100px;
             padding: 20px 20px;
-            background: #f1662f;
+            background: #70B603;
             color: white;
             display: flex;
             justify-content: center;
             align-items: center;
             right: -31px;
-            top: -10px;
           }
         }
 

+ 86 - 0
src/pages/project/myList.jsx

@@ -0,0 +1,86 @@
+import React, { Component } from "react";
+import Taro from "@tarojs/taro";
+import { View, Image, Button } from "@tarojs/components";
+import Skeleton from "taro-skeleton";
+import { getClockState } from "../../utils/tools";
+import ListBottomStart from "../../components/common/listBottomStart";
+import RevokeWhite from "../../image/revokeWhite.png";
+import "./index.less";
+
+class MyList extends Component {
+  constructor(props) {
+    super(props);
+  }
+
+  render() {
+    const { title } = this.props
+    return (
+      <View className="indexPage">
+        <View className="list">
+          {
+            this.props.list.length === 0 && this.props.listState === "LOADING" &&
+            this.props.typelist?.map((v) => (
+              <Skeleton key={v} title row={3} avatarShape="square" loading />
+            ))
+          }
+          {this.props.list.length > 0 && this.props.list?.map((v, k) => (
+            <View
+              key={k}
+              className="item"
+              onClick={() => {
+                // Taro.navigateTo({
+                //   url: "/pages/egressDetails/index?id=" + v.id + "&index=" + k + "&status=" + title,
+                // });
+              }}
+            >
+              <View className="infor">
+                <View className="title">
+                  <View className="aname">
+                    {v.name}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    负责人:{v.adminName}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    研发人员:{v.staffName}
+                  </View>
+                </View>
+                <View className="userName">
+                  <View className="uNtext">
+                    累积工时:{v.duration}
+                  </View>
+                </View>
+                <View className="releaseStarts">
+                  <View
+                    className="punchClock"
+                    onClick={(e) => {
+                      e.stopPropagation();
+                      // Taro.eventCenter.trigger("GoPunchIn", v);
+                      // Taro.switchTab({
+                      //   url: "/pages/punchClock/index",
+                      // });
+                    }}
+                  >
+                    去打卡
+                  </View>
+                </View>
+              </View>
+            </View>
+          ))}
+          <ListBottomStart
+            state={this.props.listState}
+            reload={() => {
+              this.props.onRefresh;
+            }}
+          />
+        </View>
+      </View>
+    );
+  }
+}
+
+export default MyList;

+ 2 - 2
src/utils/config.js

@@ -1,7 +1,7 @@
 // 本地
-// export const resourceAddress = 'http://172.16.0.255:3000/upload;'
+export const resourceAddress = 'http://172.16.0.255:3000/upload;'
 // 生产
 // export const resourceAddress = 'https://s.jishutao.com/upload';
 // 测试
-export const resourceAddress = 'https://static.jishutao.com/upload';
+// export const resourceAddress = 'https://static.jishutao.com/upload';
 

+ 2 - 2
src/utils/servers/baseUrl.js

@@ -7,8 +7,8 @@ const getBaseUrl = (url) => {
     BASE_URL = 'https://bm.jishutao.com'
   } else {
     // 生产环境
-    // BASE_URL = 'http://172.16.0.255:8080'
-    BASE_URL = 'https://uat.jishutao.com'
+    BASE_URL = 'http://172.16.0.255:8888'
+    // BASE_URL = 'https://uat.jishutao.com'
     // BASE_URL = 'https://bm.jishutao.com'
   }
   return BASE_URL

+ 7 - 4
src/utils/servers/http.js

@@ -8,19 +8,22 @@ class httpRequest {
   baseOptions(params, method = "GET") {
     let { url, data } = params;
     const BASE_URL = getBaseUrl(url);
-    let contentType = "application/x-www-form-urlencoded; charset=UTF-8;";
+    let contentType = "application/json";
     contentType = params.contentType || contentType;
     let token = Taro.getStorageSync('token');
-    data.token = token;
+    // if (!!token) {
+    //   data.token = token;
+    // }
     const option = {
       url: BASE_URL + url,
       data: data,
       method: method,
       header: {
         'content-type': contentType,
-        'Authorization': Taro.getStorageSync('Authorization'),
-        'Accept':'application/json, text/javascript,'
+        'Authorization': Taro.getStorageSync('token'),
+        'Accept': 'application/json, text/javascript,'
       },
+      dataType: 'json',
     };
     return Taro.request(option);
   }

+ 5 - 4
src/utils/servers/interceptors.js

@@ -7,7 +7,8 @@ const customInterceptor = (chain) => {
   const requestParams = chain.requestParams
 
   return chain.proceed(requestParams).then(res => {
-    // console.log(res.statusCode,'proceed')
+    // console.log(res.statusCode, 'proceed', res)
+    console.log(res.statusCode, res.data.code, "---", res.data.code === 401)
     // 只要请求成功,不管返回什么状态码,都走这个回调
     if (res.statusCode === HTTP_STATUS.NOT_FOUND) {
       Taro.setStorageSync("token", "");
@@ -17,7 +18,7 @@ const customInterceptor = (chain) => {
       return {
         error: [
           {
-            message:'请求资源不存在,请重新登录',
+            message: '请求资源不存在,请重新登录',
             start: 404
           }
         ]
@@ -27,7 +28,7 @@ const customInterceptor = (chain) => {
       return {
         error: [
           {
-            message:'系统错误,请稍后再试',
+            message: '系统错误,请稍后再试',
             start: 500
           }
         ]
@@ -49,7 +50,7 @@ const customInterceptor = (chain) => {
       return Promise.reject("需要鉴权")
 
     } else if (res.statusCode === HTTP_STATUS.SUCCESS) {
-      if(res.data.error && res.data.error.length !== 0 && res.data.error[0].field === '403'){
+      if (res.data.code === 401) {
         Taro.setStorageSync("token", "");
         Taro.setStorageSync('userInfor', "");
         pageToLogin()

+ 18 - 10
src/utils/servers/servers.js

@@ -9,20 +9,19 @@ export const login = (res) => {
       title: '登录中...',
     })
     try {
-      let msg = await HTTPREQUEST.post('/managesignin', {
-        mobile: res.username,
+      let msg = await HTTPREQUEST.post('/login', {
+        username: res.username,
         password: res.password,
-        remeber: false
       });
-      if (msg.error.length === 0) {
-        Taro.setStorageSync('token', msg.token);
-        Taro.setStorageSync('userInfor', msg.data);
+      console.log("---", msg)
+      if (msg.data.code == 200) {
+        Taro.setStorageSync('token', msg.data.token);
         Taro.hideLoading();
         Taro.showToast({ title: '登录成功', icon: 'success' })
         resolve(msg);
       } else {
         Taro.hideLoading();
-        Taro.showToast({ title: msg.error[0].message, icon: 'none' })
+        Taro.showToast({ title: msg.data.msg, icon: 'none' })
         reject();
       }
     } catch (err) {
@@ -33,6 +32,18 @@ export const login = (res) => {
     }
   })
 }
+
+// 存储openId
+export const setOpenId = (postData = {}) => {
+  return HTTPREQUEST.get('/system/weChat/getOpenId', postData)
+}
+
+// 项目列表
+export const getProjectList = (postData = {}) => {
+  return HTTPREQUEST.get('/api/project/list', postData)
+}
+
+
 // 查询客户订单
 export const getOrderByUid = (postData = {}) => {
   return HTTPREQUEST.get('/api/admin/release/selectOrderByUid', postData)
@@ -49,9 +60,6 @@ export const addPublicRelease = (postData = {}) => {
   return HTTPREQUEST.post('/api/admin/release/addPublicRelease', postData)
 }
 
-export const setOpenId = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/setOpenId', postData)
-}
 //获取最近打卡信息
 export const getPunchClockInfo = (postData = {}) => {
   return HTTPREQUEST.get('/api/admin/release/getMyNewPublic', postData)