Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
Overview
Overview
Details
Activity
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
marketing-web
marketing
Commits
bef71fc1
Commit
bef71fc1
authored
Oct 29, 2021
by
liuchenxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 表格排序
parent
ee785ef8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
validateNum.js
src/mixins/validateNum.js
+1
-2
touch-clue.vue
src/views/ecm/touch-clue.vue
+2
-2
No files found.
src/mixins/validateNum.js
View file @
bef71fc1
...
...
@@ -13,8 +13,7 @@ export default {
return
val
=>
parseFloat
(
val
||
0
).
toLocaleString
(
'zh'
,
{
minimumFractionDigits
:
2
});
},
timeLimit
()
{
return
true
;
// return this.$route.query.createTime > 1635436800000;
return
this
.
$route
.
query
.
createTime
>
1635436800000
;
}
}
};
src/views/ecm/touch-clue.vue
View file @
bef71fc1
...
...
@@ -236,8 +236,8 @@ export default {
{
label
:
{
name
:
'触达顾客转化人数'
,
tipText
:
convMbrText
},
prop
:
'convMbrNum'
,
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
this
.
formatterNum
(
row
.
convMbrNum
)
},
{
label
:
{
name
:
'触达顾客订单数'
,
tipText
:
convOrderText
},
prop
:
'convOrderCnt'
,
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
this
.
formatterNum
(
row
.
convOrderCnt
)
},
{
label
:
{
name
:
'触达顾客转化收益'
,
tipText
:
convSalesText
},
prop
:
'convSalesAmt'
,
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
this
.
formatterNumAndFixed
(
row
.
convSalesAmt
)
},
{
label
:
{
name
:
'客单价'
,
tipText
:
customrPriceText
},
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
this
.
formatterNumAndFixed
(
row
.
customrPrice
)
},
{
label
:
{
name
:
'连带率'
,
tipText
:
relatedRateText
},
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
(
this
.
timeLimit
&&
row
.
relatedRate
!=
'--'
?
this
.
formatterNumAndFixed
(
row
.
relatedRate
)
:
'--'
)
}
{
label
:
{
name
:
'客单价'
,
tipText
:
customrPriceText
},
prop
:
'customerUnitPrice'
,
align
:
'left'
,
sortable
:
'custom'
,
formatter
:
row
=>
this
.
formatterNumAndFixed
(
row
.
customrPrice
)
},
{
label
:
{
name
:
'连带率'
,
tipText
:
relatedRateText
},
prop
:
'jointRate'
,
align
:
'left'
,
sortable
:
this
.
timeLimit
?
'custom'
:
false
,
formatter
:
row
=>
(
this
.
timeLimit
&&
row
.
relatedRate
!=
'--'
?
this
.
formatterNumAndFixed
(
row
.
relatedRate
)
:
'--'
)
}
];
}
if
(
this
.
type
.
indexOf
(
'话务'
)
!=
-
1
||
this
.
type
==
'群发'
)
{
...
...
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