1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| /*
| * @Date: 2024-04-07 21:49:32
| * @LastEditors: Sneed
| * @LastEditTime: 2024-04-09 22:29:57
| * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/api/model/setting.js
| */
| import config from "@/config"
| import http from "@/utils/request"
|
| export default {
| getList: {
| url: `${config.API_URL}/blade-visual/visual-comp-type/list`,
| name: "获取休息日列表",
| get: async function(){
| return await http.get(this.url);
| }
| },
|
| }
|
|