mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-04-07 15:06:43 +08:00
88 lines
2.5 KiB
HTML
88 lines
2.5 KiB
HTML
<!--{if $do == 'getcomment'}-->
|
|
<!--{template common/header_ajax}-->
|
|
|
|
<!--{loop $list $value}-->
|
|
<!--{template thread_item}-->
|
|
<!--{/loop}-->
|
|
<!--{if $multi}--><div class="comment-page clearfix">$multi</div><!--{/if}-->
|
|
|
|
<script type="text/javascript" reload="1">
|
|
jQuery(document)
|
|
.on('mouseenter','.cmt_fed',function(){
|
|
jQuery(this).addClass('hover_cmt_fed');
|
|
})
|
|
.on('mouseleave','.cmt_fed',function(){
|
|
jQuery(this).removeClass('hover_cmt_fed');
|
|
});
|
|
jcLoader().load({
|
|
type:'css',
|
|
ids:'js_dzzthumb.css',
|
|
url:'static/dzzthumb/jquery.dzzthumb.css?{VERHASH}'
|
|
},function(){
|
|
jcLoader().load({
|
|
type:'js',
|
|
ids:'js_dzzthumb',
|
|
url:'static/dzzthumb/jquery.dzzthumb.js?{VERHASH}'
|
|
},function(){
|
|
jQuery('img[data-original]').dzzthumb();
|
|
});
|
|
});
|
|
|
|
</script>
|
|
<!--{template common/footer_ajax}-->
|
|
<!--{elseif $do == 'getcommentbycid'}-->
|
|
<!--{if $value['pcid']>0}-->
|
|
{eval $value1=$value}
|
|
<!--{template reply_item}-->
|
|
<!--{else}-->
|
|
<!--{template thread_item}-->
|
|
<!--{/if}-->
|
|
|
|
<!--{elseif $do == 'getreplys'}-->
|
|
<!--{template common/header_ajax}-->
|
|
<!--{loop $list $value1}-->
|
|
<!--{template reply_item}-->
|
|
<!--{/loop}-->
|
|
<script type="text/javascript" reload="1">
|
|
|
|
<!--{if $limit=='0'}-->
|
|
jQuery('#comment_{$cid}').find('.txt_cfed a').off('click').addClass('cur')
|
|
.on('click',function(){
|
|
if(jQuery(this).hasClass('cur')){
|
|
var el=jQuery('#reply_list_{$cid} .cmt_fed');
|
|
for(var i=0;i<el.length;i++){
|
|
if(i>4){
|
|
el.eq(i).hide();
|
|
}
|
|
}
|
|
jQuery(this).removeClass('cur')
|
|
}else{
|
|
jQuery('#reply_list_{$cid} .cmt_fed').show();
|
|
jQuery(this).addClass('cur')
|
|
}
|
|
return false;
|
|
});
|
|
<!--{else}-->
|
|
jQuery('#comment_{$cid}').find('.txt_cfed a').on('click',function(){
|
|
ajaxget('{MOD_URL}&op=ajax&do=getreplys&cid=$cid','reply_list_$cid','reply_list_$cid');
|
|
return false;
|
|
});
|
|
<!--{/if}-->
|
|
|
|
</script>
|
|
<!--{template common/footer_ajax}-->
|
|
|
|
<!--{elseif $do == 'getReplyForm'}-->
|
|
<!--{template common/header_ajax}-->
|
|
<!--{template reply_form}-->
|
|
<!--{template common/footer_ajax}-->
|
|
<!--{elseif $do == 'getPublishForm'}-->
|
|
<!--{template common/header_ajax}-->
|
|
<!--{template publish_form}-->
|
|
<!--{template common/footer_ajax}-->
|
|
<!--{elseif $do == 'edit'}-->
|
|
<!--{template common/header_ajax}-->
|
|
<!--{template edit_form}-->
|
|
<!--{template common/footer_ajax}-->
|
|
<!--{/if}-->
|