张逸杰郭俊辰辰和白敬亭谁更帅?


来自: 呼呼咕咕
2019-12-06 21:45:39
', prompt:'', callback: action});
return false;
})
// 介绍折叠
$('.fold-dialog-intro').click(function() {
generate_group_prompt_dialog({
content: [
'',
'什么是折叠?',
'折叠是提供给小组组长/管理员的内容管理工具,对于存在争议、低质/水化的内容,组长/管理员可将其折叠,有效维护小组高质、友善的讨论氛围。折叠后的内容,如组长/管理员判断已不再需要折叠,可将其恢复。',
'一个讨论被折叠后会发生什么?',
'该内容不会被删除,只是不再展示在小组讨论列表中,且无法被顶起。折叠操作不会通知内容发布者。',
'请注意,如组长/管理员滥用该功能,无故限制组员的正常发言,一经发现,小组将被禁用折叠功能。',
'',
''
].join(''),
buttons: ['confirm'],
callback: function () { dui.Dialog().close() }
})
})
// 查看成员记录
var active_members = [];
$('.memberstats-dialog-confirm').click(function() {
var el = $(this)
var action_text = $(this).attr('title')
var uid = el.data('uid')
var uname = el.data('uname')
var gid = el.data('gid')
dui.Dialog({
width: 'auto',
cls: 'dlg-stats',
content: '加载中...',
buttons: ['confirm']
}).open()
$.get('/j/group/' + gid +'/member_stats', {
user_id: uid,
need_topic_count: 1,
full: 1
}, function(resp) {
var title = uname
if (active_members.indexOf(String(uid)) > -1) {
title += ''
}
var active_text = [
'发布讨论 ' + resp.topic_count + '',
'发布回复 ' + resp.comments_count + '',
resp.elite_count ? '精华讨论 ' + resp.elite_count + '' : ''
].map(function(t) { return ''+t+''}).join('')
var unruled_text = [
resp.deleted_count > 0 ? '讨论被删除 ' + resp.deleted_count + '' : null,
resp.locked_count > 0 ? '讨论被禁回 ' + resp.locked_count + '' : null
].filter(Boolean).map(function(t) { return '' + t + ''}).join('')
var rmvCount = resp.banned_record.reduce(function(acc, r) { return acc + r.count }, 0)
var community_text = [
'近半年被 ' + rmvCount + '个小组 移出并永久拒绝加入',
].concat(resp.banned_reason_list.map(function(r) { return ''+ r[0] + ' '+ r[1] +'' +''})).filter(Boolean).join('')
if (rmvCount === 0) {
community_text = null
}
dui.Dialog({
title: title,
content: [
'',
'',
'',
'成员记录说明'
].join(''),
buttons: ['confirm'],
}).update()
})
});
// 移除广告内容要提示
$('.ban-dialog-ad').click(function(){
var prompt_dlg = dui.Dialog({
cls: 'group-promote-dialog',
title: '操作提示',
content: '该帐号为豆瓣商务官方广告投放账号,不支持封禁操作,如有问题请联系小组组长或 business@douban.com',
width: 400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function(){
$('.dui-dialog').undelegate('.btn-ok', 'click').delegate('.btn-ok', 'click', function(){
$(".dui-dialog").hide();
});
return '确定';
};
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
return false
});
$('.remove-dialog-ad').click(function(){
var prompt_dlg = dui.Dialog({
cls: 'group-promote-dialog',
title: '操作提示',
content: '真的要删除小组讨论 删?',
width:
400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function(){
$('.dui-dialog').undelegate('.btn-ok', 'click').delegate('.btn-ok', 'click', function(){
var remove_topic_url = $('.remove-dialog-ad').attr('href');
window.location = remove_topic_url;
});
$('.dui-dialog').delegate('.btn-cancel', 'click', function(){
$(".dui-dialog").hide();
});
return '取消确定'
};
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
return false
});
// 提前结束快闪楼
$('.unset-flash-event').click(function(e){
e.preventDefault();
var confirm_dlg = dui.Dialog({
cls: 'unset-flash-event-dialog',
title: '确定提前结束快闪楼吗',
content: '结束后,无法再恢复',
width: 400,
buttons: [
{
text: '确定', method: function(){
$.get("https://www.douban.com/group/topic/160090987/unset_topic_event", function(data) {
location.reload();
})
}
},
{
text: '取消',
method: function() {
confirm_dlg.close()
}
}
]
})
confirm_dlg.open()
})
// 设置为快闪楼
$('.set-flash-event').click(function(e){
e.preventDefault()
var date = $(this).attr('data-date');
var topic_id = $(this).attr('data-topic_id');
var prompt_dlg = dui.Dialog({
cls: 'set-flash-event-dialog group-promote-dialog',
title: '设置为快闪楼',
content: [
'快闪楼活动开始时间是讨论帖子的发布时间:' + date + '',
'',
'活动持续时间',
'3天',
'7天',
'10天',
'14天',
].concat([], [''])
.join(''),
width:
400,
buttons: [
{text: '确定', method: function(){} },
]
});
var dui_dialog_ft_html = function() {
var days = $('.dui-dialog input[name="event_days"]:checked').val()
var event_type = $('.dui-dialog input[name="event_type"]:checked').val()
$('.dui-dialog').delegate('.btn-cancel', 'click', function(){
$(".dui-dialog").hide();
});
return '确定取消';
};
$('.dui-dialog').delegate('input[name="event_days"], input[name="event_type"]', 'change', function(e) {
var days = $('.dui-dialog input[name="event_days"]:checked').val();
var event_type = $('.dui-dialog input[name="event_type"]:checked').val();
$('.dui-dialog .dui-dialog-content .ft .btn-ok').attr('href', '/group/topic/' + topic_id + '/set_topic_event?event_days={0}&event_type={1}'.format(days, event_type))
})
prompt_dlg.open();
prompt_dlg.node.find('.ft').html(dui_dialog_ft_html());
});
});
}
2023-06-20 11:18
来源:
娱乐家若林
除了更新合影,他还在小号放了一张单人的照片,并且配文“一米九”。图中,白敬亭站在窗户旁边,这么一看,他都有两个窗户的高度了,粉丝们自然是不用多说的,毕竟白敬亭是蜜汁喜欢“一米九”这个身高,只要遇到高兴的事情和碰到喜欢的人,都会夸“一米九”的。
很快,白敬亭就在评论区挽尊了,白白第一时间对合照的评价不仅仅是友谊长存,而是“力证”自己的身高。他表示,身边这位帅哥的真实身高是两米五,还据此推测自己的身高是“两米出头”。虽然看起来比被人矮,但在很多男生中,白敬亭已经很高了。
粉丝们也是觉得很调皮,果然时间长不见白敬亭了,一见到他就会出幺蛾子。不过哪怕他在“两米出头”,在整个篮球场上,他都是“最矮的”,这一点是有目共睹的。不过调皮归调皮,还是希望白敬亭时隔很久后录制综艺可以有很好的收视率,同样的粉丝也会期待他在里面的表演,争取多投几个三分球。
返回搜狐,查看更多
责任编辑:}

我要回帖

更多关于 张逸杰郭俊辰 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信