feat: 新增售后异议管理全流程功能
本次提交完成售后异议管理模块的开发,主要包括以下内容: 1. 新增售后异议主页面、待办页面和意见填写页面 2. 新增5个通用业务组件用于页面渲染 3. 新增4个业务API接口文件 4. 优化流程图表单描述、文件列表样式和钢卷信息展示 5. 完善投诉受理单的日期格式化和实体类继承
This commit is contained in:
39
klp-ui/src/api/flow/acceptCoilRel.js
Normal file
39
klp-ui/src/api/flow/acceptCoilRel.js
Normal file
@@ -0,0 +1,39 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function listAcceptCoilRel(query) {
|
||||
return request({
|
||||
url: '/flow/acceptCoilRel/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getAcceptCoilRel(relId) {
|
||||
return request({
|
||||
url: '/flow/acceptCoilRel/' + relId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
export function addAcceptCoilRel(data) {
|
||||
return request({
|
||||
url: '/flow/acceptCoilRel',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
export function updateAcceptCoilRel(data) {
|
||||
return request({
|
||||
url: '/flow/acceptCoilRel',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
export function delAcceptCoilRel(relIds) {
|
||||
return request({
|
||||
url: '/flow/acceptCoilRel/' + relIds,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user