Commit 70a86e6d authored by 李志鸣's avatar 李志鸣

opt(路由、登录等): 修改登录页系统名称,欢迎页系统名称,将车间生产计划菜单项改为生产计划

parent db671d1e
...@@ -13,10 +13,10 @@ module.exports = { ...@@ -13,10 +13,10 @@ module.exports = {
// 代理后端服务器 // 代理后端服务器
proxyTable: { proxyTable: {
'/host': { '/host': {
// target: 'http://10.100.172.150:9108', // 设置你调用的接口域名和端口号 别忘了加http target: 'http://10.100.172.150:9108', // 设置你调用的接口域名和端口号 别忘了加http
// target: 'http://192.168.43.244:8888', // 东伟服务器地址 // target: 'http://192.168.43.244:8888', // 东伟服务器地址
// target: 'http://192.168.43.153:8080', // 训浩服务器 // target: 'http://192.168.43.153:8080', // 训浩服务器
target: 'http://169.254.129.46:8082', // 本地服务器 // target: 'http://192.168.43.98:8082', // 本地服务器
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
'^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可 '^/host': ''//这里理解成用‘/host’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
......
...@@ -31,8 +31,8 @@ export default { ...@@ -31,8 +31,8 @@ export default {
ElectrophoresisTank: '电泳槽液日常检测报告', ElectrophoresisTank: '电泳槽液日常检测报告',
Pretreatment: '前处理槽液日常检测报告', Pretreatment: '前处理槽液日常检测报告',
// 涂装生产计划 // 涂装生产计划
ProductionPlan: '涂装生产计划', ProductionPlan: '生产计划',
ProductionPlanIndex: '涂装生产计划', ProductionPlanIndex: '生产计划',
// AVI大屏 // AVI大屏
Monitor: 'AVI大屏', Monitor: 'AVI大屏',
MonitorIndex: 'AVI大屏', MonitorIndex: 'AVI大屏',
......
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
<div class="login-page"> <div class="login-page">
<div class="login-pack"> <div class="login-pack">
<div class="login-view-pack"> <div class="login-view-pack">
<div class="title">SCADA+AVI系统</div> <div class="title">
<span>数据采集系统</span><br/>
<span>AVI车体自动识别系统</span>
</div>
<div class="user-name"> <div class="user-name">
<el-input <el-input
v-model="username" v-model="username"
...@@ -185,7 +188,7 @@ ...@@ -185,7 +188,7 @@
right: 20px; right: 20px;
.title { .title {
font-size: 30px; font-size: 24px;
color: #0377ff; color: #0377ff;
text-align: center; text-align: center;
font-weight: bold; font-weight: bold;
...@@ -193,7 +196,7 @@ ...@@ -193,7 +196,7 @@
} }
.user-name { .user-name {
width: 320px; width: 290px;
margin: 0 auto; margin: 0 auto;
margin-top: 80px; margin-top: 80px;
position: relative; position: relative;
...@@ -223,7 +226,7 @@ ...@@ -223,7 +226,7 @@
} }
.password { .password {
width: 320px; width: 290px;
margin: 0 auto; margin: 0 auto;
margin-top: 48px; margin-top: 48px;
position: relative; position: relative;
...@@ -253,10 +256,11 @@ ...@@ -253,10 +256,11 @@
} }
.button { .button {
padding: 0 20px; padding: 0 40px;
margin-top: 45px; margin-top: 45px;
.el-button { .el-button {
background-color: rgb(3,119,255);
width: 100%; width: 100%;
height: 46px; height: 46px;
font-size: 22px; font-size: 22px;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="page-pack"> <div class="page-pack">
<div class="title-pack clear-float pl-15 pr-15"> <div class="title-pack clear-float pl-15 pr-15">
<div class="float-left"> <div class="float-left">
<span class="page-title-text">涂装生产计划</span> <span class="page-title-text">生产计划</span>
</div> </div>
<div class="float-right page-refresh"> <div class="float-right page-refresh">
<span @click="doRefreshClick" class="pointer"> <span @click="doRefreshClick" class="pointer">
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
ref="ImportPlan" ref="ImportPlan"
@onUploadSuccess="importPlanUploadSuccess"> @onUploadSuccess="importPlanUploadSuccess">
</ImportPlan> </ImportPlan>
</div> </div>
</template> </template>
<script> <script>
...@@ -236,4 +236,4 @@ ...@@ -236,4 +236,4 @@
} }
} }
} }
</style> </style>
\ No newline at end of file
<template> <template>
<div class="welcome-page"> <div class="welcome-page">
<span class="vertical-line"></span> <span class="vertical-line"></span>
<span class="text-pack"><span style="font-size: 20px;">欢迎登录,</span><br/> 中通SCADA+AVI系统</span> <span class="text-pack">
<span style="font-size: 20px;">欢迎登录,</span><br/>
<span>数据采集系统、</span><br/>
<span>AVI车体自动识别系统</span>
</span>
<img class="img" src="../../assets/images/Welcome/welcome_bg.png" alt=""> <img class="img" src="../../assets/images/Welcome/welcome_bg.png" alt="">
</div> </div>
</template> </template>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment