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
e74e72ee
Commit
e74e72ee
authored
Dec 09, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
9aac4bfd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
149 additions
and
1 deletion
+149
-1
customerstudent.js
src/api/customerstudent/customerstudent.js
+148
-0
student.vue
src/pages/school/student.vue
+1
-1
No files found.
src/api/customerstudent/customerstudent.js
0 → 100644
View file @
e74e72ee
import
request
from
'../../utils/request'
/**
* 学员约访分页列表
* @param {JSON参数} data
*/
export
function
queryStudentAppointmentPage
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentAppointmentPage'
,
method
:
'post'
,
data
})
}
/**
* 添加修改约访
* @param {JSON参数} data
*/
export
function
saveStudentAppointment
(
data
)
{
return
request
({
url
:
'/CustomerStudent/SetStudentAppointment'
,
method
:
'post'
,
data
})
}
/**
* 根据编号获取约访
* @param {JSON参数} data
*/
export
function
queryStudentAppointment
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentAppointment'
,
method
:
'post'
,
data
})
}
/**
* 根据编号删除学员约访
* @param {JSON参数} data
*/
export
function
deleteStudentAppointment
(
data
)
{
return
request
({
url
:
'/CustomerStudent/RemoveStudentAppointment'
,
method
:
'post'
,
data
})
}
/**
* 学员跟进分页列表
* @param {JSON参数} data
*/
export
function
queryStudentFollowPage
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentFollowPage'
,
method
:
'post'
,
data
})
}
/**
* 新增修改学员跟进
* @param {JSON参数} data
*/
export
function
saveStudentFollow
(
data
)
{
return
request
({
url
:
'/CustomerStudent/SetStudentFollow'
,
method
:
'post'
,
data
})
}
/**
* 根据编号获取跟进信息
* @param {JSON参数} data
*/
export
function
queryStudentFollow
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentFollow'
,
method
:
'post'
,
data
})
}
/**
* 根据编号删除学员跟进信息
* @param {JSON参数} data
*/
export
function
deleteStudentFollow
(
data
)
{
return
request
({
url
:
'/CustomerStudent/RemoveStudentFollow'
,
method
:
'post'
,
data
})
}
/**
* 学员到访分页列表
* @param {JSON参数} data
*/
export
function
queryStudentVisitPage
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentVisitPage'
,
method
:
'post'
,
data
})
}
/**
* 新增修改学员到访
* @param {JSON参数} data
*/
export
function
saveStudentVisit
(
data
)
{
return
request
({
url
:
'/CustomerStudent/SetStudentVisit'
,
method
:
'post'
,
data
})
}
/**
* 根据编号获取到访信息
* @param {JSON参数} data
*/
export
function
queryStudentVisit
(
data
)
{
return
request
({
url
:
'/CustomerStudent/GetStudentVisit'
,
method
:
'post'
,
data
})
}
/**
* 跟进编号删除学员到访信息
* @param {JSON参数} data
*/
export
function
deleteStudentVisit
(
data
)
{
return
request
({
url
:
'/CustomerStudent/RemoveStudentVisit'
,
method
:
'post'
,
data
})
}
\ No newline at end of file
src/pages/school/student.vue
View file @
e74e72ee
...
...
@@ -95,7 +95,7 @@
{
name
:
'StuName'
,
required
:
true
,
label
:
'
学员
昵称'
,
label
:
'昵称'
,
align
:
'left'
,
field
:
row
=>
row
.
StuName
},
...
...
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