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
583fa3eb
Commit
583fa3eb
authored
Jun 21, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
0354312c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
11 deletions
+28
-11
studentList.vue
src/pages/sale/studentList.vue
+28
-11
No files found.
src/pages/sale/studentList.vue
View file @
583fa3eb
...
...
@@ -76,7 +76,7 @@
</q-input>
<q-input
clearable
filled
class=
"col-6 q-pb-lg q-pr-lg"
maxlength=
"5"
v-model=
"addMsg.TotalHours"
label=
"总课时"
:rules=
"[val => !!val || '
TotalHours
']"
@
keyup
.
native=
"checkInteger(addMsg,'TotalHours')"
/>
label=
"总课时"
:rules=
"[val => !!val || '
请填写总课时
']"
@
keyup
.
native=
"checkInteger(addMsg,'TotalHours')"
/>
<q-input
clearable
filled
class=
"col-6 q-pb-lg"
ref=
"Mobile"
maxlength=
"20"
v-model=
"addMsg.Mobile"
label=
"电话"
:rules=
"[val => !!val || '电话']"
/>
<q-select
class=
"col-6 q-pb-lg q-pr-lg"
option-value=
"Name"
ref=
"Basics"
standout=
"bg-primary text-white"
...
...
@@ -172,6 +172,7 @@
getOrderSourceEnumList
,
//来源枚举
setOrderGuestInfo
,
//保存
delOrderGuestInfo
,
//删除
GetSelectClassOrderList
,
}
from
'../../api/sale/sale'
import
{
UploadSelfFile
,
...
...
@@ -329,6 +330,7 @@
GLList
:
[],
//学习目的列表
OFList
:
[],
//客人来源列表
isShowBtn
:
true
,
//默认显示新增名单
CourseClassHourse
:
0
,
//课时
//表格可见列
visibleColumns
:
[
...
...
@@ -363,15 +365,30 @@
];
}
this
.
visibleColumns
.
push
(
'optioned'
);
this
.
getOrderInfo
();
this
.
getGuestBasics
()
this
.
getGuestEducation
()
this
.
getGuestLearning
()
this
.
getGuestSource
()
this
.
getGuestSource
()
;
},
mounted
()
{
this
.
getGuestPage
();
},
methods
:
{
getOrderInfo
()
{
var
qMsg
=
{
ClassId
:
this
.
msg
.
ClassId
,
OrderId
:
this
.
msg
.
OrderId
}
GetSelectClassOrderList
(
qMsg
).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
var
tempData
=
res
.
Data
;
if
(
tempData
&&
tempData
.
length
==
1
)
{
this
.
CourseClassHourse
=
tempData
[
0
].
ClassHours
-
tempData
[
0
].
StartClassHours
}
}
})
},
//日语基础枚举
getGuestBasics
()
{
getGuestBasicsEnumList
({}).
then
(
res
=>
{
...
...
@@ -499,6 +516,7 @@
VolunteerMajor
:
""
,
//志愿专业
Price
:
0
,
//价格
StudyRemark
:
""
,
//留学就业备注
TotalHours
:
this
.
CourseClassHourse
,
}
},
//新增学员弹窗
...
...
@@ -523,7 +541,6 @@
this
.
addMsg
.
IDCard
=
item
.
IDCard
;
this
.
addMsg
.
Domicile
=
item
.
Domicile
;
this
.
addMsg
.
ContactAddress
=
item
.
ContactAddress
;
this
.
addMsg
.
SourceId
=
this
.
$route
.
query
.
SourceId
;
this
.
addMsg
.
GraduatedSchool
=
item
.
GraduatedSchool
;
this
.
addMsg
.
GraduatedMajor
=
item
.
GraduatedMajor
;
...
...
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