Commit ce2180ce authored by Mac's avatar Mac

1

parent d062d86c
......@@ -109,16 +109,16 @@
</el-table-column>
<el-table-column prop="TotalHours" label="课时统计" width="160">
<template slot-scope="scope">
<div v-if="scope.row.TotalHours">总计课时{{ scope.row.TotalHours }}</div>
<div v-if="scope.row.TotalHours">总计课时:{{ scope.row.TotalHours }}</div>
<div v-if="scope.row.TotalLearn">
学习课时<div
学习课时:<div
style=" display: inline-block;cursor: pointer;text-decoration: underline;"
@click="goUrlkehao('/financial/studentsClassfee', scope.row)"
>{{ scope.row.TotalLearn }}</div>
</div>
<div
v-if="scope.row.CurrentHours"
>当期课时{{ scope.row.CurrentHours >= 0 ? scope.row.CurrentHours : '-' }}</div>
>当期课时:{{ scope.row.CurrentHours >= 0 ? scope.row.CurrentHours : '-' }}</div>
</template>
</el-table-column>
<!-- <el-table-column prop="TotalHours" label="总课时"> </el-table-column>
......
......@@ -194,16 +194,16 @@
</el-table-column>
<el-table-column prop="TotalHours" label="课时统计" width="160">
<template slot-scope="scope">
<div v-if="scope.row.TotalHours">总计课时{{ scope.row.TotalHours }}</div>
<div v-if="scope.row.TotalHours">总计课时:{{ scope.row.TotalHours }}</div>
<div v-if="scope.row.TotalLearn">
学习课时<div
学习课时:<div
style=" display: inline-block;cursor: pointer;text-decoration: underline;"
@click="goUrlkehao('/financial/studentsClassfee', scope.row)"
>{{ scope.row.TotalLearn }}</div>
</div>
<div
v-if="scope.row.CurrentHours"
>当期课时{{ scope.row.CurrentHours >= 0 ? scope.row.CurrentHours : '-' }}</div>
>当期课时:{{ scope.row.CurrentHours >= 0 ? scope.row.CurrentHours : '-' }}</div>
</template>
</el-table-column>
......
......@@ -101,7 +101,7 @@
</div>
</div>
<div class="page-search row items-center" style="justify-content: space-between;">
<span style="font-size: 20px;font-weight: 400;">提成统计 <span style="font-size: 16px;">(提成总计{{TotalCommission}})</span> </span>
<span style="font-size: 20px;font-weight: 400;">提成统计 <span style="font-size: 16px;">(提成总计:{{TotalCommission}})</span> </span>
<q-btn  color="primary" size="11px" label="导出" @click="tcexport" style="margin-left:10px"/>
</div>
<template >
......@@ -163,9 +163,9 @@
</el-table-column>
<el-table-column prop="TotalHours" label="课时统计" width='160'>
<template slot-scope="scope">
<div>总计课时{{scope.row.TotalHours}}</div>
<div>学习课时{{scope.row.TotalLearn}}</div>
<div>当期课时{{scope.row.CurrentHours>=0 ?scope.row.CurrentHours:'-'}}</div>
<div>总计课时:{{scope.row.TotalHours}}</div>
<div>学习课时:{{scope.row.TotalLearn}}</div>
<div>当期课时:{{scope.row.CurrentHours>=0 ?scope.row.CurrentHours:'-'}}</div>
</template>
</el-table-column>
......
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