表单样式提交
Showing
8 changed files
with
60 additions
and
1 deletions
1 | VUE_APP_api = 'http://192.168.2.108:8000' | 1 | VUE_APP_api = 'http://192.168.2.108:8000' |
2 | VUE_APP_api1 = 'http://192.168.2.76:8000' | 2 | VUE_APP_api1 = 'http://192.168.2.76:8000' |
3 | VUE_APP_api2 = 'http://127.0.0.1:8006' | ||
3 | VUE_APP_name = '开发环境' | 4 | VUE_APP_name = '开发环境' |
4 | NODE_ENV="development" | 5 | NODE_ENV="development" |
5 | VUE_APP_VERSION = 'psh' | 6 | VUE_APP_VERSION = 'psh' |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
This diff is collapsed.
Click to expand it.
... | @@ -17,6 +17,7 @@ | ... | @@ -17,6 +17,7 @@ |
17 | "e-icon-picker": "^1.0.7", | 17 | "e-icon-picker": "^1.0.7", |
18 | "element-ui": "^2.13.2", | 18 | "element-ui": "^2.13.2", |
19 | "file-saver": "^2.0.2", | 19 | "file-saver": "^2.0.2", |
20 | "form-making": "^1.2.9", | ||
20 | "js-cookie": "^2.2.1", | 21 | "js-cookie": "^2.2.1", |
21 | "mockjs": "^1.1.0", | 22 | "mockjs": "^1.1.0", |
22 | "screenfull": "^5.0.2", | 23 | "screenfull": "^5.0.2", | ... | ... |
... | @@ -51,6 +51,16 @@ const constantRoutes = [ | ... | @@ -51,6 +51,16 @@ const constantRoutes = [ |
51 | name: '综合查询', | 51 | name: '综合查询', |
52 | code: '0-5', | 52 | code: '0-5', |
53 | component: () => import('@/views/panel/search/index') | 53 | component: () => import('@/views/panel/search/index') |
54 | }, | ||
55 | // { | ||
56 | // path: '/zrz', | ||
57 | // code: 'zrz', | ||
58 | // component: () => import('@/views/zrz/index'), | ||
59 | // }, | ||
60 | { | ||
61 | path: '/zrz1', | ||
62 | code: 'zrz1', | ||
63 | component: () => import('@/views/zrz/index1'), | ||
54 | } | 64 | } |
55 | ] | 65 | ] |
56 | } | 66 | } | ... | ... |
src/views/zrz/index.less
0 → 100644
1 | .zrz { | ||
2 | min-height: 200px; | ||
3 | width: 100%; | ||
4 | //margin-top: 10px; | ||
5 | float: left; | ||
6 | |||
7 | .content-left{ | ||
8 | width: 40%; | ||
9 | float: left; | ||
10 | //border: 1px solid #fc2b34; | ||
11 | padding: 10px 0 0 10px; | ||
12 | } | ||
13 | |||
14 | .content-left-form{ | ||
15 | float: right; | ||
16 | //border: 1px solid #fca118; | ||
17 | } | ||
18 | |||
19 | .content-right{ | ||
20 | width: 56%; | ||
21 | float: right; | ||
22 | //border: 1px solid #fca118; | ||
23 | padding: 10px 0 0 10px; | ||
24 | } | ||
25 | |||
26 | .el-row{ | ||
27 | border-top: 1px solid grey; | ||
28 | border-left: 1px solid grey; | ||
29 | border-right: 1px solid grey; | ||
30 | display: flex; | ||
31 | flex-wrap: wrap | ||
32 | } | ||
33 | |||
34 | .el-form-item{ | ||
35 | font-weight: bold; | ||
36 | font-size: xx-large | ||
37 | } | ||
38 | |||
39 | .el-input{ | ||
40 | width: 300px; | ||
41 | } | ||
42 | |||
43 | .el-col{ | ||
44 | border-right: 1px solid grey; | ||
45 | height: 45px; | ||
46 | } | ||
47 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
src/views/zrz/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/zrz/index1.vue
0 → 100644
This diff is collapsed.
Click to expand it.
... | @@ -49,7 +49,7 @@ module.exports = { | ... | @@ -49,7 +49,7 @@ module.exports = { |
49 | hotOnly: false, | 49 | hotOnly: false, |
50 | proxy: { | 50 | proxy: { |
51 | "/api": { | 51 | "/api": { |
52 | target: process.env.VUE_APP_api, | 52 | target: process.env.VUE_APP_api2, |
53 | changeOrigin: true, | 53 | changeOrigin: true, |
54 | pathRewrite: { | 54 | pathRewrite: { |
55 | "^/api": "/", | 55 | "^/api": "/", | ... | ... |
-
Please register or sign in to post a comment