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-05-23 11:13:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
76217385950370a26e7bb132d3fbc8949bd36b15
76217385
1 parent
c2bb6bcf
fix: 优化和增加申报业务类型--
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
src/permission.js
src/views/customerConfig/dialog.vue
src/permission.js
View file @
7621738
...
...
@@ -47,6 +47,7 @@ router.beforeEach((to, from, next) => {
"APP_STATUS"
,
"METHOD_OF_SIGNATURE"
,
"ORDER_DECLARE_CHANNEL"
,
"DECLARE_STATISTICS_FLAG"
,
]);
// 根据roles权限生成可访问的路由表
router
.
addRoutes
(
accessRoutes
);
// 动态添加可访问路由表
...
...
src/views/customerConfig/dialog.vue
View file @
7621738
...
...
@@ -168,6 +168,31 @@
></el-input>
</Formitem>
</el-col>
<!-- new 申报业务类型-->
<el-col :span="8">
<Formitem
label="申报业务类型"
prop="declareBusinessType"
type="edit"
>
<el-select
type="text"
id="inputInner-edit-declareBusinessType"
v-model="formData.declareBusinessType"
clearable
maxlength="4"
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-col :span="8">
...
...
@@ -924,6 +949,7 @@ export default {
ecomEntEmail: "",
ecomEntName: "",
orderRequester: "",
declareBusinessType: "",
certificateSerialNumber: "",
certificateIndexNumber: "",
file: null,
...
...
Please
register
or
login
to post a comment