Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
92d5f9de
Commit
92d5f9de
authored
Feb 23, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
3e749111
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
7 deletions
+29
-7
mystu.vue
src/pages/sale/mystu.vue
+5
-1
visitTransform.vue
src/pages/sale/visitTransform.vue
+20
-6
student.vue
src/pages/school/student.vue
+4
-0
No files found.
src/pages/sale/mystu.vue
View file @
92d5f9de
...
...
@@ -144,7 +144,8 @@
StuStage
:
""
,
//客户阶段
StartTime
:
""
,
//开始时间
EndTime
:
""
,
//结束时间
CustomerId
:
0
,
CustomerId
:
0
,
//同行联系人编号
CategoryId
:
""
,
//同行编号
QQ
:
""
,
WechatNo
:
""
,
StuType
:
""
,
...
...
@@ -219,6 +220,9 @@
if
(
this
.
$route
.
query
.
ChannelId
)
{
this
.
msg
.
StuChannel
=
this
.
$route
.
query
.
ChannelId
;
}
if
(
this
.
$route
.
query
.
CategoryId
)
{
this
.
msg
.
CategoryId
=
this
.
$route
.
query
.
CategoryId
;
}
if
(
this
.
$route
.
query
.
createBy
)
{
if
(
this
.
CurrentUserInfo
.
IsManager
==
1
&&
this
.
CurrentUserInfo
.
IsMarket
==
1
)
{
this
.
msg
.
BelongType
=
4
;
...
...
src/pages/sale/visitTransform.vue
View file @
92d5f9de
...
...
@@ -169,29 +169,43 @@
}
else
{
url
=
'/school/student'
;
}
var
param
=
{
CreateType
:
0
,
CategoryId
:
0
,
StuSourceId
:
0
,
startTime
:
this
.
msg
.
startTime
,
endTime
:
this
.
msg
.
endTime
,
}
var
CreateType
=
2
;
//同行渠道
if
(
this
.
msg
.
top_Check
==
1
)
{
CreateType
=
2
;
param
.
StuSourceId
=
0
;
param
.
CategoryId
=
row
.
ChannelId
;
param
.
CreateType
=
0
;
}
//内部渠道
if
(
this
.
msg
.
top_Check
==
2
)
{
CreateType
=
3
;
param
.
StuSourceId
=
row
.
ChannelId
;
param
.
CategoryId
=
0
;
param
.
CreateType
=
CreateType
;
}
//学校渠道
if
(
this
.
msg
.
top_Check
==
3
)
{
CreateType
=
2
;
param
.
StuSourceId
=
0
;
param
.
CategoryId
=
row
.
ChannelId
;
param
.
CreateType
=
0
;
}
//转介绍渠道
if
(
this
.
msg
.
top_Check
==
4
)
{
CreateType
=
4
;
param
.
StuSourceId
=
row
.
ChannelId
;
param
.
CategoryId
=
0
;
param
.
CreateType
=
CreateType
;
}
this
.
OpenNewUrl
(
url
,
{
CreateType
:
CreateType
,
StuSourceId
:
row
.
ChannelId
,
startTime
:
this
.
msg
.
startTime
,
endTime
:
this
.
msg
.
endTime
,
})
this
.
OpenNewUrl
(
url
,
param
)
},
//下载同行渠道
downloadMarketCreateType
()
{
...
...
src/pages/school/student.vue
View file @
92d5f9de
...
...
@@ -138,6 +138,7 @@
CreateIds
:
[],
CreateType
:
""
,
//来源类型
StuSourceId
:
""
,
//来源人编号
CategoryId
:
""
,
//同行编号
},
dateArray
:
[],
//日期数组
pageCount
:
0
,
...
...
@@ -185,6 +186,9 @@
if
(
this
.
$route
.
query
.
StuSourceId
)
{
this
.
msg
.
StuSourceId
=
Number
(
this
.
$route
.
query
.
StuSourceId
);
}
if
(
this
.
$route
.
query
.
CategoryId
)
{
this
.
msg
.
CategoryId
=
this
.
$route
.
query
.
CategoryId
;
}
this
.
getStatusList
();
this
.
getStudent
()
},
...
...
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