Showing
1 changed file
with
28 additions
and
4 deletions
| ... | @@ -313,8 +313,6 @@ | ... | @@ -313,8 +313,6 @@ |
| 313 | ></el-input> | 313 | ></el-input> |
| 314 | </Formitem> | 314 | </Formitem> |
| 315 | </el-col> | 315 | </el-col> |
| 316 | - </el-row> | ||
| 317 | - <el-row :gutter="5"> | ||
| 318 | <el-col :span="3"> | 316 | <el-col :span="3"> |
| 319 | <Formitem label="监管场所代码" prop="regulatoryVenueCode"> | 317 | <Formitem label="监管场所代码" prop="regulatoryVenueCode"> |
| 320 | <el-input | 318 | <el-input |
| ... | @@ -341,6 +339,8 @@ | ... | @@ -341,6 +339,8 @@ |
| 341 | ></el-input> | 339 | ></el-input> |
| 342 | </Formitem> | 340 | </Formitem> |
| 343 | </el-col> | 341 | </el-col> |
| 342 | + </el-row> | ||
| 343 | + <el-row :gutter="5"> | ||
| 344 | <el-col :span="3"> | 344 | <el-col :span="3"> |
| 345 | <Formitem label="运抵国(地区)" prop="destinationCountryRegion"> | 345 | <Formitem label="运抵国(地区)" prop="destinationCountryRegion"> |
| 346 | <el-select | 346 | <el-select |
| ... | @@ -445,8 +445,6 @@ | ... | @@ -445,8 +445,6 @@ |
| 445 | ></el-input> | 445 | ></el-input> |
| 446 | </Formitem> | 446 | </Formitem> |
| 447 | </el-col> | 447 | </el-col> |
| 448 | - </el-row> | ||
| 449 | - <el-row :gutter="5"> | ||
| 450 | <el-col :span="3"> | 448 | <el-col :span="3"> |
| 451 | <Formitem label="保费币制" prop="insuredfeeCurrency"> | 449 | <Formitem label="保费币制" prop="insuredfeeCurrency"> |
| 452 | <el-select | 450 | <el-select |
| ... | @@ -484,6 +482,8 @@ | ... | @@ -484,6 +482,8 @@ |
| 484 | </el-select> | 482 | </el-select> |
| 485 | </Formitem> | 483 | </Formitem> |
| 486 | </el-col> | 484 | </el-col> |
| 485 | + </el-row> | ||
| 486 | + <el-row :gutter="5"> | ||
| 487 | <el-col :span="3"> | 487 | <el-col :span="3"> |
| 488 | <Formitem label="包装种类代码" prop="packageTypeCode"> | 488 | <Formitem label="包装种类代码" prop="packageTypeCode"> |
| 489 | <el-select | 489 | <el-select |
| ... | @@ -801,6 +801,29 @@ export default { | ... | @@ -801,6 +801,29 @@ export default { |
| 801 | remark: [ | 801 | remark: [ |
| 802 | { max: 1000, message: "长度不能超过1000个字符", trigger: "blur" }, | 802 | { max: 1000, message: "长度不能超过1000个字符", trigger: "blur" }, |
| 803 | ], | 803 | ], |
| 804 | + ebpCode: [ | ||
| 805 | + { required: true, message: "请输入电商平台代码", trigger: "blur" }, | ||
| 806 | + ], | ||
| 807 | + ebpName: [ | ||
| 808 | + { required: true, message: "请输入电商平台名称", trigger: "blur" }, | ||
| 809 | + ], | ||
| 810 | + productionSaleEnterpriseCode: [ | ||
| 811 | + { | ||
| 812 | + required: true, | ||
| 813 | + message: "请输入生产销售企业代码", | ||
| 814 | + trigger: "blur", | ||
| 815 | + }, | ||
| 816 | + ], | ||
| 817 | + ebcName: [ | ||
| 818 | + { | ||
| 819 | + required: true, | ||
| 820 | + message: "请输入生产销售企业名称", | ||
| 821 | + trigger: "blur", | ||
| 822 | + }, | ||
| 823 | + ], | ||
| 824 | + declareBusinessType: [ | ||
| 825 | + { required: true, message: "请选择申报业务类型", trigger: "change" }, | ||
| 826 | + ], | ||
| 804 | }, | 827 | }, |
| 805 | detailData: [], | 828 | detailData: [], |
| 806 | detialHeaderData: [ | 829 | detialHeaderData: [ |
| ... | @@ -1278,6 +1301,7 @@ export default { | ... | @@ -1278,6 +1301,7 @@ export default { |
| 1278 | display: flex; | 1301 | display: flex; |
| 1279 | justify-content: center; | 1302 | justify-content: center; |
| 1280 | padding-top: 8px; | 1303 | padding-top: 8px; |
| 1304 | + cursor: pointer; | ||
| 1281 | img { | 1305 | img { |
| 1282 | width: 22px; | 1306 | width: 22px; |
| 1283 | } | 1307 | } | ... | ... |
-
Please register or login to post a comment