保存进度!

This commit is contained in:
Kane Wang 2023-09-04 19:01:52 +08:00
parent ae68f047f4
commit 075da72a73
1 changed files with 7 additions and 2 deletions

View File

@ -17,10 +17,10 @@
<td>车险保费</td><td>{{ PresentMonthPremium }}&nbsp;万元</td>
</tr>
<tr>
<td>车非渗透率</td><td>{{ ui.attachingRate }}</td>
<td>车非渗透率</td><td>{{ ui.attachingRate }}%</td>
</tr>
<tr>
<td>续保率</td><td>{{ ui.renewalRate }}</td>
<td>续保率</td><td>{{ ui.renewalRate }}%</td>
</tr>
</table>
</div>
@ -67,6 +67,7 @@ export default {
{
return props.callerName;
});
return {
CallerName,
PresentMonthPremium,
@ -76,4 +77,8 @@ export default {
};
</script>
<style scoped lang="scss">
.caller-archievment-wrapper
{
width: 100%;
}
</style>