|
|
@@ -861,18 +861,18 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="交强出口费用">
|
|
|
- <el-input placeholder="请输入交强出口费用" disabled v-model="policyNumberForm.JqExportFee" type="text"></el-input>
|
|
|
+ <el-form-item label="交强出口比例">
|
|
|
+ <el-input placeholder="请输入交强出口比例" disabled v-model="policyNumberForm.JqExportFee" type="text"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="商业出口费用">
|
|
|
- <el-input placeholder="请输入商业出口费用" disabled v-model="policyNumberForm.syExportFee" type="text"></el-input>
|
|
|
+ <el-form-item label="商业出口比例">
|
|
|
+ <el-input placeholder="请输入商业出口比例" disabled v-model="policyNumberForm.syExportFee" type="text"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="非车出口费用">
|
|
|
- <el-input placeholder="请输入非车出口费用" disabled v-model="policyNumberForm.noExportFee" type="text"></el-input>
|
|
|
+ <el-form-item label="非车出口比例">
|
|
|
+ <el-input placeholder="请输入非车出口比例" disabled v-model="policyNumberForm.noExportFee" type="text"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
@@ -5974,9 +5974,11 @@ export default {
|
|
|
}
|
|
|
this.$api.letter.externalOrderFee(data).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
- this.policyNumberForm.JqExportFee = res.data.jqExportPremium
|
|
|
- this.policyNumberForm.syExportFee = res.data.syExportPremium
|
|
|
- this.policyNumberForm.noExportFee = res.data.noExportPremium
|
|
|
+ this.policyNumberForm.JqExportFee = res.data.jqExportRadio
|
|
|
+ this.policyNumberForm.syExportFee = res.data.syExportRadio
|
|
|
+ this.policyNumberForm.noExportFee = res.data.noExportRadio
|
|
|
+ console.log(res.data.jqExportRadio, res.data.syExportRadio, res.data.noExportRadio, '111111111111111111')
|
|
|
+ this.$forceUpdate()
|
|
|
} else {
|
|
|
this.$message.error(res.msg)
|
|
|
}
|