Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
merchant-manage-ui
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
ui
merchant-manage-ui
Commits
f9572ccc
Commit
f9572ccc
authored
Nov 02, 2022
by
李腾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 已完成售后单不展示审核倒计时
parent
60a67312
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
data.js
src/pages/AfterSaleManage/data.js
+12
-1
index.jsx
src/pages/AfterSaleManage/index.jsx
+1
-0
No files found.
src/pages/AfterSaleManage/data.js
View file @
f9572ccc
...
...
@@ -201,8 +201,12 @@ export const getColumns = props => {
canEditable
,
openCancelAudit
,
viewCancelDetail
,
tableParams
,
}
=
props
;
return
[
const
{
dealStatus
}
=
tableParams
;
let
auditCountDown
=
[
{
title
:
'
审核倒计时
'
,
dataIndex
:
'
serviceTime
'
,
...
...
@@ -220,6 +224,13 @@ export const getColumns = props => {
);
},
},
];
// 售后状态:已完成/退款成功不展示审核倒计时
if
(
dealStatus
===
70
)
{
auditCountDown
=
[];
}
return
[
...
auditCountDown
,
{
title
:
'
售后状态
'
,
dataIndex
:
'
serviceStatus
'
,
...
...
src/pages/AfterSaleManage/index.jsx
View file @
f9572ccc
...
...
@@ -297,6 +297,7 @@ const AfterSale = props => {
canEditable
,
openCancelAudit
,
viewCancelDetail
,
tableParams
,
});
// 表格属性
...
...
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