| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
- <title></title>
- <link rel="icon" href="../static/img/favicon2.ico" type="img/x-ico">
- <link rel="stylesheet" href="../static/css/index.css">
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vant@2.12/lib/index.css" />
- <script src="https://cdn.jsdelivr.net/npm/vue@2.6/dist/vue.min.js"></script>
- <script src="https://cdn.jsdelivr.net/npm/vant@2.12/lib/vant.min.js"></script>
- <style>
- .container {
- display: flex;
- height: 100vh;
- align-items: center;
- justify-content: center;
- }
- .footer {
- position: absolute;
- bottom: 0.34rem;
- height: 1.36rem;
- padding: 0 1.14rem;
- width: 100%;
- left: 0;
- }
- .footer img {
- width: 100%;
- height: 100%;
- }
- .hideContainer {
- width: 100%;
- text-align: center;
- }
- .hideContainer img {
- width: 2.8rem;
- height: 2.8rem;
- }
- .hideContainer p {
- font-size: 0.28rem;
- margin-top: 0.3rem;
- font-family: PingFangSC-Regular, PingFang SC;
- color: #999999;
- }
- </style>
- </head>
- <body>
- <div id="app" v-cloak class="container">
- <div class="footer">
- <img src="../static/offImg/downLoad.png" alt="" @click="download" />
- </div>
- <div v-if='isshow' class="hideContainer">
- <img src="../static//offImg/404.png" alt="" />
- <p>该资讯已被删除</p>
- </div>
- </div>
- <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
- <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
- <script src="../static/js/vender/vue/config.js"></script>
- <script src="../static/js/vender/vue/api.js"></script>
- <script type="text/javascript">
- new Vue({
- el: '#app',
- data: {
- isshow: false,
- },
- created() {
- // window.location.href = 'investigate.html'
- },
- mounted() {
- //this.getProcess()
- this.$toast.loading({
- message: '加载中...',
- forbidClick: true,
- loadingType: 'spinner',
- });
- },
- methods: {
- download() {
- var u = navigator.userAgent,
- app = navigator.appVersion;
- var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //g
- var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
- if (isAndroid) {
- window.location.href =
- 'http://www.androidscloud.com/admin/attachment/download/2117e9b7f3734b16b81b9d7bb1c5a601';
- } else if (isIOS) {
- window.location.href = 'https://apps.apple.com/cn/app/id1541800909';
- } else {
- }
- },
- }
- })
- </script>
- </body>
- </html>
|