We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a305da7 commit 15707b7Copy full SHA for 15707b7
src/api/personnel/fieldRelation.js
@@ -0,0 +1,35 @@
1
+import request from '@/utils/request'
2
+
3
+// 字段动态关系列表(完成)
4
+export function relationList(params) {
5
+ return request({
6
+ url: '/api/fieldrelation/list',
7
+ method: 'get',
8
+ params
9
+ })
10
+}
11
+// 添加字段动态关系(完成)
12
+export function relationAdd(data) {
13
14
+ url: '/api/fieldrelation/add',
15
+ method: 'post',
16
+ data
17
18
19
+// 更新字段动态关系 (完成)
20
+export function relationUp(data) {
21
22
+ url: '/api/fieldrelation/update',
23
24
25
26
27
+// 删除字段动态关系(完成)
28
+export function relationDel(data) {
29
30
+ url: '/api/fieldrelation/delete',
31
32
33
34
35
0 commit comments