12345678910111213141516171819202122232425262728293031323334353637383940 |
- import request from "@/utils/request"
- // 获取黄历信息
- export const getDrawLots = (params) => {
- return request({
- url: '/api/parse/get-calendar-info',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 获取手账记录
- export const getCalendarRecord = (params) => {
- return request({
- url: '/api/parse/get-calendar-record',
- method: 'GET',
- params,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
- // 保存手账记录
- export const saveCalendarRecord = (data) => {
- return request({
- url: '/api/parse/save-calendar-record',
- method: 'POST',
- data,
- custom: {
- showLoading: false,
- auth: false
- }
- })
- }
|