Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
zhanbo.xu
2025-06-16 15:10:35 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d3b99d2d81f664eb0a0e59fdb91dd3c78cc6b1fe
d3b99d2d
1 parent
fb6e0937
feat: 新增申报类型
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
src/views/exportListQuery/index.vue
src/views/exportListQuery/index.vue
View file @
d3b99d2
...
...
@@ -163,6 +163,27 @@
</Formitem>
</el-col>
</el-row>
<el-row>
<el-col :span="5">
<Formitem label="申报类型" prop="statisticsFlag">
<el-select
type="text"
id="inputInner--statisticsFlag"
v-model="sreachFormData.statisticsFlag"
clearable
placeholder=""
>
<el-option
v-for="(item, index) in $store.getters.dict
.DECLARE_STATISTICS_FLAG"
:key="index"
:label="item.itemChineseName"
:value="item.itemValue"
></el-option>
</el-select>
</Formitem>
</el-col>
</el-row>
</el-form>
<div class="optionButton">
<div>
...
...
@@ -260,6 +281,7 @@ export default {
returnStatus: "",
summaryApplicationStatus: "",
createTime: [],
statisticsFlag: "",
},
page: {
pageIndex: 1,
...
...
@@ -430,6 +452,8 @@ export default {
returnStatus: "",
createTime: [],
ebcName: "",
statisticsFlag: "",
summaryApplicationStatus: "",
};
},
//导出
...
...
Please
register
or
login
to post a comment