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:
49
clientarea/hgcloud/agreement.php
Normal file
49
clientarea/hgcloud/agreement.php
Normal file
@@ -0,0 +1,49 @@
|
||||
{include file="header"}
|
||||
<link rel="stylesheet" href="/{$template_catalog}/template/{$themes}/css/agreement.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="mainLoading">
|
||||
<div class="ddr ddr1"></div>
|
||||
<div class="ddr ddr2"></div>
|
||||
<div class="ddr ddr3"></div>
|
||||
<div class="ddr ddr4"></div>
|
||||
<div class="ddr ddr5"></div>
|
||||
</div>
|
||||
<div id="content" class="template">
|
||||
<div class="contnet-right-out">
|
||||
<div class="content-right" v-show="detailData.id" v-loading="contentLoading">
|
||||
<!-- 标题 -->
|
||||
<div class="right-title">
|
||||
{{detailData.title}}
|
||||
</div>
|
||||
<!-- 更新时间 -->
|
||||
<div class="right-keywords-time">
|
||||
<div class="right-time">
|
||||
{{lang.agreement_text1}}:{{detailData.create_time | formateTime}}
|
||||
</div>
|
||||
<div class="right-keywords">
|
||||
{{lang.agreement_text2}}:{{detailData.keywords || '--'}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- 主体内容 -->
|
||||
<div class="right-content" v-html="calStr(detailData.content)">
|
||||
</div>
|
||||
<!-- 附件 -->
|
||||
<div class="right-attachment">
|
||||
{{lang.agreement_text3}}:
|
||||
<div class="right-attachment-item" v-for="(f,i) in detailData.attachment" :key="i"
|
||||
@click="downloadfile(f.url)">
|
||||
<span :title="f.name">
|
||||
<i class="el-icon-tickets"></i><span>{{f.name}}</span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<script src="/{$template_catalog}/template/{$themes}/js/agreement.js"></script>
|
||||
{include file="footer"}
|
||||
Reference in New Issue
Block a user