221 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			221 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			HTML
		
	
	
<!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/zzlogo2.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 class="login-footer">
 | 
						|
          <span>Copyright © {{ new Date().getFullYear() }} 上海展影医疗科技有限公司 版权所有</span>
 | 
						|
          <span> | </span>
 | 
						|
          <a target="_blank" href="https://beian.miit.gov.cn/">
 | 
						|
        <span style="color:#999">
 | 
						|
          沪ICP备2021037850-2
 | 
						|
        </span>
 | 
						|
          </a>
 | 
						|
          <span> | </span>
 | 
						|
          <a style="color:#999" target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31011002005859">
 | 
						|
            <img src="./error_assets/filing.png">
 | 
						|
            <span>沪公网安备 31011002005859号</span>
 | 
						|
          </a>
 | 
						|
        </div>
 | 
						|
        <el-dialog
 | 
						|
          v-if="aboutVisible"
 | 
						|
          :visible.sync="aboutVisible"
 | 
						|
          width="680px"
 | 
						|
          style="margin-top: 0;"
 | 
						|
          :close-on-click-modal="false"
 | 
						|
          size="small"
 | 
						|
        >
 | 
						|
          <div style="margin: 0 auto;width: 600px;line-height: 28px;text-align: center" >
 | 
						|
            <h1 style="text-align: center;margin-bottom: 20px">关于</h1>
 | 
						|
            <p style="margin-bottom: 20px">
 | 
						|
              IRC Imaging System
 | 
						|
            </p>
 | 
						|
            <p style="margin-bottom: 20px">
 | 
						|
              V1.3.0.001
 | 
						|
            </p>
 | 
						|
            <p style="margin-bottom: 20px">
 | 
						|
              Copyright © {{ new Date().getFullYear() }} 上海展影医疗科技有限公司 版权所有
 | 
						|
            </p>
 | 
						|
            <p style="margin-bottom: 20px" >
 | 
						|
              Copyright © {{ new Date().getFullYear() }} Shanghai Extensive Imaging Inc.
 | 
						|
            </p>
 | 
						|
            <div style="margin-bottom: 20px">
 | 
						|
              <img style="width: 180px" src="./error_assets/zzlogo2.png" alt="">
 | 
						|
            </div>
 | 
						|
          </div>
 | 
						|
          <div slot="footer" class="dialog-footer">
 | 
						|
            <el-button type="primary" size="mini" @click="aboutVisible = false">关闭</el-button>
 | 
						|
          </div>
 | 
						|
        </el-dialog>
 | 
						|
      </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>
 |