servers.js 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* eslint-disable import/prefer-default-export */
  2. import HTTPREQUEST from "./http"
  3. import Taro from "@tarojs/taro";
  4. // 登录
  5. export const login = (res) => {
  6. return new Promise(async (resolve, reject) => {
  7. Taro.showLoading({
  8. title: '登录中...',
  9. })
  10. try {
  11. let msg = await HTTPREQUEST.post('/login', {
  12. username: res.username,
  13. password: res.password,
  14. });
  15. if (msg.code == 200) {
  16. Taro.setStorageSync('token', msg.token);
  17. Taro.hideLoading();
  18. Taro.showToast({ title: '登录成功', icon: 'success' })
  19. resolve(msg);
  20. } else {
  21. Taro.hideLoading();
  22. Taro.showToast({ title: msg.msg, icon: 'none' })
  23. reject();
  24. }
  25. } catch (err) {
  26. Taro.showToast({ title: '系统错误,请稍后重试', icon: 'none' });
  27. Taro.hideLoading();
  28. reject();
  29. // console.log(err,'login')
  30. }
  31. })
  32. }
  33. // 获取用户信息
  34. export const getInfo = (postData = {}) => {
  35. return HTTPREQUEST.get('/getInfo', postData)
  36. }
  37. // 存储openId
  38. export const setOpenId = (postData = {}) => {
  39. return HTTPREQUEST.get('/system/weChat/getOpenId', postData)
  40. }
  41. // 项目列表
  42. export const getProjectList = (postData = {}) => {
  43. return HTTPREQUEST.get('/api/project/list', postData)
  44. }
  45. // 新增项目
  46. export const projectAdd = (postData = {}) => {
  47. return HTTPREQUEST.get('/api/project/add', postData)
  48. }
  49. // 新增研发日志(打卡)
  50. export const recordAdd = (postData = {}) => {
  51. return HTTPREQUEST.post('/api/project/addRecord', postData)
  52. }
  53. // 查询打卡剩余时间
  54. export const myDuration = (postData = {}) => {
  55. return HTTPREQUEST.get('/api/project/myDuration', postData)
  56. }
  57. // 研发日志列表
  58. export const listRecord = (postData = {}) => {
  59. return HTTPREQUEST.get('/api/project/listRecord', postData)
  60. }
  61. // 研发日志详情
  62. export const recordDetails = (postData = {}) => {
  63. return HTTPREQUEST.get('/api/project/recordDetails', postData)
  64. }
  65. // 研发项目详情
  66. export const projectDetails = (postData = {}) => {
  67. return HTTPREQUEST.get('/api/project/details', postData)
  68. }
  69. // 研发日志审核
  70. export const examineRecord = (postData = {}) => {
  71. return HTTPREQUEST.post('/api/project/examineRecord', postData)
  72. }
  73. // 打卡审核日志
  74. export const listRecordLog = (postData = {}) => {
  75. return HTTPREQUEST.get('/api/project/listRecordLog', postData)
  76. }
  77. // 修改研发打卡
  78. export const updateRecord = (postData = {}) => {
  79. return HTTPREQUEST.post('/api/project/updateRecord', postData)
  80. }
  81. // 查询打卡数据
  82. export const myDurationMonth = (postData = {}) => {
  83. return HTTPREQUEST.get('/api/project/myDurationMonth', postData)
  84. }