Showing
2 changed files
with
27 additions
and
0 deletions
| ... | @@ -47,6 +47,7 @@ router.beforeEach((to, from, next) => { | ... | @@ -47,6 +47,7 @@ router.beforeEach((to, from, next) => { |
| 47 | "APP_STATUS", | 47 | "APP_STATUS", |
| 48 | "METHOD_OF_SIGNATURE", | 48 | "METHOD_OF_SIGNATURE", |
| 49 | "ORDER_DECLARE_CHANNEL", | 49 | "ORDER_DECLARE_CHANNEL", |
| 50 | + "DECLARE_STATISTICS_FLAG", | ||
| 50 | ]); | 51 | ]); |
| 51 | // 根据roles权限生成可访问的路由表 | 52 | // 根据roles权限生成可访问的路由表 |
| 52 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | 53 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | ... | ... |
| ... | @@ -168,6 +168,31 @@ | ... | @@ -168,6 +168,31 @@ |
| 168 | ></el-input> | 168 | ></el-input> |
| 169 | </Formitem> | 169 | </Formitem> |
| 170 | </el-col> | 170 | </el-col> |
| 171 | + <!-- new 申报业务类型--> | ||
| 172 | + <el-col :span="8"> | ||
| 173 | + <Formitem | ||
| 174 | + label="申报业务类型" | ||
| 175 | + prop="declareBusinessType" | ||
| 176 | + type="edit" | ||
| 177 | + > | ||
| 178 | + <el-select | ||
| 179 | + type="text" | ||
| 180 | + id="inputInner-edit-declareBusinessType" | ||
| 181 | + v-model="formData.declareBusinessType" | ||
| 182 | + clearable | ||
| 183 | + maxlength="4" | ||
| 184 | + placeholder="" | ||
| 185 | + > | ||
| 186 | + <el-option | ||
| 187 | + v-for="(item, index) in $store.getters.dict | ||
| 188 | + .DECLARE_STATISTICS_FLAG" | ||
| 189 | + :key="index" | ||
| 190 | + :label="item.itemChineseName" | ||
| 191 | + :value="item.itemValue" | ||
| 192 | + ></el-option> | ||
| 193 | + </el-select> | ||
| 194 | + </Formitem> | ||
| 195 | + </el-col> | ||
| 171 | 196 | ||
| 172 | <!-- 订单申报方 --> | 197 | <!-- 订单申报方 --> |
| 173 | <el-col :span="8"> | 198 | <el-col :span="8"> |
| ... | @@ -924,6 +949,7 @@ export default { | ... | @@ -924,6 +949,7 @@ export default { |
| 924 | ecomEntEmail: "", | 949 | ecomEntEmail: "", |
| 925 | ecomEntName: "", | 950 | ecomEntName: "", |
| 926 | orderRequester: "", | 951 | orderRequester: "", |
| 952 | + declareBusinessType: "", | ||
| 927 | certificateSerialNumber: "", | 953 | certificateSerialNumber: "", |
| 928 | certificateIndexNumber: "", | 954 | certificateIndexNumber: "", |
| 929 | file: null, | 955 | file: null, | ... | ... |
-
Please register or login to post a comment