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
a2743b83
Commit
a2743b83
authored
Aug 26, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
44168af2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
248 additions
and
65 deletions
+248
-65
course-form.vue
src/components/course/course-form.vue
+16
-5
myOrder-form.vue
src/components/sale/myOrder-form.vue
+95
-19
studentList.vue
src/pages/sale/studentList.vue
+125
-41
stuList.vue
src/pages/stuMan/stuList.vue
+12
-0
No files found.
src/components/course/course-form.vue
View file @
a2743b83
...
...
@@ -95,7 +95,8 @@
<div
class=
"row wrap"
>
<div
class=
"col-6"
>
<q-select
filled
stack-label
option-value=
"Id"
option-label=
"Name"
v-model=
"objOption.CourseRate"
ref=
"CourseRate"
:options=
"courseLevelList"
label=
"课程等级"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
ref=
"CourseRate"
:options=
"courseLevelList"
label=
"课程等级"
class=
"col-6 q-pr-lg q-pb-lg"
emit-value
map-options
/>
</div>
<div
class=
"col-6"
>
</div>
...
...
@@ -183,7 +184,7 @@
IsKCourse
:
0
,
//是否是K12课程(1-是)
ClassHours
:
0
,
CategoryList
:
[],
CourseRate
:
""
,
//课程等级
CourseRate
:
""
,
//课程等级
},
optionTitle
:
""
,
defaultArray
:
[],
...
...
@@ -234,7 +235,17 @@
getCourseRateList
()
{
getCourseRate
({}).
then
(
res
=>
{
if
(
res
.
Code
==
1
)
{
this
.
courseLevelList
=
res
.
Data
;
var
tempData
=
res
.
Data
;
if
(
tempData
&&
tempData
.
length
>
0
)
{
tempData
.
forEach
(
item
=>
{
if
((
item
.
Id
>=
2
&&
item
.
Id
<=
6
)
||
item
.
Id
==
8
)
{
this
.
courseLevelList
.
push
({
Id
:
item
.
Id
,
Name
:
item
.
Name
.
replace
(
/课程/g
,
''
)
})
}
})
}
}
})
},
...
...
@@ -318,7 +329,7 @@
this
.
objOption
.
RenewSlPrice
=
res
.
Data
.
RenewSlPrice
;
this
.
objOption
.
Saleplat
=
res
.
Data
.
Saleplat
;
this
.
objOption
.
IsKCourse
=
res
.
Data
.
IsKCourse
;
this
.
objOption
.
CourseRate
=
res
.
Data
.
CourseRate
;
this
.
objOption
.
CourseRate
=
res
.
Data
.
CourseRate
;
if
(
res
.
Data
.
StepPriceList
&&
res
.
Data
.
StepPriceList
.
length
>
0
)
{
this
.
ladderPriceList
=
res
.
Data
.
StepPriceList
;
}
...
...
@@ -358,7 +369,7 @@
this
.
objOption
.
RenewSlPrice
=
0
;
this
.
objOption
.
Saleplat
=
""
;
this
.
objOption
.
IsKCourse
=
0
;
this
.
objOption
.
CourseRate
=
""
;
this
.
objOption
.
CourseRate
=
""
;
this
.
getCategorytree
();
}
},
...
...
src/components/sale/myOrder-form.vue
View file @
a2743b83
This diff is collapsed.
Click to expand it.
src/pages/sale/studentList.vue
View file @
a2743b83
This diff is collapsed.
Click to expand it.
src/pages/stuMan/stuList.vue
View file @
a2743b83
...
...
@@ -535,6 +535,18 @@
field
:
"GuestStateStr"
,
align
:
"left"
,
},
{
name
:
"GraduationTime"
,
label
:
"毕业时间"
,
field
:
"GraduationTime"
,
align
:
"left"
,
},
{
name
:
"CourseRateName"
,
label
:
"毕业课程等级"
,
field
:
"CourseRateName"
,
align
:
"left"
,
},
{
name
:
"JoinTypeStr"
,
label
:
"类型"
,
...
...
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