|
@@ -11,6 +11,18 @@ export const customsdeclarationList = (current, size, params) => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
+// 列表
|
|
|
+export const GmyList = (current, size, params) => {
|
|
|
+ return request({
|
|
|
+ url: '/api/blade-los/gmyDataExchangApi/list',
|
|
|
+ method: 'get',
|
|
|
+ params: {
|
|
|
+ ...params,
|
|
|
+ current,
|
|
|
+ size,
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
// 详情
|
|
|
export const customsdeclarationDetail = (id) => {
|
|
|
return request({
|
|
@@ -31,7 +43,6 @@ export const customsdeclarationRemove = (ids) => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-// 保存
|
|
|
export const customsdeclarationSubmit = (row) => {
|
|
|
return request({
|
|
|
url: '/api/blade-los/customsdeclaration/submit',
|
|
@@ -39,6 +50,14 @@ export const customsdeclarationSubmit = (row) => {
|
|
|
data: row
|
|
|
})
|
|
|
}
|
|
|
+// 导入
|
|
|
+export const gmyImportDecl = (row) => {
|
|
|
+ return request({
|
|
|
+ url: '/api/blade-los/gmyDataExchangApi/importDecl',
|
|
|
+ method: 'post',
|
|
|
+ params: row
|
|
|
+ })
|
|
|
+}
|
|
|
// 单据请核
|
|
|
export const checkCustomsDeclaration = (row) => {
|
|
|
return request({
|