mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]增加图文选择器
This commit is contained in:
parent
9b5756e7d7
commit
981670fd7a
@ -40,25 +40,23 @@
|
||||
|
||||
{block name="script"}
|
||||
<script>
|
||||
require(['jquery'], function () {
|
||||
require(['jquery.masonry'], function (Masonry) {
|
||||
var container = document.querySelector('#news_box');
|
||||
var msnry = new Masonry(container, {itemSelector: '.news_item', columnWidth: 0});
|
||||
msnry.layout();
|
||||
/* 事件处理 */
|
||||
$('.news-container').on('mouseenter', '.news-box', function () {
|
||||
$(this).addClass('active');
|
||||
}).on('mouseleave', '.news-box', function () {
|
||||
$(this).removeClass('active');
|
||||
});
|
||||
var seletor = '[name="{$Think.get.field|decode|default=0}"]';
|
||||
if (seletor) {
|
||||
$('[data-news-id]').on('click', function () {
|
||||
window.top.$(seletor).val($(this).attr('data-news-id')).trigger('change');
|
||||
parent.layer.close(parent.layer.getFrameIndex(window.name))
|
||||
});
|
||||
}
|
||||
require(['jquery.masonry'], function (Masonry) {
|
||||
var container = document.querySelector('#news_box');
|
||||
var msnry = new Masonry(container, {itemSelector: '.news_item', columnWidth: 0});
|
||||
msnry.layout();
|
||||
/* 事件处理 */
|
||||
$('.news-container').on('mouseenter', '.news-box', function () {
|
||||
$(this).addClass('active');
|
||||
}).on('mouseleave', '.news-box', function () {
|
||||
$(this).removeClass('active');
|
||||
});
|
||||
var seletor = '[name="{$Think.get.field|decode|default=0}"]';
|
||||
if (seletor) {
|
||||
$('[data-news-id]').on('click', function () {
|
||||
window.top.$(seletor).val($(this).attr('data-news-id')).trigger('change');
|
||||
parent.layer.close(parent.layer.getFrameIndex(window.name))
|
||||
});
|
||||
}
|
||||
});
|
||||
</script>
|
||||
{/block}
|
Loading…
x
Reference in New Issue
Block a user