Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
5fdcaef2
Commit
5fdcaef2
authored
Feb 27, 2025
by
honghy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求115 后台-集运-包裹列表-操作-费用申请
parent
0825b78f
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
216 additions
and
111 deletions
+216
-111
consApproval.js
src/api/ecw/consApproval.js
+63
-0
consFee.js
src/api/ecw/consFee.js
+63
-0
FeeApplicationCons.vue
src/views/ecw/cons/components/FeeApplicationCons.vue
+89
-110
index.vue
src/views/ecw/cons/index.vue
+1
-1
No files found.
src/api/ecw/consApproval.js
0 → 100644
View file @
5fdcaef2
import
request
from
'
@/utils/request
'
// 创建集运包裹审批内容
export
function
createConsApproval
(
data
)
{
return
request
({
url
:
'
/ecw/cons-approval/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新集运包裹审批内容
export
function
updateConsApproval
(
data
)
{
return
request
({
url
:
'
/ecw/cons-approval/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除集运包裹审批内容
export
function
deleteConsApproval
(
id
)
{
return
request
({
url
:
'
/ecw/cons-approval/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得集运包裹审批内容
export
function
getConsApproval
(
id
)
{
return
request
({
url
:
'
/ecw/cons-approval/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得集运包裹审批内容列表
export
function
getConsApprovalList
(
query
)
{
return
request
({
url
:
'
/ecw/cons-approval/getConsApprovalList
'
,
method
:
'
get
'
,
params
:
query
})
}
// 获得集运包裹审批内容分页
export
function
getConsApprovalPage
(
query
)
{
return
request
({
url
:
'
/ecw/cons-approval/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出集运包裹审批内容 Excel
export
function
exportConsApprovalExcel
(
query
)
{
return
request
({
url
:
'
/ecw/cons-approval/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/api/ecw/consFee.js
0 → 100644
View file @
5fdcaef2
import
request
from
'
@/utils/request
'
// 创建包裹费用
export
function
createConsFee
(
data
)
{
return
request
({
url
:
'
/ecw/cons-fee/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新包裹费用
export
function
updateConsFee
(
data
)
{
return
request
({
url
:
'
/ecw/cons-fee/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除包裹费用
export
function
deleteConsFee
(
id
)
{
return
request
({
url
:
'
/ecw/cons-fee/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得包裹费用
export
function
getConsFee
(
id
)
{
return
request
({
url
:
'
/ecw/cons-fee/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得包裹费用
export
function
getConsFeeList
(
query
)
{
return
request
({
url
:
'
/ecw/cons-fee/getConsFeeList
'
,
method
:
'
get
'
,
params
:
query
})
}
// 批量申请费用
export
function
createFeeBatchApplication
(
data
)
{
return
request
({
url
:
"
/ecw/cons-fee/create/batch
"
,
method
:
"
post
"
,
data
:
data
})
}
// 导出包裹费用 Excel
export
function
exportConsFeeExcel
(
query
)
{
return
request
({
url
:
'
/ecw/cons-fee/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/views/ecw/cons/components/FeeApplicationCons.vue
View file @
5fdcaef2
This diff is collapsed.
Click to expand it.
src/views/ecw/cons/index.vue
View file @
5fdcaef2
...
...
@@ -254,7 +254,7 @@
<Transmutation
:showException.sync=
"showException"
:id=
"id"
@
determine=
"getList"
></Transmutation>
<SpecialNeedsCons
:showSpecialNeedsCons.sync=
"showSpecialNeedsCons"
:currency=
"JSON.stringify(currencyList)"
:consId=
"id"
:consNum=
"consNum"
@
determine=
"getList"
></SpecialNeedsCons>
<SpecialNeedsConsLook
:showSpecialNeedsConsLook.sync=
"showSpecialNeedsConsLook"
:consNum=
"consNum"
:consId=
"id"
></SpecialNeedsConsLook>
<fee-application-cons
v-if=
"feeApplicationBol"
:
order-i
d=
"id"
:currencys=
"JSON.stringify(currencyList)"
:dialog-visible.sync=
"feeApplicationBol "
@
refresh=
"getList"
></fee-application-cons>
<fee-application-cons
v-if=
"feeApplicationBol"
:
consI
d=
"id"
:currencys=
"JSON.stringify(currencyList)"
:dialog-visible.sync=
"feeApplicationBol "
@
refresh=
"getList"
></fee-application-cons>
</div>
</template>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment