/**
* Vue-jQuery-Amaze Loading插件
*
* 2015-12-15
*/
;(function($) {
$.extend({
vloading: function(opt) {
if (typeof(v_loading) == 'undefined') {
var _html = '
';
_html += '
';
_html += '
正在载入
';
_html += '
';
_html += '';
_html += '
';
$('body').append(_html);
v_loading = $('#vloading');
}
if (opt == 'open' || typeof(opt) == 'undefined') {
v_loading.modal('open');
} else if(opt == 'close') {
v_loading.modal('close');
} else {
return true;
}
}
})
})(jQuery);