1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| import request from '@/utils/request'
|
| // 列表
| export function getListData(data) {
| return request({
| url: '/placement/page',
| method: 'post',
| data
| })
| }
|
| // 导入
| export function importPlacement(data) {
| return request({
| url: '/placement/imports',
| method: 'post',
| data
| })
| }
|
| // 新增
| export function add(data) {
| return request({
| url: '/placement/add',
| method: 'post',
| data
| })
| }
|
| // 详情
| export function getDetail(data) {
| return request({
| url: '/placement/detail',
| method: 'post',
| data
| })
| }
|
| // 修改
| export function update(data) {
| return request({
| url: '/placement/edit',
| method: 'post',
| data
| })
| }
|
| // 删除
| export function del(data) {
| return request({
| url: '/placement/del',
| method: 'post',
| data
| })
| }
|
| // 根据字典类型查询字典数据信息
| export function getDictData(data) {
| return request({
| url: `/system/dict/data/type/${data}`,
| method: 'get'
| })
| }
|
|