f6d2db76
yangzhi
超哥牛皮皮
|
1
2
3
4
5
6
7
8
|
import request from '@/utils/request'
export default {
deleteQuestionClass(id) {
return request({
url: `/QuestionClass/Delete?ids=${id}`,
method: 'post'
});
},
|
f7d4b60e
周超
完成维度编辑
|
9
10
11
12
13
14
15
16
17
|
}
export function getQuestionClass(params) {
return request({
url: `/QuestionClass/Get`,
method: 'get',
params
})
}
|
e011bf15
周超
我先走一步
|
18
19
20
21
22
23
24
25
|
export function GetQuestionClassByType(params) {
return request({
url: `/QuestionClass/GetQuestionClassByType`,
method: 'get',
params
})
}
|
f7d4b60e
周超
完成维度编辑
|
26
27
28
29
30
31
32
|
// 修改 | 保存
export function EditQuestionClass(params) {
return request({
url: `/QuestionClass/Update`,
method: 'post',
data: params
})
|
f6d2db76
yangzhi
超哥牛皮皮
|
33
|
}
|