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
bdf46615
Commit
bdf46615
authored
Aug 27, 2024
by
吴春
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
a0f193e1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
189 additions
and
10 deletions
+189
-10
order-form.vue
src/components/school/student/transfer-order/order-form.vue
+150
-8
tickMode.vue
src/components/school/student/transfer-order/tickMode.vue
+2
-2
course.vue
src/pages/course/course.vue
+37
-0
No files found.
src/components/school/student/transfer-order/order-form.vue
View file @
bdf46615
This diff is collapsed.
Click to expand it.
src/components/school/student/transfer-order/tickMode.vue
View file @
bdf46615
...
...
@@ -17,13 +17,13 @@
<q-icon
name=
"check"
class=
"check-icon"
/>
</div>
</div>
<div
class=
"box-businessModel"
style=
"margin-right:0;"
:class=
"
{ 'checked-border': type == 3 }" @click="chooseChange(3)">
<
!--
<
div
class=
"box-businessModel"
style=
"margin-right:0;"
:class=
"
{ 'checked-border': type == 3 }" @click="chooseChange(3)">
<i
class=
"iconfont icon-vipkecheng"
style=
"font-size:38px"
></i>
<div>
VIP课程
</div>
<div
class=
"right"
v-if=
"type == 3"
>
<q-icon
name=
"check"
class=
"check-icon"
/>
</div>
</div>
</div>
-->
</div>
</
template
>
<
script
>
...
...
src/pages/course/course.vue
View file @
bdf46615
...
...
@@ -58,6 +58,21 @@
<span
v-html=
"props.value"
></span>
</q-td>
</
template
>
<
template
v-slot:body-cell-SellPriceType=
"props"
>
<q-td
:props=
"props"
>
<q-badge
:color=
"props.value == 1 ? 'negative' : 'primary'"
:label=
"props.value == 1? '课程总价' : '课时单价'"
/>
</q-td>
</
template
>
<
template
v-slot:body-cell-TextbookFee=
"props"
>
<q-td
:props=
"props"
>
<span
v-html=
"props.value"
></span>
</q-td>
</
template
>
<
template
v-slot:body-cell-CoursewareFee=
"props"
>
<q-td
:props=
"props"
>
<span
v-html=
"props.value"
></span>
</q-td>
</
template
>
<
template
v-slot:body-cell-B2CRatio=
"props"
v-if=
"false"
>
<q-td
:props=
"props"
>
<span>
{{
props
.
row
.
B2CRatio
}}
%
</span>
...
...
@@ -370,6 +385,28 @@
align
:
"left"
,
field
:
row
=>
row
.
SellPrice
.
toFixed
(
2
)
},
,
{
name
:
"SellPriceType"
,
required
:
true
,
label
:
"价格类型"
,
align
:
"left"
,
field
:
row
=>
row
.
SellPriceType
},
{
name
:
"TextbookFee"
,
required
:
true
,
label
:
"教材费"
,
align
:
"left"
,
field
:
row
=>
row
.
TextbookFee
.
toFixed
(
2
)
},
{
name
:
"CoursewareFee"
,
required
:
true
,
label
:
"课件费"
,
align
:
"left"
,
field
:
row
=>
row
.
CoursewareFee
.
toFixed
(
2
)
},
// {
// name: "B2CRatio",
// required: true,
...
...
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