zhanbo.xu

feat: 新增字段

......@@ -165,7 +165,7 @@
</el-row>
<el-row>
<el-col :span="5">
<Formitem label="申报类型" prop="statisticsFlag">
<Formitem label="申报业务类型" prop="statisticsFlag">
<el-select
type="text"
id="inputInner--statisticsFlag"
......@@ -254,6 +254,15 @@
{{ scope.row.logisticsNo }}
</el-button>
</template>
<template v-slot:statisticsFlag="scope">
<span>
{{
($store.getters.dict.DECLARE_STATISTICS_FLAG || []).find(
(v) => v.itemValue == scope.row.statisticsFlag
).itemChineseName || ""
}}
</span>
</template>
</Table>
<CustomDialog :showDialog="customDialogShow" @cancelModify="cancelModify" />
</div>
......@@ -341,6 +350,13 @@ export default {
align: "left",
},
{
name: "申报业务类型",
value: "statisticsFlag",
width: "",
align: "left",
slot: true,
},
{
name: "汇总申报状态",
value: "summaryApplicationStatus",
width: "",
......