Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHO-ACTIVITY-PHP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
ccbikai
2015-11-25 14:36:41 +0800
Commit
002ef6e23e3b3534a3d7d5530045b9f20ee7219e
1 parent
ec6ab5b0
增加帮助中心 晒单规则
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
0 deletions
template/m.yohobuy.com/actions/index/help/share-order.phtml
yohobuy/m.yohobuy.com/application/controllers/Help.php
template/m.yohobuy.com/actions/index/help/share-order.phtml
0 → 100644
View file @
002ef6e
{{!-- APP 内置晒单介绍 --}}
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
晒单评价规则
</title>
<style
type=
"text/css"
>
*
{
margin
:
0
;
padding
:
0
;
}
ul
{
list-style
:
none
;
margin-bottom
:
30px
;
}
.help
{
padding
:
30px
30px
;
font-size
:
16px
;
line-height
:
1.5
;
color
:
#444
;
}
</style>
</head>
<body>
<div
class=
"help"
>
<p>
晒单评价规则:
</p>
<ul>
<li>
1. 只能对您购买过的商品进行晒单评价;
</li>
<li>
2. 晒单通过审核后即可获得奖励,且一件商品只能获得一次晒单奖励;
</li>
<li>
3. 未通过审核的晒单评价内容将会被删除,若多次出现晒单评价未审核通过的情况,YOHO!BUY有货有权禁止该用户对商品继续晒单评价;
</li>
</ul>
<p>
如何通过审核:
</p>
<ul>
<li>
1. 晒单图片应与商品相关、且不得出现含违反法律、法规的内容的;
</li>
<li>
2. 评价应有一定参考价值的信息,不可以直接拷贝别人的评价文字哦~
</li>
</ul>
<p>
其他说明:
</p>
<ul>
<li>
1. YOHO!BUY有货对用户在本站进行晒单评价的文字、图片享有使用权利;
</li>
<li>
2. 用户所晒单评价的文字、图片提交发布后,默认同步YOHO!SHOW平台;
</li>
</ul>
</div>
</body>
</html>
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/application/controllers/Help.php
0 → 100644
View file @
002ef6e
<?php
use
Action\AbstractAction
;
use
Plugin\Helpers
;
/**
* 帮助中心
*/
class
HelpController
extends
AbstractAction
{
/**
* 晒单
*/
public
function
shareOrderAction
()
{
// 渲染模板并输出
$this
->
_view
->
display
(
'share-order'
);
}
}
\ No newline at end of file
...
...
Please
register
or
login
to post a comment