| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width,initial-scale=1">
- <title>信息创建</title>
- <!-- 引入样式 -->
- <link rel="stylesheet" href="https://unpkg.com/element-ui@2.0.3/lib/theme-chalk/index.css">
- <link rel="stylesheet" href="css/style.css">
- <style>
- .indexApp{
- background: #E79708;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- }
- .indexApp .btn-img{
- width: 150px;
- height: 150px;
- }
- .indexApp .logo{
- width: 185px;
- height: 59px;
- }
- </style>
- </head>
- <body class="w100">
- <div id="app" class="indexApp w100">
- <!--<div class="btnpanel">-->
- <!--<button class="elButton" onclick="location.href='form_zf.html'" style="border: 0px"><a style='color:#99CC66' href="form_zf.html" >租</a></button>-->
- <!--<button class="elButton" onclick="location.href='form_yh.html'" style="border: 0px"><a style='color: #FF6666' href="form_yh.html">收</a></button>-->
- <!--</div>-->
- <img src="images/icon_zu.png" onclick="location.href='form_zf.html'" style="margin-top:10%" class="btn-img" alt="">
- <img src="images/icon_shou.png" onclick="location.href='form_yh.html'" style="margin-bottom:20%" class="btn-img" alt="">
- <img src="images/logo.png" class="logo" alt="">
- </div>
- </body>
- <script src="js/vue.js"></script>
- <script src="js/jquery-3.2.1.min.js"></script>
- <script src="js/index.js"></script>
- </html>
|