Commit bdf46615 authored by 吴春's avatar 吴春

1

parent a0f193e1
......@@ -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>
......
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment