Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
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
罗超
SuperMan
Commits
751b50ed
Commit
751b50ed
authored
Feb 14, 2025
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
186d792e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
2 deletions
+47
-2
dataCount.vue
src/components/rank/dataCount.vue
+0
-1
salesVolumeRank.vue
src/components/rank/salesVolumeRank.vue
+47
-1
No files found.
src/components/rank/dataCount.vue
View file @
751b50ed
...
...
@@ -961,7 +961,6 @@ export default {
// }
// this.OpenNewPage('/salesVolumeRank',query)
// }
query
=
{
CStartDate
:
this
.
parameters
.
dateRange
[
0
],
CEndDate
:
this
.
parameters
.
dateRange
[
1
],
...
...
src/components/rank/salesVolumeRank.vue
View file @
751b50ed
...
...
@@ -3,7 +3,7 @@
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
:label=
"$t('sm.Personalrank')"
name=
"first"
></el-tab-pane>
<el-tab-pane
:label=
"$t('sm.derprank')"
name=
"second"
></el-tab-pane>
<el-tab-pane
:label=
"$t('sm.companyrank')"
name=
"third"
></el-tab-pane>
<el-tab-pane
:label=
"$t('sm.companyrank')"
name=
"third"
></el-tab-pane>
<el-tab-pane
:label=
"$t('sm.salerank')"
name=
"four"
></el-tab-pane>
</el-tabs>
<div
class=
"query-box"
>
...
...
@@ -92,12 +92,24 @@
<el-table-column
property=
"zanBi"
:label=
"$t('objFill.v101.SalesModule.xiaosouezb')"
width=
""
>
</el-table-column>
<el-table-column
property=
"CustomerCount"
label=
"客户总数"
width=
""
>
<
template
slot-scope=
"scope"
>
<div
class=
"clickText"
@
click=
"gotoCustomer(scope.row,1)"
>
{{
scope
.
row
.
CustomerCount
}}
</div>
</
template
>
</el-table-column>
<el-table-column
property=
"TodayAddCustomer"
label=
"今日新增"
width=
""
>
<
template
slot-scope=
"scope"
>
<div
class=
"clickText"
@
click=
"gotoCustomer(scope.row,2)"
>
{{
scope
.
row
.
TodayAddCustomer
}}
</div>
</
template
>
</el-table-column>
<el-table-column
property=
"MiniAppCount"
label=
"小程序激活数"
width=
""
>
<
template
slot-scope=
"scope"
>
<div
class=
"clickText"
@
click=
"gotoCustomer(scope.row,3)"
>
{{
scope
.
row
.
MiniAppCount
}}
</div>
</
template
>
</el-table-column>
<el-table-column
property=
"MiniAppAdd"
label=
"今日激活数"
width=
""
>
<
template
slot-scope=
"scope"
>
<div
class=
"clickText"
@
click=
"gotoCustomer(scope.row,4)"
>
{{
scope
.
row
.
TodayAddCustomer
}}
</div>
</
template
>
</el-table-column>
<el-table-column
property=
"OrderCount"
label=
"团队订单数"
width=
""
>
</el-table-column>
...
...
@@ -217,6 +229,40 @@
goUrl
(
name
,
rowData
)
{
if
(
name
==
'salesVolumeRankEntryForm'
)
this
.
customCompFunc
(
rowData
)
},
gotoCustomer
(
item
,
type
)
{
let
Time
=
[
this
.
getBeforeDate
(
0
,
new
Date
().
Format
(
"yyyy-MM-dd"
)),
this
.
getBeforeDate
(
0
,
new
Date
().
Format
(
"yyyy-MM-dd"
))]
let
query
=
{};
//客户总数
if
(
type
==
1
)
{
query
=
{
blank
:
"y"
,
}
}
//今日新增
else
if
(
type
==
2
)
{
query
=
{
EnterTime
:
Time
,
blank
:
"y"
,
}
}
//小程序激活数
else
if
(
type
==
3
)
{
query
=
{
activation
:
1
,
blank
:
"y"
,
}
}
//今日激活数
else
if
(
type
==
4
)
{
query
=
{
activationTime
:
Time
,
activation
:
1
,
blank
:
"y"
,
}
}
this
.
OpenNewPage
(
'/customerTransfer'
,
query
)
},
customCompFunc
(
rowData
)
{
this
.
$router
.
push
({
path
:
"/salesVolumeRankEntryForm"
,
...
...
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