inleft
2022-02-18 7b98c8999087b7551d2e2e32daf12dd10a0d9713
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<template>
    <div class="article-meta ">
        <div>
            <a-button @click="back" style="position: absolute;">
                <a-icon type="left" />
            </a-button>
        </div>
 
 
        <div class="mySecret" v-if="!isHasId">
            <h1>天长地久有时尽,此爱绵绵无绝期..</h1>
            <h3>日志id参数缺失</h3>
 
        </div>
        <div v-else>
            <div class="mySecret" v-if="myLock">
 
                <h1>越不正经的人越深情..</h1>
                
                <h3>受庇护的文字..输入神秘代码以解除封印</h3>
                <a-auto-complete v-model="secret" ref="mySearch" v-bind="search" @blur="pass">
                    <a-input-password @pressEnter="pass">
                        <a-icon slot="prefix" type="lock" style="color:rgba(0,0,0,.25)" />
                    </a-input-password>
                </a-auto-complete>
            </div>
 
            <div class="markdown-body article-detail" v-else>
                <vue-markdown :source="source"></vue-markdown>
            </div>
        </div>
    </div>
</template>
 
<script>
    import VueMarkdown from 'vue-markdown'
    import esPath from '../../assets/es.md'
 
    export default {
        props: ['id'], //接收动态路由的值
        components: {
            VueMarkdown
        },
        data() {
            return {
                isHasId: false,
                secret: '',
                myLock: true,
                search: {
                    placeholder: "",
                    autoFocus: true,
                    backfill: true,
                    value: '',
                    disabled: false
                },
                // secret: "",
                source: esPath,
            }
        },
        created() {
            var queryId = this.$route.query.id;
            if (queryId == undefined || queryId == null || queryId == "") {
                this.$message.error('日志id缺失..', 2.5)
            } else {
                this.isHasId = true;
            }
 
        },
        watch: {
            '$route'(to, from) {
                var queryId = this.$route.query.id;
                if (queryId == undefined || queryId == null || queryId == "") {
                    this.$message.error('日志id缺失..', 2.5)
                }
 
            }
        },
        methods: {
            pass() {
                if (this.secret == "") {
                    return
                }
                this.search.disabled = true
 
                this.$message
                    .loading('卍解..', 1.5)
                    .then(() => {
                        // this.myLock = false;
                        // this.$message.success('Loading finished', 2.5)
 
 
                        this.$message.warn('错了错了..', 2.5)
 
                        this.search.disabled = false;
                    })
 
            },
            back: function() {
                this.$router.go(-1);
            }
        },
        mounted() {
            // console.log(this.$route.params)
            // console.log(this.$route.params.id)
            // console.log(this.$route.query.id)
        }
    }
</script>
 
<style lang="less">
    @import '../../assets/md.less';
 
    .mySecret {
        height: 715px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: auto;
        align-items: center;
    }
 
    .markdown-body {
        padding: 10px 20px 10px 20px;
        box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.1),
            -8px -8px 18px #ffffff;
    }
 
    /* #test{
        padding-left: 25%;
        padding-right: 25%;
    } */
    /* h3 {
        margin: 40px 0 0;
    }
 
    ul {
        list-style-type: none;
        padding: 0;
    }
 
    li {
        display: inline-block;
        margin: 0 10px;
    }
 
    a {
        color: #42b983;
    }
    
     */
 
 
    /* 自己也可以再调整调整 (贡献一版 我们调整的一版样式) */
    /* .markdown-body {
        padding: 20px;
        min-width: 200px;
        max-width: 900px;
        font-size: 12px;
 
        h2 {
            font-size: 18px;
            margin: 1em 0 15px;
            padding-top: 0.8em;
            padding-bottom: 0.8em;
        }
 
        h3 {
            font-size: 14px;
            margin: 22px 0 16px;
        }
 
        h4 {
            font-size: 13px;
            margin: 20px 0 16px;
        }
 
        h5 {
            font-size: 12px;
            margin: 16px 0 16px;
            font-weight: 700;
        }
 
        p {
            font-size: 12px;
            line-height: 24px;
            color: #666666;
            margin-top: 0px;
            margin: 8px 0;
            margin: 14px 0 14px;
        }
 
        pre {
            background-color: #eee;
            margin-bottom: 8px;
            margin-top: 8px;
            margin: 12px 0 12px;
        }
 
        blockquote {
            margin-bottom: 8px;
            margin-top: 8px;
            margin: 14px 0 14px;
            background-color: #eee;
            padding: 16px 16px;
        }
 
        tr {
            background-color: #f5f5f5;
        }
 
        code {
            background-color: #eee;
        }
 
        ul,
        ol,
        li {
            list-style: unset;
            font-size: 12px;
            line-height: 20px;
            color: #666666;
            margin-top: 0px;
            margin: 8px 0;
        }
 
        blockquote {
            border-color: #48b6e2;
        }
 
        table {
            display: table;
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }
    } */
</style>