Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CRM
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
华国豪
CRM
Commits
1eccdcb9
Commit
1eccdcb9
authored
Mar 30, 2026
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
5cca1bba
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
Home.vue
src/components/Home.vue
+15
-0
No files found.
src/components/Home.vue
View file @
1eccdcb9
...
@@ -14,6 +14,12 @@
...
@@ -14,6 +14,12 @@
@
change=
"GetRankingList"
>
@
change=
"GetRankingList"
>
<el-option
v-for=
"(x,i) in rankTypeList"
:key=
"i"
:label=
"x.name"
:value=
"x.id"
></el-option>
<el-option
v-for=
"(x,i) in rankTypeList"
:key=
"i"
:label=
"x.name"
:value=
"x.id"
></el-option>
</el-select>
</el-select>
<el-select
v-model=
"rankMsg.CustomerSourceType"
size=
"mini"
style=
"width:120px;"
placeholder=
"客户来源"
v-if=
"rankMsg.RankType==1"
@
change=
"GetRankingList"
>
<el-option
v-for=
"item in SourceEnumList"
:key=
"item.ID"
:label=
"item.Name"
:value=
"item.ID"
>
</el-option>
</el-select>
<div
class=
"time-box"
v-if=
"diyDateRange==''"
>
<div
class=
"time-box"
v-if=
"diyDateRange==''"
>
<el-button
plain
size=
"mini"
class=
"hide_input_time"
style=
"margin:0 25px;"
>
自定义日期
<el-button
plain
size=
"mini"
class=
"hide_input_time"
style=
"margin:0 25px;"
>
自定义日期
<el-date-picker
v-model=
"diyDateRange"
type=
"daterange"
align=
"right"
unlink-panels
ref=
"diydateRef"
<el-date-picker
v-model=
"diyDateRange"
type=
"daterange"
align=
"right"
unlink-panels
ref=
"diydateRef"
...
@@ -441,6 +447,7 @@
...
@@ -441,6 +447,7 @@
rankType
:
1
,
rankType
:
1
,
rankType2
:
"1"
,
rankType2
:
"1"
,
RankingList
:
[],
RankingList
:
[],
SourceEnumList
:
[],
Briefing
:
{
Briefing
:
{
model
:
{
model
:
{
TotalPrice
:
0
,
TotalPrice
:
0
,
...
@@ -536,6 +543,7 @@
...
@@ -536,6 +543,7 @@
},
},
},
},
mounted
()
{
mounted
()
{
this
.
GetCustomerSourceEnum
();
this
.
changeRankTypeHandler
();
this
.
changeRankTypeHandler
();
this
.
GetBriefing
();
this
.
GetBriefing
();
},
},
...
@@ -643,6 +651,13 @@
...
@@ -643,6 +651,13 @@
}
}
);
);
},
},
GetCustomerSourceEnum
()
{
this
.
apipost
(
"/api/Customer/GetCustomerSourceEnum"
,
{},
(
res
)
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
SourceEnumList
=
res
.
data
.
data
;
}
});
},
},
},
};
};
</
script
>
</
script
>
...
...
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