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
6f05f31d
Commit
6f05f31d
authored
Sep 06, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
e84815a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
6 deletions
+36
-6
order-form.vue
src/components/school/student/transfer-order/order-form.vue
+36
-6
No files found.
src/components/school/student/transfer-order/order-form.vue
View file @
6f05f31d
...
...
@@ -4,10 +4,10 @@
<div
class=
"q-mb-sm text-accent"
>
<span
class=
"text-primary"
v-if=
"mode === 1"
>
班级:
</span>
<span
v-if=
"mode === 1"
>
{{
saveObj
.
ClassName
}}
</span>
<span>
<
!--
<
span>
<span
class=
"q-ml-md text-primary"
>
课程:
</span>
{{
saveObj
.
CourseName
}}
</span>
</span>
-->
</div>
<div
class=
"row q-mb-md"
>
<div
class=
"col-10 flex"
>
...
...
@@ -21,7 +21,38 @@
<q-toggle
v-model=
"OrderMsg.IsChaBan"
:true-value=
"1"
:false-value=
"0"
label=
"插班报入"
/>
</div>
</div>
<template
v-if=
"OrderMsg.OrderCourseList&&OrderMsg.OrderCourseList.length>0"
>
<div
class=
"q-mb-sm text-accent q-mr-lg"
style=
"margin-bottom:24px;"
>
<div
class=
"column items-center "
style=
"width:100%;text-align:center;border:1px solid #f5f6f7;"
>
<table
class=
"sticky-tow-column-table sticky-two-header-table"
ref=
"PlanTable"
style=
"border-collapse:collapse;margin-top:0;width:100%;border: 1 solid #000000;"
>
<thead>
<tr>
<th
v-if=
"mode==1"
>
班级
</th>
<th
>
课程
</th>
<th
v-if=
"mode==1"
>
老师
</th>
<th
v-if=
"mode==1"
>
上课时间
</th>
<th
v-if=
"mode!=1"
>
所属科目
</th>
<th
v-if=
"mode!=1"
>
售价
</th>
<th
v-if=
"mode!=1"
>
价格类型
</th>
<th
v-if=
"mode==2"
>
教材费
</th>
<th
v-if=
"mode==2"
>
课件费
</th>
</tr>
</thead>
<tr
v-for=
"(item, index) in OrderMsg.OrderCourseList"
:key=
"index"
style=
"height:40px;"
>
<td
v-if=
"mode==1"
>
{{
item
.
ClassName
}}
</td>
<td>
{{
item
.
CourseName
}}
</td>
<td
v-if=
"mode==1"
>
{{
item
.
TeacherName
}}
</td>
<td
v-if=
"mode==1"
>
{{
item
.
OpenTime
}}
</td>
<td
v-if=
"mode!=1"
>
{{
item
.
CourseSubjectName
}}
</td>
<td
v-if=
"mode!=1"
>
{{
item
.
SellPrice
}}
</td>
<td
v-if=
"mode!=1"
>
{{
item
.
SellPriceType
==
1
?
"课程总价"
:
"课时单价"
}}
</td>
<td
v-if=
"mode==2"
>
{{
item
.
TextbookFee
}}
</td>
<td
v-if=
"mode==2"
>
{{
item
.
CoursewareFee
}}
</td>
</tr>
</table>
</div>
</div>
</
template
>
<!-- 一个约课、班课 -->
<div
class=
"column items-center"
>
<div
class=
"col row wrap q-mr-lg q-col-gutter-md"
>
...
...
@@ -141,8 +172,7 @@
label=
"备注"
/>
</div>
</div>
<div
class=
"dialog-out-close"
@
click=
"closeEditOrder"
style=
"height:40px !important;border-top-left-radius: 4px !important;border-bottom-left-radius: 4px !important;"
>
<q-icon
name=
"iconfont icon-jujue1"
size=
"26px"
/>
...
...
@@ -186,7 +216,7 @@
default
:
null
},
mode
:
{
type
:
Number
,
//1:约课,2:班课
type
:
Number
,
//1:约课,2:班课
,3-Vip
default
:
1
},
//订单类型
...
...
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