| 123456789101112131415161718 |
- import request from "@/utils/request";
- export function dataList(data) {
- return request({
- url: "/core/api/resumption/newTaskList",
- method: "post",
- data,
- });
- }
- //编辑日期作息配置
- export function editWorkTime(data) {
- return request({
- url: '/system/api/work/time/month/app/edit',
- method: 'post',
- showLoading:true,
- data
- })
- }
|