Files
mes-ui-d2/src/pages/index/components/d2-help-btn/index.vue
liyang 1691f22cf3 更新地址
Former-commit-id: de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly de192e4331cf6507f1d6b65792db9c8e02e7b3d2 [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6] [formerly 91ea57c90a4d84e2524a0d1dcb95b13098bad1a6 [formerly 4e659ec9585bd40193f621e2a1adfe447b01735c [formerly ee582d8ba8a8576b17cfda79064ba63bde908a2f]]]]]
Former-commit-id: 0c9e1c6252b593c4dba36c9df36e5192b6675cc3
Former-commit-id: 88bb9b5469b468a707ee148ebab85c9a2e8104c5
Former-commit-id: 836e7e9d626eec4065dc693ca0e0d51214e91506 [formerly 68980db7305a4f3f4f237c10ee4f2324cba9b37c]
Former-commit-id: 0de4be04331d37214f58befdce53c3dcf9dbdf57
Former-commit-id: a0e329466e0a5c22a69abca0e4888eedee9662e4
Former-commit-id: 02290aab53ae88a42f388f90b1ff5574c09c384e
Former-commit-id: 7bede6044d668dc346c8c8126f074d28172ea4de
Former-commit-id: 30883c4ea914733f76758639fc4c7719443099ee
2018-10-24 10:37:04 +08:00

56 lines
1.7 KiB
Vue

<template>
<div>
<img
src="./image/d2-help-button@2x.png"
style="width: 138px;"
@click="dialogVisible = true">
<el-dialog
title="帮助"
width="600px"
:visible.sync="dialogVisible"
:append-to-body="true">
<div style="margin-top: -25px; margin-bottom: -25px;">
<el-button-group class="d2-mb">
<el-button @click="$open('https://github.com/d2-projects/d2-admin')">
<d2-icon name="github" class="d2-mr-5"/>
主页
</el-button>
<el-button @click="$open('https://doc.d2admin.fairyever.com/zh/')">
<d2-icon name="book" class="d2-mr-5"/>
中文文档
</el-button>
<el-button @click="$open('https://github.com/d2-projects/d2-admin/issues')">
<d2-icon name="question" class="d2-mr-5"/>
issues
</el-button>
<el-button @click="$open('https://github.com/d2-projects/d2-admin/issues/new/choose')">
<d2-icon name="plus" class="d2-mr-5"/>
New issue
</el-button>
</el-button-group>
<el-row :gutter="20">
<el-col :span="12">
<el-alert :closable="false" type="info" title="扫码进 QQ 群 [ 推荐 ]" class="d2-mb"/>
<img src="./image/qq.jpg" style="width: 100%;">
</el-col>
<el-col :span="12">
<el-alert :closable="false" type="info" title="作者微信 加好友后邀请进微信群" class="d2-mb"/>
<img src="./image/we.jpg" style="width: 100%;">
</el-col>
</el-row>
</div>
</el-dialog>
</div>
</template>
<script>
export default {
name: 'd2-page-cover',
data () {
return {
dialogVisible: false
}
}
}
</script>