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
25426656
Commit
25426656
authored
Feb 15, 2022
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
0c0ba221
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
3 deletions
+38
-3
mystu.vue
src/pages/sale/mystu.vue
+5
-1
student.vue
src/pages/school/student.vue
+33
-2
No files found.
src/pages/sale/mystu.vue
View file @
25426656
...
...
@@ -150,7 +150,8 @@
CreateIds
:
[],
ExistCourseConsultant
:
""
,
//是否存在课程顾问(1-存在,2=不存在)
QStudentStatus
:
1
,
//客户状态 1有效 2无效
AdvisorStatus
:
''
//当前状态
AdvisorStatus
:
''
,
//当前状态
StuChannel
:
''
},
dateArray
:
[],
//日期数组
pageCount
:
0
,
...
...
@@ -212,6 +213,9 @@
this
.
dateArray
.
push
(
this
.
$route
.
query
.
endTime
);
this
.
msg
.
EndTime
=
this
.
$route
.
query
.
endTime
;
}
if
(
this
.
$route
.
query
.
ChannelId
){
this
.
msg
.
StuChannel
=
this
.
$route
.
query
.
ChannelId
;
}
this
.
getStudent
();
this
.
getCustomerList
();
this
.
getCustomFrom
();
...
...
src/pages/school/student.vue
View file @
25426656
...
...
@@ -45,6 +45,19 @@
</
template
>
</q-field>
</div>
<div
class=
"col-3"
>
<q-field
filled
label=
"客户状态"
dense
stack-label
>
<
template
v-slot:control
>
<q-radio
dense
v-model=
"msg.QStudentStatus"
@
input=
"resetSearch"
:val=
"1"
label=
"有效"
size=
"xs"
/>
<q-radio
dense
v-model=
"msg.QStudentStatus"
@
input=
"resetSearch"
:val=
"2"
label=
"无效"
size=
"xs"
/>
</
template
>
</q-field>
</div>
<div
class=
"col-3"
>
<q-select
filled
stack-label
option-value=
"Id"
@
input=
"resetSearch"
dense
option-label=
"Name"
v-model=
"msg.AdvisorStatus"
ref=
"AdvisorStatus"
:options=
"consultList"
clearable
label=
"当前状态"
class=
"col-6 q-pb-lg"
emit-value
map-options
/>
</div>
</div>
</div>
<div
class=
"page-content"
>
...
...
@@ -74,6 +87,9 @@
import
{
resetPassword
}
from
'../../api/users/user.js'
import
{
GetStudentAdvisorConfigList
}
from
"../../api/customerstudent/customerstudent"
;
import
stulist
from
'../../components/school/student/stulist'
import
{
mapGetters
}
from
"vuex"
;
...
...
@@ -101,7 +117,9 @@
EndTime
:
""
,
//结束时间
QQ
:
''
,
WechatNo
:
''
,
StuType
:
''
StuType
:
''
,
QStudentStatus
:
1
,
//客户状态 1有效 2无效
AdvisorStatus
:
''
//当前状态
},
dateArray
:
[],
//日期数组
pageCount
:
0
,
...
...
@@ -112,7 +130,8 @@
customTypeList
:
[],
//客户类型
AuthObj
:{
isShowDownload
:
true
,
}
},
consultList
:[]
}
},
computed
:
{
...
...
@@ -125,9 +144,21 @@
},
mounted
()
{
this
.
currentUrl
=
this
.
$route
.
path
this
.
getStatusList
();
this
.
getStudent
()
},
methods
:
{
//获取跟进状态下拉
getStatusList
()
{
let
msg
=
{
Name
:
''
}
GetStudentAdvisorConfigList
(
msg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
consultList
=
res
.
Data
;
}
})
},
//获取客户阶段列表
getStuStageList
()
{
queryStuStageList
().
then
(
res
=>
{
...
...
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