zhanbo.xu

Merge branch 'release-v1.0.10' into release-pdd-v1.0.10

...@@ -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 }
......
...@@ -165,7 +165,7 @@ ...@@ -165,7 +165,7 @@
165 </el-row> 165 </el-row>
166 <el-row> 166 <el-row>
167 <el-col :span="5"> 167 <el-col :span="5">
168 - <Formitem label="申报类型" prop="statisticsFlag"> 168 + <Formitem label="申报业务类型" prop="statisticsFlag">
169 <el-select 169 <el-select
170 type="text" 170 type="text"
171 id="inputInner--statisticsFlag" 171 id="inputInner--statisticsFlag"
...@@ -254,6 +254,15 @@ ...@@ -254,6 +254,15 @@
254 {{ scope.row.logisticsNo }} 254 {{ scope.row.logisticsNo }}
255 </el-button> 255 </el-button>
256 </template> 256 </template>
257 + <template v-slot:statisticsFlag="scope">
258 + <span>
259 + {{
260 + ($store.getters.dict.DECLARE_STATISTICS_FLAG || []).find(
261 + (v) => v.itemValue == scope.row.statisticsFlag
262 + ).itemChineseName || ""
263 + }}
264 + </span>
265 + </template>
257 </Table> 266 </Table>
258 <CustomDialog :showDialog="customDialogShow" @cancelModify="cancelModify" /> 267 <CustomDialog :showDialog="customDialogShow" @cancelModify="cancelModify" />
259 </div> 268 </div>
...@@ -341,6 +350,13 @@ export default { ...@@ -341,6 +350,13 @@ export default {
341 align: "left", 350 align: "left",
342 }, 351 },
343 { 352 {
353 + name: "申报业务类型",
354 + value: "statisticsFlag",
355 + width: "",
356 + align: "left",
357 + slot: true,
358 + },
359 + {
344 name: "汇总申报状态", 360 name: "汇总申报状态",
345 value: "summaryApplicationStatus", 361 value: "summaryApplicationStatus",
346 width: "", 362 width: "",
......