|
|
@@ -126,12 +126,18 @@
|
|
|
@clear="onClear"
|
|
|
@change="onChange"
|
|
|
:loading="loading"
|
|
|
+ :scroll="{ x: 'calc(1500px + 50%)', y: 400 }"
|
|
|
>
|
|
|
<div slot="insuranceCompany" slot-scope="{ record }">
|
|
|
<img :src="record.logo" alt="" style="width: 24px; height: auto" />
|
|
|
|
|
|
{{ record.insuranceCompany }}
|
|
|
</div>
|
|
|
+ <div slot="distributionAmountRate" slot-scope="{ text }">
|
|
|
+ {{ text==null ? '0%':(text*100).toFixed(2)+"%" }}
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
|
|
|
<div slot="operation" slot-scope="{ text, record }">
|
|
|
<a-button type="link" @click="watchMessage({ text, record })"
|
|
|
@@ -190,6 +196,7 @@ const columns = [
|
|
|
{
|
|
|
title: "毛利率",
|
|
|
dataIndex: "distributionAmountRate",
|
|
|
+ scopedSlots: { customRender: "distributionAmountRate" },
|
|
|
},
|
|
|
];
|
|
|
|