dev01 1 рік тому
батько
коміт
477b4c9f5b

+ 12 - 12
src/app.config.js

@@ -4,7 +4,7 @@ export default {
     'pages/project/index', // 研发项目
     'pages/login/index', // 登录
     'pages/mybusiness/index', // 审核
-    'pages/detail/index',
+    'pages/detail/index', //项目详情
     // 'pages/projectAdd/index',// 新增项目
   ],
   tabBar: {
@@ -44,16 +44,16 @@ export default {
     "onLocationChange",
     "startLocationUpdate",
   ],
-  plugins: {
-    chooseLocation: {
-      version: "1.0.10",
-      provider: "wx76a9a06e5b4e693e"
-    },
-  },
-  permission: {
-    "scope.userLocation": {
-      desc: "你的位置信息将用于小程序定位"
-    }
-  },
+  // plugins: {
+  //   chooseLocation: {
+  //     version: "1.0.10",
+  //     provider: "wx76a9a06e5b4e693e"
+  //   },
+  // },
+  // permission: {
+  //   "scope.userLocation": {
+  //     desc: "你的位置信息将用于小程序定位"
+  //   }
+  // },
   "lazyCodeLoading": "requiredComponents"
 }

+ 15 - 15
src/app.jsx

@@ -7,7 +7,7 @@ import './app.less'
 import 'taro-skeleton/dist/index.css'
 import Taro from "@tarojs/taro";
 
-import { getWxConfig } from './utils/servers/servers';
+// import { getWxConfig } from './utils/servers/servers';
 
 import 'taro-ui/dist/style/components/drawer.scss';
 import 'taro-ui/dist/style/components/list.scss';
@@ -66,20 +66,20 @@ class App extends Component {
     Taro.closeSocket();
   }
 
