Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-06-17 15:03:01 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
395f54d43fe5e55ed7eb93ea4b155bb1a95c8cab
395f54d4
1 parent
32d5d4b9
feat: 新增PDD
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
1 deletions
src/api/pdd-info.js
src/router/index.js
src/views/pdd-info/detail.vue
src/views/pdd-info/index.vue
src/api/pdd-info.js
0 → 100644
View file @
395f54d
import
request
from
"@/utils/request"
;
// GET
// /customerDeclareData/info/{customerDeclareDataId}
// 查询客户申报数据信息
export
function
getCustomerDeclareDataId
({
customerDeclareDataId
})
{
return
request
({
url
:
`/bus-customer/customerDeclareData/info/
${
customerDeclareDataId
}
`
,
method
:
"get"
,
});
}
// POST
// /customerDeclareData/search
// 查询客户申报数据列表
export
function
getPddInfo
(
data
)
{
return
request
({
url
:
"/bus-customer/customerDeclareData/search"
,
method
:
"post"
,
data
:
data
,
});
}
src/router/index.js
View file @
395f54d
...
...
@@ -5,7 +5,6 @@ Vue.use(Router);
/* Layout */
import
Layout
from
"@/layout"
;
import
ParentView
from
"@/components/ParentView"
;
/**
* Note: 路由配置项
...
...
@@ -198,6 +197,14 @@ export const constantRoutes = [
hidden
:
true
,
meta
:
{
title
:
"运抵详情"
,
icon
:
""
},
},
{
path
:
"/pdd-detail"
,
component
:
(
resolve
)
=>
require
([
"@/views/pdd-info/detail.vue"
],
resolve
),
name
:
"PddListDetail"
,
hidden
:
true
,
meta
:
{
title
:
"PDD数据详情"
,
icon
:
""
},
},
],
},
{
...
...
src/views/pdd-info/detail.vue
View file @
395f54d
This diff is collapsed. Click to expand it.
src/views/pdd-info/index.vue
View file @
395f54d
This diff is collapsed. Click to expand it.
Please
register
or
login
to post a comment