gaoshp
2024-04-07 f95cb3403f98d2202343832f37b514ba48f755e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * @Date: 2024-04-04 23:26:03
 * @LastEditors: Sneed
 * @LastEditTime: 2024-04-04 23:33:51
 * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/api/model/calender.js
 */
import config from "@/config"
import http from "@/utils/request"
 
export default {
    getList: {
        url: `${config.API_URL}/blade-cps/calendar/page`,
        name: "获取日历列表",
        post: async function(data,params){
            return await http.post(this.url, data, {params});
        },
    },
}