Showing
3 changed files
with
38 additions
and
4 deletions
| ... | @@ -50,6 +50,7 @@ router.beforeEach((to, from, next) => { | ... | @@ -50,6 +50,7 @@ router.beforeEach((to, from, next) => { |
| 50 | "DECLARE_STATISTICS_FLAG", | 50 | "DECLARE_STATISTICS_FLAG", |
| 51 | "RETURN_STATUS", | 51 | "RETURN_STATUS", |
| 52 | "FORWARD_STATUS", | 52 | "FORWARD_STATUS", |
| 53 | + "DATA_SOURCE_IMPORT", | ||
| 53 | ]); | 54 | ]); |
| 54 | // 根据roles权限生成可访问的路由表 | 55 | // 根据roles权限生成可访问的路由表 |
| 55 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | 56 | router.addRoutes(accessRoutes); // 动态添加可访问路由表 | ... | ... |
| ... | @@ -18,8 +18,18 @@ | ... | @@ -18,8 +18,18 @@ |
| 18 | > | 18 | > |
| 19 | <el-row :gutter="5"> | 19 | <el-row :gutter="5"> |
| 20 | <el-col :span="3"> | 20 | <el-col :span="3"> |
| 21 | - <Formitem label="电商企业名称" prop="ebpCode"> | 21 | + <Formitem label="电商企业名称" prop="ebcName"> |
| 22 | - <el-select | 22 | + <el-input |
| 23 | + type="text" | ||
| 24 | + class="inputShadow" | ||
| 25 | + id="inputInner--ebcName" | ||
| 26 | + resize="none" | ||
| 27 | + v-model="formData.ebcName" | ||
| 28 | + disabled | ||
| 29 | + clearable | ||
| 30 | + placeholder="" | ||
| 31 | + ></el-input> | ||
| 32 | + <!-- <el-select | ||
| 23 | type="text" | 33 | type="text" |
| 24 | id="inputInner--ebpCode" | 34 | id="inputInner--ebpCode" |
| 25 | v-model="formData.ebpCode" | 35 | v-model="formData.ebpCode" |
| ... | @@ -33,7 +43,7 @@ | ... | @@ -33,7 +43,7 @@ |
| 33 | :label="item.ecomEntName" | 43 | :label="item.ecomEntName" |
| 34 | :value="item.ecomEntCode" | 44 | :value="item.ecomEntCode" |
| 35 | ></el-option> | 45 | ></el-option> |
| 36 | - </el-select> | 46 | + </el-select> --> |
| 37 | </Formitem> | 47 | </Formitem> |
| 38 | </el-col> | 48 | </el-col> |
| 39 | <el-col :span="3"> | 49 | <el-col :span="3"> | ... | ... |
| ... | @@ -176,6 +176,29 @@ | ... | @@ -176,6 +176,29 @@ |
| 176 | </Formitem> | 176 | </Formitem> |
| 177 | </el-col> | 177 | </el-col> |
| 178 | </el-row> | 178 | </el-row> |
| 179 | + <!-- 数据来源 --> | ||
| 180 | + <el-row class="backgroundRow"> | ||
| 181 | + <el-col :span="5"> | ||
| 182 | + <Formitem label="数据来源" prop="dataSourceImport"> | ||
| 183 | + <el-select | ||
| 184 | + type="text" | ||
| 185 | + id="inputInner--dataSourceImport" | ||
| 186 | + v-model="sreachFormData.dataSourceImport" | ||
| 187 | + clearable | ||
| 188 | + placeholder="" | ||
| 189 | + > | ||
| 190 | + <el-option | ||
| 191 | + v-for="(item, index) in $store.getters.dict | ||
| 192 | + .DATA_SOURCE_IMPORT" | ||
| 193 | + :key="index" | ||
| 194 | + :label="item.itemChineseName" | ||
| 195 | + :value="item.itemValue" | ||
| 196 | + ></el-option> | ||
| 197 | + </el-select> | ||
| 198 | + </Formitem> | ||
| 199 | + </el-col> | ||
| 200 | + </el-row> | ||
| 201 | + <!-- --> | ||
| 179 | </el-form> | 202 | </el-form> |
| 180 | </div> | 203 | </div> |
| 181 | <div class="optionButton"> | 204 | <div class="optionButton"> |
| ... | @@ -863,7 +886,7 @@ export default { | ... | @@ -863,7 +886,7 @@ export default { |
| 863 | console.log(error); | 886 | console.log(error); |
| 864 | } finally { | 887 | } finally { |
| 865 | this.search(0); | 888 | this.search(0); |
| 866 | - this.tableMaxheight = window.innerHeight - 300; | 889 | + this.tableMaxheight = window.innerHeight - 335; |
| 867 | } | 890 | } |
| 868 | }, | 891 | }, |
| 869 | mounted() { | 892 | mounted() { | ... | ... |
-
Please register or login to post a comment