78 lines
2.3 KiB
JavaScript
78 lines
2.3 KiB
JavaScript
|
;
|
||
|
|
||
|
jQuery( function() {
|
||
|
|
||
|
// 提示
|
||
|
if($('[data-toggle="tooltip"]')[0]) {
|
||
|
$('[data-toggle="tooltip"]').tooltip({
|
||
|
"container" : 'body',
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 弹出框
|
||
|
if($('[data-toggle="popover"]')[0]) {
|
||
|
$('[data-toggle="popover"]').popover();
|
||
|
}
|
||
|
|
||
|
// 标签
|
||
|
if($('.js-tags-input')[0]) {
|
||
|
$('.js-tags-input').tagsInput({
|
||
|
height: '36px',
|
||
|
width: '100%',
|
||
|
defaultText: $('.js-tags-input').attr("placeholder"),
|
||
|
removeWithBackspace: true,
|
||
|
delimiter: [',']
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 时间选择
|
||
|
jQuery('.js-datetimepicker').each(function() {
|
||
|
var $input = jQuery(this);
|
||
|
$input.datetimepicker({
|
||
|
format: $input.data('format') ? $input.data('format') : false,
|
||
|
useCurrent: $input.data('use-current') ? $input.data('use-current') : false,
|
||
|
locale: moment.locale('' + ($input.data('locale') ? $input.data('locale') : '') + ''),
|
||
|
showTodayButton: $input.data('show-today-button') ? $input.data('show-today-button') : false,
|
||
|
showClear: $input.data('show-clear') ? $input.data('show-clear') : false,
|
||
|
showClose: $input.data('show-close') ? $input.data('show-close') : false,
|
||
|
sideBySide: $input.data('side-by-side') ? $input.data('side-by-side') : false,
|
||
|
inline: $input.data('inline') ? $input.data('inline') : false,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 日期选择
|
||
|
jQuery('.js-datepicker').each(function() {
|
||
|
var $input = jQuery(this);
|
||
|
$input.datepicker({
|
||
|
weekStart: 1,
|
||
|
autoclose: true,
|
||
|
todayHighlight: true,
|
||
|
language: 'zh-CN',
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 颜色选取
|
||
|
jQuery('.js-colorpicker').each(function() {
|
||
|
var $colorpicker = jQuery(this);
|
||
|
var $colorpickerMode = $colorpicker.data('colorpicker-mode') ? $colorpicker.data('colorpicker-mode') : 'hex';
|
||
|
var $colorpickerinline = $colorpicker.data('colorpicker-inline') ? true: false;
|
||
|
$colorpicker.colorpicker({
|
||
|
'format': $colorpickerMode,
|
||
|
'inline': $colorpickerinline
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 复选框全选
|
||
|
$("#check-all").change(function () {
|
||
|
$("input[type='checkbox']").prop('checked', $(this).prop("checked"));
|
||
|
});
|
||
|
|
||
|
// iframe打开tab
|
||
|
$('.js-create-tab').on('click', function(){
|
||
|
parent.$(parent.document).data('multitabs').create({
|
||
|
iframe : true,
|
||
|
title : $(this).data('title') ? $(this).data('title') : '标题',
|
||
|
url : $(this).data('url') ? $(this).data('url') : 'lyear-main.html'
|
||
|
}, true);
|
||
|
});
|
||
|
});
|