comment.html 1.14 KB
{template 'common/header'}
<style>
	.message-editor {padding: 10px;}
	.message-editor .title {color: #4c4c4c;font-size: 20px;line-height: 1.3;font-weight: 500;}
	.message-editor .content {margin: 20px 0;}
	.message-editor .content textarea {resize: none;border-color: #e7e7eb;border-radius: 0;border-bottom: 0;padding: 8px;}
	.message-editor .content .emoij {border: 1px solid #e7e7eb;border-top: 0;margin-top: -6px;padding: 8px;}
	.message-editor .content .emoij img{width: 30px;height: 30px;}
</style>
<div class="message-editor">
	<form action="{php echo murl('site/site/comment')}" method="post">
		<div class="title">{php echo $article_info['title']}</div>
		<input type="hidden" name = "article_id" value="{php echo $article_id}">
		<div class="content">
			<textarea name="content" id="" cols="20" rows="3" placeholder="我也说两句"></textarea>
			<!--<div class="emoij">-->
				<!--<a href=""><img src="{$_W['siteroot']}app/resource/images/message-emoij.png" alt=""></a>-->
			<!--</div>-->
		</div>
		<button class="mui-btn mui-btn-success mui-btn-block js-check-mobile" uniacid="{$_W['uniacid']}">提交</button>
	</form>
</div>
{template 'common/footer'}