Authored by tmq

test

... ... @@ -617,7 +617,7 @@ define('yohood', function(require, exports) {
shareUrl = $(".share").attr("data-link");
shareCover = $(".share").attr("cover-url");
detailTitle = $("input[name=title]").val();
detailTitle = $('#title').val();
detailSubtitle = $('.detail-title').find('h3');
//分享
share.init({
... ...
... ... @@ -2,7 +2,7 @@
<?php $this->_block('main');?>
<div class="detail-title">
<h2 class="title"><?php echo $this->view->info['title']?></h2>
<input type="hidden" name="title" value="<?php echo $this->view->info['title']?>">
<input type="hidden" name="titles" id="title" value="<?php echo $this->view->info['title']?>">
<h3 class="subtitle"><?php echo date('m月d日 H:i', $this->view->info['create_time'])?></h3>
</div>
<?php if(!empty($this->view->info['pics'])):?>
... ...