servers.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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('/managesignin', {
  12. mobile:res.username,
  13. password:res.password,
  14. remeber: false
  15. });
  16. if(msg.error.length === 0){
  17. Taro.setStorageSync('token', msg.token);
  18. Taro.setStorageSync('userInfor', msg.data);
  19. Taro.hideLoading();
  20. Taro.showToast({title:'登录成功',icon:'success'})
  21. resolve(msg);
  22. }else{
  23. Taro.hideLoading();
  24. Taro.showToast({title:msg.error[0].message,icon:'none'})
  25. reject();
  26. }
  27. }catch (err) {
  28. Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
  29. Taro.hideLoading();
  30. reject();
  31. // console.log(err,'login')
  32. }
  33. })
  34. }
  35. // 查询客户订单
  36. export const getOrderByUid = (postData = {}) => {
  37. return HTTPREQUEST.get('/api/admin/release/selectOrderByUid', postData)
  38. }
  39. export const getUserByName = (postData = {}) => {
  40. return HTTPREQUEST.get('/api/admin/customer/getUserByNames', postData)
  41. }
  42. export const getadminByName = (postData = {}) => {
  43. return HTTPREQUEST.get('/api/admin/customer/listAdminByName', postData)
  44. }
  45. export const addPublicRelease = (postData = {}) => {
  46. return HTTPREQUEST.post('/api/admin/release/addPublicRelease', postData)
  47. }
  48. export const setOpenId = (postData = {}) => {
  49. return HTTPREQUEST.post('/api/admin/setOpenId', postData)
  50. }
  51. //获取最近打卡信息
  52. export const getPunchClockInfo = (postData = {}) => {
  53. return HTTPREQUEST.get('/api/admin/release/getMyNewPublic', postData)
  54. }
  55. export const getPublicReleaseList = (postData = {}) => {
  56. return HTTPREQUEST.get('/api/admin/release/listPublicRelease', postData)
  57. }
  58. export const publicReleaseClockIn = (postData = {}) => {
  59. return HTTPREQUEST.post('/api/admin/release/publicReleaseClockIn', postData)
  60. }
  61. export const examinePublicRelease = (postData = {}) => {
  62. return HTTPREQUEST.post('/api/admin/release/examinePublicRelease', postData)
  63. }
  64. //获取外出公出详情
  65. export const getReleasetDails = (postData = {}) => {
  66. return HTTPREQUEST.get('/api/admin/release/dtails', postData)
  67. }
  68. //获取公出日志
  69. export const getListPublicReleaseLog = (postData = {}) => {
  70. return HTTPREQUEST.get('/api/admin/release/listPublicReleaseLog', postData)
  71. }
  72. //修改公出申请
  73. export const updatePublicRelease = (postData = {}) => {
  74. return HTTPREQUEST.post('/api/admin/release/updatePublicRelease', postData)
  75. }
  76. //外出未读
  77. export const getPublicReleaseUnread = (postData = {}) => {
  78. return HTTPREQUEST.get('/api/admin/notice/publicReleaseUnread', postData)
  79. }
  80. //获取知道部门作息时间
  81. export const getWorkingHours = (postData = {}) => {
  82. return HTTPREQUEST.get('/api/admin/department/workingHours/get', postData)
  83. }
  84. //获取部门作息列表
  85. export const getWorkingHoursList = (postData = {}) => {
  86. return HTTPREQUEST.get('/api/admin/department/workingHours/list', postData)
  87. }
  88. //获取微信参数
  89. export const getWxConfig = (postData = {}) => {
  90. return HTTPREQUEST.get('/open/getWxConfig', postData)
  91. }
  92. //测试
  93. export const test = (postData = {}) => {
  94. return HTTPREQUEST.get('/open/getVCode', postData)
  95. }
  96. //技术协单驳回
  97. export const techReject = (postData = {}) => {
  98. return HTTPREQUEST.post('/api/admin/release/techReject', postData)
  99. }