Commit 7c37bd53 authored by Mac's avatar Mac

修改业绩提成规则样式和提成列表的文字

parent 81c41197
......@@ -76,6 +76,8 @@
<div><span style="cursor: pointer;text-decoration: underline;" @click="goUrlclass('/course/classManage',scope.row.ClassName)">{{scope.row.ClassName}}</span> {{scope.row.ClassTypeName}}<span style="color: #409EFF;"
v-if='scope.row.IsContinueClass==1'>(续)</span></div>
<div v-if="scope.row.StudentCount">学生数量:{{scope.row.StudentCount}}</div>
<div v-if="scope.row.ClassNo">班号:{{scope.row.ClassNo}}</div>
</template>
</el-table-column>
<el-table-column prop="OrderId" label="订单号">
......@@ -100,17 +102,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>
......
......@@ -146,6 +146,8 @@
>(续)</span>
</div>
<div v-if="scope.row.StudentCount">学生数量:{{ scope.row.StudentCount }}</div>
<div v-if="scope.row.ClassNo">班号:{{scope.row.ClassNo}}</div>
</template>
</el-table-column>
<el-table-column prop="OrderId" label="订单号">
......@@ -187,17 +189,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>
......
......@@ -66,11 +66,11 @@
v-loading="loading"
>
<tr>
<th width="8%">方案名称</th>
<th width="100" style="min-width: 100px;max-width: 100px;">方案名称</th>
<th width="5%">类型</th>
<th width="15%">校区</th>
<th width="5%">课程类型</th>
<th width="25%">课程</th>
<th width="">课程</th>
<th width="7%">首次发放比例</th>
<th width="5%">课程比例</th>
<th width="10%">提成人员</th>
......@@ -163,7 +163,7 @@
</td>
</tr>
</table>
<table
<!-- <table
class="po_content singeRowTable"
style="border:1px solid #E6E6E6;"
cellspacing="0"
......@@ -172,7 +172,7 @@
<tr>
<th >业绩比例</th>
</tr>
</table>
</table> -->
<div style="width:100%;overflow-x: auto;">
<table
class="po_content singeRowTable"
......@@ -180,14 +180,15 @@
cellspacing="0"
cellpadding="0"
>
<tr>
<td rowspan="2" width="100" style="min-width: 100px;">提成比例</td>
<th style="min-width: 260px;"
v-for="( son , sIndex ) in item.RateList"
:key="sIndex"
>{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<业绩<=':'<业绩'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th>
</tr>
<tr style="width: 1040px;overflow-x: auto;">
<tr style="">
<td style="min-width: 260px;" v-for="( son , sIndex ) in item.RateList" :key="sIndex">{{ son.Rate }}%</td>
</tr>
......
......@@ -156,9 +156,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