Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust_web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
张伯涛
cust_web
Commits
0c0a216a
Commit
0c0a216a
authored
Jan 24, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改订单
parent
ef46a1cd
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
855 additions
and
134 deletions
+855
-134
cmsOrder.js
src/api/contentManagement/cmsOrder.js
+67
-0
index.vue
src/views/operationsManagement/cmsExceptionOrder/index.vue
+544
-0
index.vue
src/views/operationsManagement/cmsOrder/index.vue
+244
-134
No files found.
src/api/contentManagement/cmsOrder.js
View file @
0c0a216a
...
@@ -66,3 +66,70 @@ export function exportCmsOrder(query) {
...
@@ -66,3 +66,70 @@ export function exportCmsOrder(query) {
responseType
:
'blob'
responseType
:
'blob'
})
})
}
}
// 7. 查询异常订单信息表列表
export
function
listExceptionCmsOrder
(
query
)
{
return
request
({
url
:
'/cmsOrder/selectErrorOrderByPagination'
,
method
:
'get'
,
params
:
query
})
}
// 8.退款补偿
export
function
refundReimbursement
(
ids
)
{
return
request
({
url
:
'/cmsOrder/refundReimbursement'
,
method
:
'get'
,
params
:
{
// 修改为使用params来传递查询参数
ids
:
Array
.
isArray
(
ids
)
?
ids
.
join
(
','
)
:
ids
// 如果ids是数组,则将其转换为逗号分隔的字符串
}
})
}
// 9.支付确认
export
function
payConfirm
(
data
)
{
return
request
({
url
:
'/cmsOrder/order/payConfirm'
,
method
:
'post'
,
headers
:
{
'Content-Type'
:
'application/json'
},
data
:
data
})
}
// 9.人工退单
export
function
chargebacks
(
data
)
{
return
request
({
url
:
'/cmsOrder/cancel'
,
method
:
'post'
,
headers
:
{
'Content-Type'
:
'application/json'
},
data
:
data
})
}
// 9.人工退单
export
function
refundConfirm
(
data
)
{
return
request
({
url
:
'/cmsOrder/order/refundConfirm'
,
method
:
'post'
,
headers
:
{
'Content-Type'
:
'application/json'
},
data
:
data
})
}
// 9.异常订单补偿
export
function
manualCompensateOrder
(
data
)
{
return
request
({
url
:
'/cmsOrder/manualCompensateOrder'
,
method
:
'post'
,
headers
:
{
'Content-Type'
:
'application/json'
},
data
:
data
})
}
src/views/operationsManagement/cmsExceptionOrder/index.vue
0 → 100644
View file @
0c0a216a
This diff is collapsed.
Click to expand it.
src/views/operationsManagement/cmsOrder/index.vue
View file @
0c0a216a
This diff is collapsed.
Click to expand it.
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