crc国际化
parent
ff281396fa
commit
344e61338e
|
@ -0,0 +1,176 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||||
|
<meta http-equiv="pragram" content="no-cache">
|
||||||
|
<meta http-equiv="Expires" content="0">
|
||||||
|
<meta http-equiv="Pragma" content="no-cache">
|
||||||
|
<meta http-equiv="Cache-control" content="no-store,no-cache,must-revalidate">
|
||||||
|
<meta http-equiv="Cache" content="no-cache">
|
||||||
|
<title>Title</title>
|
||||||
|
<script src="./error_assets/vue.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app">
|
||||||
|
<div class="login-container">
|
||||||
|
<div class="login-header">
|
||||||
|
</div>
|
||||||
|
<div class="login-body">
|
||||||
|
<div class="login-l">
|
||||||
|
<div class="login-logo">
|
||||||
|
<img src="./error_assets/zzlogo3.png" alt="">
|
||||||
|
<img v-show="false" src="./error_assets/zzlogo3.png" alt="">
|
||||||
|
</div>
|
||||||
|
<div class="login-image">
|
||||||
|
<img src="./error_assets/login-bg.png">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="login-r">
|
||||||
|
<div class="title-container" style="display: flex;padding-top:180px;justify-content: flex-start;height: 100%;box-sizing: border-box">
|
||||||
|
<!-- IRC Management System -->
|
||||||
|
<!-- <div class="title" style="text-align: center;font-size: 28px;margin-top: 100px;padding-right: 120px"></div>-->
|
||||||
|
<!-- <div class="title" v-show="false">IRC Imaging System</div>-->
|
||||||
|
<div style="color: #0a84ff;text-align: left;font-size: 28px">
|
||||||
|
{{message}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
console.log(Vue)
|
||||||
|
new Vue({
|
||||||
|
el: '#app',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
aboutVisible: false,
|
||||||
|
message: '出错了'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
const urlParams = new URLSearchParams(window.location.search);
|
||||||
|
var message = urlParams.get('message');
|
||||||
|
this.message = message
|
||||||
|
}
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
<style>
|
||||||
|
#app, body, html{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
/* reset element-ui css */
|
||||||
|
.login-container .el-input {
|
||||||
|
display: inline-block;
|
||||||
|
height: 47px;
|
||||||
|
width: 85%;
|
||||||
|
}
|
||||||
|
.login-container .el-input input {
|
||||||
|
background: #f4f4f5;
|
||||||
|
border: 0px;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
border-radius: 0px;
|
||||||
|
padding: 12px 5px 12px 15px;
|
||||||
|
height: 47px;
|
||||||
|
}
|
||||||
|
.login-container .el-form-item {
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||||
|
background: #f4f4f5;
|
||||||
|
border-radius: 5px;
|
||||||
|
color: #454545;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
.login-container{
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
background: rgb(249, 249, 249);
|
||||||
|
}
|
||||||
|
.login-container .login-header{
|
||||||
|
margin: 10px 0px 20px 10px;
|
||||||
|
height: 3rem;
|
||||||
|
width: 720px;
|
||||||
|
}
|
||||||
|
.login-container .login-header .login-logo{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.login-container .login-body{
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate(-50%,-50%);
|
||||||
|
width: 1200px;
|
||||||
|
height: 600px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: rgb(255, 255, 255);
|
||||||
|
border-radius: 10px 0px 0px 10px;
|
||||||
|
}
|
||||||
|
.login-container .login-body .login-l{
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.login-container .login-body .login-l .login-logo{
|
||||||
|
position: absolute;
|
||||||
|
top:35px;
|
||||||
|
left: 50px;
|
||||||
|
}
|
||||||
|
.login-container .login-body .login-l .login-logo img{
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-container .login-body .login-l .login-image{
|
||||||
|
position: absolute;
|
||||||
|
top:10px;
|
||||||
|
left: 0px;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-container .login-body .login-l .login-image img{
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-container .login-body .login-r{
|
||||||
|
position: relative;
|
||||||
|
float: left;
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.login-footer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 50px;
|
||||||
|
left: 0px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 20px;
|
||||||
|
font-size: 14px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
color: #909399;
|
||||||
|
}
|
||||||
|
.login-footer a{
|
||||||
|
display:inline-block;
|
||||||
|
text-decoration:none;
|
||||||
|
height:20px;
|
||||||
|
line-height:20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.login-footer span{
|
||||||
|
margin: 0 2px;
|
||||||
|
|
||||||
|
}
|
||||||
|
.login-footer img{
|
||||||
|
height:20px;
|
||||||
|
line-height:20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
</html>
|
|
@ -1224,6 +1224,7 @@ export default {
|
||||||
BatchId: null,
|
BatchId: null,
|
||||||
RoleName: null
|
RoleName: null
|
||||||
})
|
})
|
||||||
|
this.timeList = []
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
min-width="80"
|
min-width="80"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
/>
|
/>
|
||||||
<el-table-column label="Action" min-width="100" fixed="right">
|
<el-table-column :label="$t('common:action:action')" min-width="100" fixed="right">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<!-- 预览 -->
|
<!-- 预览 -->
|
||||||
<el-button
|
<el-button
|
||||||
|
|
Loading…
Reference in New Issue