feat: 会员中心 hgcloud 主题初始化 + drone 部署步骤
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/ - .gitignore 排除压缩包和临时解压目录 - drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
const certificationDialog = {
|
||||
template: `
|
||||
<!-- 未实名认证 dialog -->
|
||||
<div class="rz-dialog">
|
||||
<el-dialog width="10rem" :visible.sync="isShow" @close="rzClose">
|
||||
<div class="dialag-content">
|
||||
<h2 class="tips-title">您尚未进行实名认证,请先完成实名认证</h2>
|
||||
<p class="tips-text">据我国2016年11月7日全国人民代表大会常务委员会通过的《中华人民共和国网络安全法》规定,用户不提供真实身份信息的,网络运营者不得为其提供相关服务。 为了符合国家法律法规,以及不影响您参与优惠活动,请您先实名认证。实名认证信息保密工作是统一管理,请放心填写。</p>
|
||||
<div class="button-box">
|
||||
<el-button @click="goCertification">立即认证</el-button>
|
||||
<el-link @click ="rzClose()">以后再说</el-link>
|
||||
</div>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</div>
|
||||
`,
|
||||
props: {
|
||||
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isShow: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
rzClose() {
|
||||
this.isShow = false
|
||||
},
|
||||
goCertification() {
|
||||
location.href = `plugin/${getPluginId("IdcsmartCertification")}/authentication_select.htm`;
|
||||
},
|
||||
|
||||
},
|
||||
watch: {}
|
||||
}
|
||||
Reference in New Issue
Block a user