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-19 15:18:26 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
83fc74636b7ca0275231162b24027537c41b0d0a
83fc7463
1 parent
e34c047d
feat: 新增字典
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
src/permission.js
src/views/pdd-info/index.vue
src/permission.js
View file @
83fc746
...
...
@@ -48,6 +48,8 @@ router.beforeEach((to, from, next) => {
"METHOD_OF_SIGNATURE"
,
"ORDER_DECLARE_CHANNEL"
,
"DECLARE_STATISTICS_FLAG"
,
"RETURN_STATUS"
,
"FORWARD_STATUS"
,
]);
// 根据roles权限生成可访问的路由表
router
.
addRoutes
(
accessRoutes
);
// 动态添加可访问路由表
...
...
src/views/pdd-info/index.vue
View file @
83fc746
...
...
@@ -49,13 +49,17 @@
clearable
placeholder=""
>
<el-option label="未转发" value="0"></el-option>
<el-option label="已转发" value="1"></el-option>
<el-option
v-for="(item, index) in $store.getters.dict.FORWARD_STATUS"
:key="index"
:label="item.itemChineseName"
:value="item.itemValue"
></el-option>
</el-select>
</Formitem>
</el-col>
<el-col :span="5">
<Formitem label="
转发
状态" prop="returnStatus">
<Formitem label="
回传
状态" prop="returnStatus">
<el-select
type="text"
id="inputInner--returnStatus"
...
...
@@ -63,8 +67,12 @@
clearable
placeholder=""
>
<el-option label="未回传" value="0"></el-option>
<el-option label="已回传" value="1"></el-option>
<el-option
v-for="(item, index) in $store.getters.dict.RETURN_STATUS"
:key="index"
:label="item.itemChineseName"
:value="item.itemValue"
></el-option>
</el-select>
</Formitem>
</el-col>
...
...
Please
register
or
login
to post a comment