Showing
1 changed file
with
17 additions
and
1 deletions
| ... | @@ -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: "", | ... | ... |
-
Please register or login to post a comment