-  getWxConfig() {
-    getWxConfig({}).then(v => {
-      if (v.error.length === 0) {
-        Taro.setStorageSync("wxConfig", v.data || {});
-      } else {
-        Taro.showToast({
-          title: v.error[0].message,
-          icon: 'none'
-        })
-      }
-    }).catch((error) => {
-      console.log(error)
-    })
-  }
+  // getWxConfig() {
+  //   getWxConfig({}).then(v => {
+  //     if (v.error.length === 0) {
+  //       Taro.setStorageSync("wxConfig", v.data || {});
+  //     } else {
+  //       Taro.showToast({
+  //         title: v.error[0].message,
+  //         icon: 'none'
+  //       })
+  //     }
+  //   }).catch((error) => {
+  //     console.log(error)
+  //   })
+  // }
 
   getStorageSync() {
     let token = Taro.getStorageSync('token');

+ 1 - 1
src/components/common/userquery/index.jsx

@@ -47,7 +47,7 @@ class UserQuery extends Component {
       .then((msg) => {
         if (msg.error.length === 0) {
           this.setState({
-            list: msg.data
+            list: msg
           })
         } else {
           Taro.showToast({ title: msg.error[0].message, icon: "none" });

+ 33 - 33
src/components/historicalClock/index.jsx

@@ -5,7 +5,7 @@ import Taro from "@tarojs/taro";
 
 import './index.less';
 
-import { getListPublicReleaseLog } from '../../utils/servers/servers';
+// import { getListPublicReleaseLog } from '../../utils/servers/servers';
 
 import "taro-ui/dist/style/components/icon.scss";
 import { getClockState } from "../../utils/tools";
@@ -18,43 +18,43 @@ class HistoricalClock extends Component {
     this.state = {
       publicReleaseLog: []
     }
-    this.getListPublicReleaseLog = this.getListPublicReleaseLog.bind(this);
+    // this.getListPublicReleaseLog = this.getListPublicReleaseLog.bind(this);
   }
 
   componentDidMount() {
-    this.getListPublicReleaseLog();
+    // this.getListPublicReleaseLog();
   }
 
-  getListPublicReleaseLog() {
-    Taro.showLoading({
-      title: '加载中...'
-    })
-    getListPublicReleaseLog({
-      id: this.props.id
-    }).then(v => {
-      Taro.hideLoading();
-      if (v.error.length === 0) {
-        for (let d of v.data) {
-          let list = [];
-          for (let i of (d.photoUrl || '').split(',')) {
-            if (i) {
-              list.push({ 'url': resourceAddress + i })
-            }
-          }
-          d.photoUrl = list;
-        }
-        this.setState({
-          publicReleaseLog: v.data,
-        })
-      } else {
-        Taro.showToast({ title: v.error[0].message, icon: 'none' })
-      }
-    }).catch(err => {
-      Taro.hideLoading();
-      Taro.showToast({ title: '系统错误.请稍后重试', icon: 'none' })
-      //console.log(err)
-    })
-  }
+  // getListPublicReleaseLog() {
+  //   Taro.showLoading({
+  //     title: '加载中...'
+  //   })
+  //   getListPublicReleaseLog({
+  //     id: this.props.id
+  //   }).then(v => {
+  //     Taro.hideLoading();
+  //     if (v.error.length === 0) {
+  //       for (let d of v.data) {
+  //         let list = [];
+  //         for (let i of (d.photoUrl || '').split(',')) {
+  //           if (i) {
+  //             list.push({ 'url': resourceAddress + i })
+  //           }
+  //         }
+  //         d.photoUrl = list;
+  //       }
+  //       this.setState({
+  //         publicReleaseLog: v.data,
+  //       })
+  //     } else {
+  //       Taro.showToast({ title: v.error[0].message, icon: 'none' })
+  //     }
+  //   }).catch(err => {
+  //     Taro.hideLoading();
+  //     Taro.showToast({ title: '系统错误.请稍后重试', icon: 'none' })
+  //     //console.log(err)
+  //   })
+  // }
 
   render() {
     return (

+ 6 - 6
src/pages/detail/index.jsx

@@ -39,10 +39,10 @@ class Detail extends Component {
     recordDetails({
       id: this.$instance.router.params.id,
     }).then((v) => {
-      if (v.data.code === 200) {
-        if (v.data.data) {
+      if (v.code === 200) {
+        if (v.data) {
           this.setState({
-            data: v.data.data
+            data: v.data
           })
         } else {
           setTimeout(() => {
@@ -57,7 +57,7 @@ class Detail extends Component {
           });
         }
       } else {
-        Taro.showToast({ title: v.data.msg, icon: "none" });
+        Taro.showToast({ title: v.msg, icon: "none" });
       }
     })
       .catch((err) => {
@@ -78,14 +78,14 @@ class Detail extends Component {
       content: this.state.opinion,
     })
       .then((v) => {
-        if (v.data.code === 200) {
+        if (v.code === 200) {
           Taro.showToast({
             title: "操作成功",
             icon: "none",
           });
           this.getReleasetDails();
         } else {
-          Taro.showToast({ title: v.data.msg, icon: "none" });
+          Taro.showToast({ title: v.msg, icon: "none" });
         }
       })
       .catch((err) => {

+ 7 - 8
src/pages/login/index.jsx

@@ -69,7 +69,7 @@ class Login extends Component {
       withSubscriptions: true,
       success: (res) => {
         if (res.subscriptionsSetting.mainSwitch) {
-          if (res.subscriptionsSetting['2L9AJWl2yNfgd83Fw_f_E6HiaEvPf109iw_xFtI8PXI'] === "reject" ) {
+          if (res.subscriptionsSetting['2L9AJWl2yNfgd83Fw_f_E6HiaEvPf109iw_xFtI8PXI'] === "reject") {
             this.setState({
               isOpened: true,
               loading: false,
@@ -146,9 +146,8 @@ class Login extends Component {
 
   getInfo() {
     getInfo({}).then((msg) => {
-      if (msg.data.code === 200) {
-
-        if (!msg.data.user.openId) {
+      if (msg.code === 200) {
+        if (!msg.user.openId) {
           Taro.login({
             success: (res) => {
               setOpenId({
@@ -157,7 +156,7 @@ class Login extends Component {
                 if (v.error.length === 0) {
                   this.setUsernameList(this.state.username, this.state.password);
                   Taro.eventCenter.trigger('getStorageSync');
-                  // this.getWorkingHours(msg.data.departmentId);
+                  // this.getWorkingHours(msg.departmentId);
                 } else {
                   Taro.showToast({
                     title: v.error[0].message,
@@ -173,12 +172,12 @@ class Login extends Component {
         } else {
           this.setUsernameList(this.state.username, this.state.password);
           Taro.eventCenter.trigger('getStorageSync');
-          // this.getWorkingHours(msg.data.departmentId);
+          // this.getWorkingHours(msg.departmentId);
         }
 
         // let obj = Taro.getStorageSync('userInfor');
-        // obj.workTimeInfor = msg.data.user;
-        Taro.setStorageSync('userInfor', msg.data.user);
+        // obj.workTimeInfor = msg.user;
+        Taro.setStorageSync('userInfor', msg.user);
         Taro.switchTab({
           url: '/pages/project/index',
         })

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

@@ -35,8 +35,8 @@ class Examine extends Component {
     this.state = {
       typeList: [
         { title: '全部', type: 0 },
-        { title: '审核', type: 2 },
-        { title: '未审核', type: 1 }],
+        { title: '审核', type: 2 },
+        { title: '已审核', type: 1 },],
       current: 0,
       list: [],
       pageNum: 1,
@@ -95,29 +95,29 @@ class Examine extends Component {
       }
     }
     let msg = await listRecord(data);
-    if (msg.data.code === 200) {
-      if (msg.data.total === 0) {
+    if (msg.code === 200) {
+      if (msg.total === 0) {
         this.setState({
           listState: 'NO_DATA'
         })
-      } else if (msg.data.total === this.state.list.length && pageNum !== 1) {
+      } else if (msg.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) {
+        if (msg.total === (pageNum === 1 ? msg.rows : this.state.list.concat(msg.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
+        list: pageNum === 1 ? msg.rows : this.state.list.concat(msg.rows),
+        pageNum: msg.rows.length === 0 ? this.state.pageNum : msg.next - 1
       })
     } else {
-      Taro.showToast({ title: msg.data.msg, icon: 'none' });
+      Taro.showToast({ title: msg.msg, icon: 'none' });
       this.setState({
         // listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
       })

+ 7 - 7
src/pages/project/index.jsx

@@ -92,29 +92,29 @@ class Project extends Component {
       }
     }
     let msg = await getProjectList(data);
-    if (msg.data.code === 200) {
-      if (msg.data.total === 0) {
+    if (msg.code === 200) {
+      if (msg.total === 0) {
         this.setState({
           listState: 'NO_DATA'
         })
-      } else if (msg.data.total === this.state.list.length && pageNum !== 1) {
+      } else if (msg.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) {
+        if (msg.total === (pageNum === 1 ? msg.rows : this.state.list.concat(msg.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
+        list: pageNum === 1 ? msg.rows : this.state.list.concat(msg.rows),
+        pageNum: msg.rows.length === 0 ? this.state.pageNum : msg.next - 1
       })
     } else {
-      Taro.showToast({ title: msg.data.msg, icon: 'none' });
+      Taro.showToast({ title: msg.msg, icon: 'none' });
       this.setState({
         // listState: msg.error[0].field === '403' ? 'NO_DATA' : 'RELOAD'
       })

+ 17 - 0
src/pages/punchClock/index.less

@@ -67,6 +67,23 @@
       flex-direction: column;
       // flex-flow: row nowrap;
       align-items: center;
+      
+      .item{
+
+        .item_name{
+          width: 80%;
+          margin-right: 5%;
+          font-size: 32px;
+          font-weight: bolder;
+          
+        }
+
+        .item_bt{
+          position: absolute;
+          right: 0;
+        }
+
+      }
     }
 
     .userAvatarUrl {

+ 18 - 14
src/pages/punchClock/punchClocks.jsx

@@ -10,7 +10,7 @@ import Skeleton from 'taro-skeleton'
 import HistoricalClock from '../../components/historicalClock';
 import ImagePicker from '../../components/common/imagePicker';
 import { add, minus, asyncAdd } from '../../actions/counter'
-import { recordAdd, myDuration, } from '../../utils/servers/servers';
+import { recordAdd, myDuration, getInfo, } from '../../utils/servers/servers';
 import './index.less';
 import 'taro-ui/dist/style/components/noticebar.scss';
 import 'taro-ui/dist/style/components/icon.scss';
@@ -18,8 +18,6 @@ import 'taro-ui/dist/style/components/list.scss';
 import "taro-ui/dist/style/components/radio.scss";
 import "taro-ui/dist/style/components/icon.scss";
 
-import { getClockState, getNewOptions } from "../../utils/tools";
-
 @connect(({ counter }) => ({
   counter
 }), (dispatch) => ({
@@ -40,10 +38,10 @@ class PunchClocks extends Component {
     this.state = {
       imgs: [],
       loading: false,
-      selector: ['调研阶段',],
+      selector: [{ value: 0, lable: "调研阶段" },],
       dateSel: "",
       duration: "",
-      selectorChecked: "",
+      selectorChecked: {},
       remark: "",
       data: {},
     }
@@ -54,9 +52,15 @@ class PunchClocks extends Component {
 
   componentDidMount() {
     this.imagePickerRef && this.imagePickerRef.clear();
-    this.getMyDuration();
+    // this.getMyDuration();
+    this.getInfo()
   }
 
+  getInfo() {
+    getInfo().then(v => {
+
+    })
+  }
 
   getMyDuration() {
     myDuration().then(v => {
@@ -109,7 +113,7 @@ class PunchClocks extends Component {
     Taro.showLoading({ title: '打卡中...' });
     recordAdd({
       pid: this.state.data.id,
-      projectStatus: this.state.selectorChecked,
+      projectStatus: this.state.selectorChecked.value,
       duration: this.state.duration,
       content: this.state.remark,
       annexUrl: this.state.imgs.join(','),
@@ -183,8 +187,8 @@ class PunchClocks extends Component {
                   </View>
                 </View> :
                 <View className='headerContent'>
-                  <View className='item'>
-                    <View style={{ fontSize: "15px" }}>{data.name}</View>
+                  <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
+                    <View className="item_name">{data.name}</View>
                     <AtButton type="primary" size="small"
                       onClick={() => {
                         Taro.switchTab({
@@ -210,27 +214,27 @@ class PunchClocks extends Component {
 
                   <View className='items'>
                     <View className='ititle'>研发工时:
-                      <Input value={this.state.duration} type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }}
+                      <Input value={this.state.duration} type='digit' className='input' placeholder='请输入' style={{ textAlign: "center", border: "1px solid #d6e4ef" }}
                         onInput={e => {
                           this.setState({
                             duration: e.detail.value
                           })
                         }}
                       />小时&nbsp;
-                      <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
+                      <Text style={{ color: "red", fontSize: "10px" }}>注:工时可含1个小数点</Text>
                     </View>
                   </View>
 
                   <View className='item'>
                     <View className='ititle'>研发阶段:
-                      <Picker mode='selector' range={this.state.selector}
+                      <Picker mode='selector' range={this.state.selector} rangeKey="lable"
                         onChange={e => {
                           this.setState({
                             selectorChecked: this.state.selector[e.detail.value]
                           })
                         }}>
                         <View className='picker'>
-                          {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
+                          {!!this.state.selectorChecked.lable ? this.state.selectorChecked.lable : "请选择"}
                         </View>
                       </Picker>
                     </View>
@@ -240,7 +244,7 @@ class PunchClocks extends Component {
                     <View className='ititles'>研发记录:
                       <Textarea
                         value={this.state.remark}
-                        style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight
+                        style='background:#fff;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px' autoHeight
                         onInput={e => {
                           this.setState({
                             remark: e.detail.value

+ 3 - 100
src/utils/servers/servers.js

@@ -13,14 +13,14 @@ export const login = (res) => {
         username: res.username,
         password: res.password,
       });
-      if (msg.data.code == 200) {
-        Taro.setStorageSync('token', msg.data.token);
+      if (msg.code == 200) {
+        Taro.setStorageSync('token', msg.token);
         Taro.hideLoading();
         Taro.showToast({ title: '登录成功', icon: 'success' })
         resolve(msg);
       } else {
         Taro.hideLoading();
-        Taro.showToast({ title: msg.data.msg, icon: 'none' })
+        Taro.showToast({ title: msg.msg, icon: 'none' })
         reject();
       }
     } catch (err) {
@@ -77,100 +77,3 @@ export const examineRecord = (postData = {}) => {
   return HTTPREQUEST.post('/api/project/examineRecord', postData)
 }
 
-
-
-
-
-// 查询客户订单
-export const getOrderByUid = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/release/selectOrderByUid', postData)
-}
-export const getUserByName = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/customer/getUserByNames', postData)
-}
-
-export const getadminByName = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/customer/listAdminByName', postData)
-}
-
-export const addPublicRelease = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/addPublicRelease', postData)
-}
-
-//获取最近打卡信息
-export const getPunchClockInfo = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/release/getMyNewPublic', postData)
-}
-
-export const getPublicReleaseList = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/release/listPublicRelease', postData)
-}
-
-export const publicReleaseClockIn = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/publicReleaseClockIn', postData)
-}
-
-// 公出审批
-export const examinePublicRelease = (isSuperior = true, postData = {}) => {
-  return HTTPREQUEST.post(isSuperior ? '/api/admin/release/examinePublicRelease' : '/api/admin/release/MarketersExamine', postData)
-}
-
-//获取外出公出详情
-export const getReleasetDails = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/release/dtails', postData)
-}
-
-//获取公出日志
-export const getListPublicReleaseLog = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/release/listPublicReleaseLog', postData)
-}
-
-//修改公出申请
-export const updatePublicRelease = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/updatePublicRelease', postData)
-}
-
-//外出未读
-export const getPublicReleaseUnread = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/notice/publicReleaseUnread', postData)
-}
-
-//获取知道部门作息时间
-export const getWorkingHours = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/department/workingHours/get', postData)
-}
-
-//获取部门作息列表
-export const getWorkingHoursList = (postData = {}) => {
-  return HTTPREQUEST.get('/api/admin/department/workingHours/list', postData)
-}
-
-//获取微信参数
-export const getWxConfig = (postData = {}) => {
-  return HTTPREQUEST.get('/open/getWxConfig', postData)
-}
-
-//测试
-export const test = (postData = {}) => {
-  return HTTPREQUEST.get('/open/getVCode', postData)
-}
-
-//技术协单驳回
-export const techReject = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/techReject', postData)
-}
-
-//新增协单助力
-export const addAssistant = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/addAssistant', postData)
-}
-
-//删除协单助力
-export const deleteAssistant = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/deleteAssistant', postData)
-}
-
-//修改公出地址
-export const updateLocation = (postData = {}) => {
-  return HTTPREQUEST.post('/api/admin/release/updateLocation', postData)
-}