|
@@ -7,8 +7,8 @@
|
|
|
<el-form :model="addData" :rules="rules" ref="addData" label-width="100px" class="demo-ruleForm">
|
|
|
<div style="display: flex;">
|
|
|
<div style="width: 49%;">
|
|
|
- <el-form-item label="所在州" label-width="125px" prop="VisaContinent">
|
|
|
- <el-input placeholder="所在州" v-model="addData.VisaContinent">
|
|
|
+ <el-form-item label="所在洲" label-width="125px" prop="VisaContinent">
|
|
|
+ <el-input placeholder="所在洲" v-model="addData.VisaContinent">
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</div>
|
|
@@ -67,10 +67,10 @@
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div style="display: flex;">
|
|
|
+ <div style="display: flex;flex-wrap: wrap;">
|
|
|
<div style="width: 49%;">
|
|
|
<el-form-item label="普通签证时间" label-width="125px" prop="VisaTime">
|
|
|
- <el-input placeholder="普通签证时间" v-model="addData.VisaTime">
|
|
|
+ <el-input style="width: 100%;" placeholder="普通签证时间" v-model="addData.VisaTime">
|
|
|
<template slot="append">天</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
@@ -84,6 +84,19 @@
|
|
|
</el-input> -->
|
|
|
</el-form-item>
|
|
|
</div>
|
|
|
+ <div style="width: 49%;">
|
|
|
+ <el-form-item label="大公务代办费 " label-width="125px">
|
|
|
+ <el-input-number style="width:100%" v-model="addData.grandBusinessAgencyFee" auto-complete="off"
|
|
|
+ :precision="2" :controls="false"></el-input-number>
|
|
|
+
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
+ <div style="width: 49%;">
|
|
|
+ <el-form-item label="小公务代办费" label-width="125px">
|
|
|
+ <el-input-number style="width:100%" v-model="addData.pettyBusinessAgencyFee" auto-complete="off"
|
|
|
+ :precision="2" :controls="false"></el-input-number>
|
|
|
+ </el-form-item>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div style="display: flex;">
|
|
|
<div style="width: 98%;">
|
|
@@ -97,7 +110,7 @@
|
|
|
<div style="display: flex;">
|
|
|
<div style="width: 49%;">
|
|
|
<el-form-item label="加急签证时间" label-width="125px" prop="UrgentTime">
|
|
|
- <el-input placeholder="加急签证时间" v-model="addData.UrgentTime">
|
|
|
+ <el-input style="width: 100%;" placeholder="加急签证时间" v-model="addData.UrgentTime">
|
|
|
<template slot="append">天</template>
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
@@ -143,12 +156,17 @@ export default {
|
|
|
return {
|
|
|
rules: {
|
|
|
VisaContinent: [
|
|
|
- { required: true, message: '请输入所属州', trigger: 'blur' },
|
|
|
+ { required: true, message: '请输入所属洲', trigger: 'blur' },
|
|
|
],
|
|
|
VisaCountry: [
|
|
|
{ required: true, message: '请输入国家', trigger: 'blur' },
|
|
|
],
|
|
|
-
|
|
|
+ grandBusinessAgencyFee: [
|
|
|
+ { required: true, message: '大公务代办费不能为空', trigger: 'blur' },
|
|
|
+ ],
|
|
|
+ pettyBusinessAgencyFee: [
|
|
|
+ { required: true, message: '小公务代办费不能为空', trigger: 'blur' },
|
|
|
+ ],
|
|
|
VisaPrice: [
|
|
|
{ required: true, message: '签证金额不能为空', trigger: 'blur' },
|
|
|
{ pattern: /^(([1-9]?\d{0,8}(\.\d{1,2})?)|999999999|999999999\.(0){1,2})$/, message: '请输入正确的金额(最多2位小数)' }
|
|
@@ -193,6 +211,8 @@ export default {
|
|
|
VisaPrice: 0,
|
|
|
VisaPriceDesc: '',
|
|
|
VisaType: '',
|
|
|
+ grandBusinessAgencyFee:0,
|
|
|
+ pettyBusinessAgencyFee:0,
|
|
|
VisaTime: '0',
|
|
|
IsUrgent: 1,
|
|
|
UrgentTime: '0',
|
|
@@ -281,7 +301,6 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
upData() {
|
|
|
- debugger
|
|
|
for (var i = 0; i < this.tableData.length; i++) {
|
|
|
if (this.tableData[i].id == parseInt(this.addData.Id)) {
|
|
|
|
|
@@ -299,6 +318,8 @@ export default {
|
|
|
this.addData.VisaPrice = this.CountryFeeCostData.visaPrice;
|
|
|
this.addData.VisaPriceDesc = this.CountryFeeCostData.visaPriceDesc;
|
|
|
this.addData.VisaType = this.CountryFeeCostData.visaType;
|
|
|
+ this.addData.grandBusinessAgencyFee = this.CountryFeeCostData.grandBusinessAgencyFee;
|
|
|
+ this.addData.pettyBusinessAgencyFee = this.CountryFeeCostData.pettyBusinessAgencyFee;
|
|
|
this.addData.VisaTime = this.CountryFeeCostData.visaTime;
|
|
|
this.addData.UrgentTime = this.CountryFeeCostData.urgentTime;
|
|
|
if (this.addData.UrgentTime != "" && this.addData.UrgentTime != 0 && this.addData.UrgentTime != null) {
|
|
@@ -327,6 +348,7 @@ export default {
|
|
|
padding: 10px;
|
|
|
box-shadow: 0 0 5px #0005;
|
|
|
border-radius: 10px;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.car_add .communal-title {
|