<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>南昌工学院</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <link  rel="stylesheet" href="css/element.css">
    <link  rel="stylesheet" href="css/public.css">
    <link  rel="stylesheet" href="css/404.css">
    <script src="js/jquery.js"></script>
    <script src="js/rem.js"></script>
    <script src="js/axios.js"></script>
    <script src="js/request.js" type="module"></script>
    <script src="js/vue.js"></script>
    <script src="js/public.js"></script>
    <script src="js/element.js"></script>
</head>
<body>
<div id="head"></div>
<div id="notFound">
    <div class="not_found_box">
        <div class="not_found_box_main">
            <img src="img/nav/img.jpg">
        </div>
    </div>
    <div class="not_found_box1">
        <img src="img/404/icon.png" class="icon_img">
        <div class="not_found_box1_text1">提示信息</div>
        <div class="not_found_box1_text2">您要查看的信息不存在或者还未通过审批!</div>
        <div class="not_found_box1_text3" @click.stop="goHome">[点这里返回首页]</div>
    </div>
</div>
<div id="footer"></div>
</body>
<script type="module">
    const find = new Vue({
        el:'#notFound',
        data(){
            return {
            }
        },
        methods:{
            goHome(){
                window.location.href="/index.html";
            }
        },
        created(){
            $("#head").load("./head.html")
            $("#footer").load("./footer.html")
        },
        mounted(){
        }
    })
</script>

</html>
