drawLots.js 273 B

123456789101112131415
  1. import request from "@/utils/request"
  2. // 获取日历
  3. export const getDrawLots = (params) => {
  4. return request({
  5. url: '/api/parse/get-calendar-info',
  6. method: 'GET',
  7. params,
  8. baseURL: 'http://192.168.3.80',
  9. custom: {
  10. showLoading: false,
  11. auth: false
  12. }
  13. })
  14. }