|
@@ -194,6 +194,15 @@
|
|
|
<!-- 实际事故金额 -->
|
|
|
<span slot="practicalSum" slot-scope="text, record, index">
|
|
|
<a-input placeholder="请输入" v-model="record.practicalSum" @blur="changepracticalSum(record)"/>
|
|
|
+ </span>
|
|
|
+ <!-- 币种 -->
|
|
|
+ <span slot="moneyType" slot-scope="text, record, index">
|
|
|
+ <j-dict-select-tag
|
|
|
+ v-model="record.moneyType"
|
|
|
+ placeholder="请选择币种"
|
|
|
+ :triggerChange="true"
|
|
|
+ dictCode="money-type"
|
|
|
+ />
|
|
|
</span>
|
|
|
<!-- U8生成运费发票号 -->
|
|
|
<span slot="u8Invoice" slot-scope="text, record, index">
|
|
@@ -349,8 +358,8 @@
|
|
|
title: '币种',
|
|
|
align: "center",
|
|
|
dataIndex: 'moneyType',
|
|
|
- width: '7%',
|
|
|
- // scopedSlots: { customRender: 'accidentType' },
|
|
|
+ width: '8%',
|
|
|
+ scopedSlots: { customRender: 'moneyType' },
|
|
|
},
|
|
|
{
|
|
|
title: '事故金额',
|
|
@@ -619,4 +628,10 @@
|
|
|
white-space: break-spaces !important;
|
|
|
word-break: break-word;
|
|
|
}
|
|
|
+/deep/.ant-select{
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+/deep/.ant-select-selection--single{
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
</style>
|