feat(exportListQuery): 添加汇总申报状态筛选功能
- 在查询表单中增加汇总申报状态筛选项 - 使用 Vuex getters 中的字典数据进行状态选项过滤 - 为表单数据对象添加 summaryApplicationStatus 字段
Showing
1 changed file
with
20 additions
and
0 deletions
| ... | @@ -138,6 +138,25 @@ | ... | @@ -138,6 +138,25 @@ |
| 138 | </el-select> | 138 | </el-select> |
| 139 | </Formitem> | 139 | </Formitem> |
| 140 | </el-col> | 140 | </el-col> |
| 141 | + <!-- 汇总申报状态 --> | ||
| 142 | + <el-col :span="5"> | ||
| 143 | + <Formitem label="汇总申报状态" prop="summaryApplicationStatus"> | ||
| 144 | + <el-select | ||
| 145 | + type="text" | ||
| 146 | + id="inputInner--summaryApplicationStatus" | ||
| 147 | + v-model="sreachFormData.summaryApplicationStatus" | ||
| 148 | + clearable | ||
| 149 | + placeholder="" | ||
| 150 | + > | ||
| 151 | + <el-option | ||
| 152 | + v-for="(item, index) in $store.getters.dict.RECEIPT_STATUS.filter(fItem => fItem.itemChineseName !== '已提交')" | ||
| 153 | + :key="index" | ||
| 154 | + :label="item.itemChineseName" | ||
| 155 | + :value="item.itemValue" | ||
| 156 | + ></el-option> | ||
| 157 | + </el-select> | ||
| 158 | + </Formitem> | ||
| 159 | + </el-col> | ||
| 141 | <!-- 清单编号 --> | 160 | <!-- 清单编号 --> |
| 142 | <el-col :span="5"> | 161 | <el-col :span="5"> |
| 143 | <Formitem label="清单编号" prop="invtNo"> | 162 | <Formitem label="清单编号" prop="invtNo"> |
| ... | @@ -241,6 +260,7 @@ export default { | ... | @@ -241,6 +260,7 @@ export default { |
| 241 | logisticsNo: [], | 260 | logisticsNo: [], |
| 242 | orderNo: "", | 261 | orderNo: "", |
| 243 | returnStatus: "", | 262 | returnStatus: "", |
| 263 | + summaryApplicationStatus: "", | ||
| 244 | createTime: [], | 264 | createTime: [], |
| 245 | }, | 265 | }, |
| 246 | page: { | 266 | page: { | ... | ... |
-
Please register or login to post a comment