5de7685d by zhaoqian

表单样式提交

1 parent 545dcf99
VUE_APP_api = 'http://192.168.2.108:8000'
VUE_APP_api1 = 'http://192.168.2.76:8000'
VUE_APP_api2 = 'http://127.0.0.1:8006'
VUE_APP_name = '开发环境'
NODE_ENV="development"
VUE_APP_VERSION = 'psh'
\ No newline at end of file
......
......@@ -17,6 +17,7 @@
"e-icon-picker": "^1.0.7",
"element-ui": "^2.13.2",
"file-saver": "^2.0.2",
"form-making": "^1.2.9",
"js-cookie": "^2.2.1",
"mockjs": "^1.1.0",
"screenfull": "^5.0.2",
......
......@@ -51,6 +51,16 @@ const constantRoutes = [
name: '综合查询',
code: '0-5',
component: () => import('@/views/panel/search/index')
},
// {
// path: '/zrz',
// code: 'zrz',
// component: () => import('@/views/zrz/index'),
// },
{
path: '/zrz1',
code: 'zrz1',
component: () => import('@/views/zrz/index1'),
}
]
}
......
.zrz {
min-height: 200px;
width: 100%;
//margin-top: 10px;
float: left;
.content-left{
width: 40%;
float: left;
//border: 1px solid #fc2b34;
padding: 10px 0 0 10px;
}
.content-left-form{
float: right;
//border: 1px solid #fca118;
}
.content-right{
width: 56%;
float: right;
//border: 1px solid #fca118;
padding: 10px 0 0 10px;
}
.el-row{
border-top: 1px solid grey;
border-left: 1px solid grey;
border-right: 1px solid grey;
display: flex;
flex-wrap: wrap
}
.el-form-item{
font-weight: bold;
font-size: xx-large
}
.el-input{
width: 300px;
}
.el-col{
border-right: 1px solid grey;
height: 45px;
}
}
\ No newline at end of file
......@@ -49,7 +49,7 @@ module.exports = {
hotOnly: false,
proxy: {
"/api": {
target: process.env.VUE_APP_api,
target: process.env.VUE_APP_api2,
changeOrigin: true,
pathRewrite: {
"^/api": "/",
......