Commit ffbf4754 authored by Mac's avatar Mac

1

parent c079874d
...@@ -359,7 +359,7 @@ export default { ...@@ -359,7 +359,7 @@ export default {
} }
else { else {
const needle = val.toLowerCase(); const needle = val.toLowerCase();
this.myCourseList = this.allCourseList.filter(v => v.CateName.toLowerCase().indexOf(needle) > -1); this.myCourseList = this.allCourseList.filter(v => v.CourseName.toLowerCase().indexOf(needle) > -1);
} }
}) })
}, },
......
...@@ -183,13 +183,13 @@ ...@@ -183,13 +183,13 @@
<tr> <tr>
<td rowspan="2" width="100" style="min-width: 100px;">提成比例</td> <td rowspan="2" width="100" style="min-width: 100px;">提成比例</td>
<th style="min-width: 260px;" <th style="min-width: 220px;"
v-for="( son , sIndex ) in item.RateList" v-for="( son , sIndex ) in item.RateList"
:key="sIndex" :key="sIndex"
>{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<业绩<=':'<业绩'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th> >{{ son.StartValue }} <span>{{son.EndValue && son.EndValue!=-1?'<业绩<=':'<业绩'}}</span><span v-if="son.EndValue && son.EndValue!=-1">{{ son.EndValue }}</span></th>
</tr> </tr>
<tr style=""> <tr style="">
<td style="min-width: 260px;" v-for="( son , sIndex ) in item.RateList" :key="sIndex">{{ son.Rate }}%</td> <td style="min-width: 220px;" v-for="( son , sIndex ) in item.RateList" :key="sIndex">{{ son.Rate }}%</td>
</tr> </tr>
</table> </table>
......
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