Showing
2 changed files
with
15 additions
and
5 deletions
| ... | @@ -48,6 +48,8 @@ router.beforeEach((to, from, next) => { | ... | @@ -48,6 +48,8 @@ router.beforeEach((to, from, next) => { |
| 48 | "METHOD_OF_SIGNATURE", | 48 | "METHOD_OF_SIGNATURE", |
| 49 | "ORDER_DECLARE_CHANNEL", | 49 | "ORDER_DECLARE_CHANNEL", |
| 50 | "DECLARE_STATISTICS_FLAG", | 50 | "DECLARE_STATISTICS_FLAG", |
| 51 | + "RETURN_STATUS", | ||
| 52 | + "FORWARD_STATUS", | ||
| 51 | ]); | 53 | ]); |
| 52 | // 根据roles权限生成可访问的路由表 | 54 | // 根据roles权限生成可访问的路由表 |
| 53 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | 55 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | ... | ... |
| ... | @@ -49,13 +49,17 @@ | ... | @@ -49,13 +49,17 @@ |
| 49 | clearable | 49 | clearable |
| 50 | placeholder="" | 50 | placeholder="" |
| 51 | > | 51 | > |
| 52 | - <el-option label="未转发" value="0"></el-option> | 52 | + <el-option |
| 53 | - <el-option label="已转发" value="1"></el-option> | 53 | + v-for="(item, index) in $store.getters.dict.FORWARD_STATUS" |
| 54 | + :key="index" | ||
| 55 | + :label="item.itemChineseName" | ||
| 56 | + :value="item.itemValue" | ||
| 57 | + ></el-option> | ||
| 54 | </el-select> | 58 | </el-select> |
| 55 | </Formitem> | 59 | </Formitem> |
| 56 | </el-col> | 60 | </el-col> |
| 57 | <el-col :span="5"> | 61 | <el-col :span="5"> |
| 58 | - <Formitem label="转发状态" prop="returnStatus"> | 62 | + <Formitem label="回传状态" prop="returnStatus"> |
| 59 | <el-select | 63 | <el-select |
| 60 | type="text" | 64 | type="text" |
| 61 | id="inputInner--returnStatus" | 65 | id="inputInner--returnStatus" |
| ... | @@ -63,8 +67,12 @@ | ... | @@ -63,8 +67,12 @@ |
| 63 | clearable | 67 | clearable |
| 64 | placeholder="" | 68 | placeholder="" |
| 65 | > | 69 | > |
| 66 | - <el-option label="未回传" value="0"></el-option> | 70 | + <el-option |
| 67 | - <el-option label="已回传" value="1"></el-option> | 71 | + v-for="(item, index) in $store.getters.dict.RETURN_STATUS" |
| 72 | + :key="index" | ||
| 73 | + :label="item.itemChineseName" | ||
| 74 | + :value="item.itemValue" | ||
| 75 | + ></el-option> | ||
| 68 | </el-select> | 76 | </el-select> |
| 69 | </Formitem> | 77 | </Formitem> |
| 70 | </el-col> | 78 | </el-col> | ... | ... |
-
Please register or login to post a comment