123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- // 获取请求参数
- // 使用示例
- // location.href = http://localhost:8080/index.html?id=123
- // T.p('id') --> 123;
- var url = function(name) {
- var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
- var r = window.location.search.substr(1).match(reg);
- if(r!=null)return unescape(r[2]); return null;
- }
- //登录token
- var token = localStorage.getItem("token");
- if(token == 'null'){
- parent.location.href = 'login.html';
- }
- //全局配置
- $.ajaxSetup({
- dataType: "json",
- cache: false,
- headers: {
- "token": token
- },
- complete: function(xhr) {
- if(xhr.responseJSON.code == 401){
- toUrl('login.html');
- }
- }
- })
- //权限判断
- function hasPermission(permission) {
- if(isNullOrEmpty(window.parent.perms)) {
- return false;
- }
- if (window.parent.perms.indexOf(permission) > -1) {
- return true;
- } else {
- return false;
- }
- }
- toUrl = function(href) {
- window.location.href = href;
- }
- $.fn.bootstrapTableEx = function(opt){
- var defaults = {
- url: '',
- dataField: "rows",
- method: 'post',
- dataType: 'json',
- selectItemName: 'id',
- clickToSelect: true,
- pagination: true,
- smartDisplay: false,
- pageSize: 10,
- pageList: [10, 20, 30, 40, 50],
- paginationLoop: false,
- sidePagination: 'server',
- queryParamsType : null,
- columns: []
- }
- var option = $.extend({}, defaults, opt);
- if(!option.pagination){
- option.responseHandler = function(res) {
- return res.rows;
- }
- }
- $(this).bootstrapTable(option);
- }
- formatDate = function (v, format) {
- if (!v) return "";
- var d = v;
- if (typeof v === 'string') {
- if (v.indexOf("/Date(") > -1)
- d = new Date(parseInt(v.replace("/Date(", "").replace(")/", ""), 10));
- else
- d = new Date(Date.parse(v.replace(/-/g, "/").replace("T", " ").split(".")[0]));//.split(".")[0] 用来处理出现毫秒的情况,截取掉.xxx,否则会出错
- }
- var o = {
- "M+": d.getMonth() + 1,
- "d+": d.getDate(),
- "h+": d.getHours(),
- "m+": d.getMinutes(),
- "s+": d.getSeconds(),
- "q+": Math.floor((d.getMonth() + 3) / 3),
- "S": d.getMilliseconds()
- };
- if (/(y+)/.test(format)) {
- format = format.replace(RegExp.$1, (d.getFullYear() + "").substr(4 - RegExp.$1.length));
- }
- for (var k in o) {
- if (new RegExp("(" + k + ")").test(format)) {
- format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));
- }
- }
- return format;
- }
- function today() {
- var dd = new Date();
- return formatDate(dd, 'yyyy-MM-dd');
- }
- function countDay(dayCount) {
- var dd = new Date();
- dd.setDate(dd.getDate()+dayCount);//获取AddDayCount天后的日期
- var y = dd.getFullYear();
- var m = (dd.getMonth()+1)<10?"0"+(dd.getMonth()+1):(dd.getMonth()+1);//获取当前月份的日期,不足10补0
- var d = dd.getDate()<10?"0"+dd.getDate():dd.getDate();//获取当前几号,不足10补0
- return y+"-"+m+"-"+d;
- }
- isNullOrEmpty = function (obj) {
- if ((typeof (obj) == "string" && obj == "") || obj == null || obj == undefined) {
- return true;
- } else {
- return false;
- }
- }
- isNotNullOrEmpty = function (obj) {
- if ((typeof (obj) == "string" && obj == "") || obj == null || obj == undefined) {
- return false;
- } else {
- return true;
- }
- }
- checkedArray = function (id) {
- var isOK = true;
- if (id == undefined || id == "" || id == 'null' || id == 'undefined') {
- isOK = false;
- dialogMsg('您没有选中任何数据项!');
- }
- return isOK;
- }
- checkedRow = function (id) {
- var isOK = true;
- if (id == undefined || id == "" || id == 'null' || id == 'undefined') {
- isOK = false;
- dialogMsg('您没有选中任何数据项!');
- } else if (id.length > 1) {
- isOK = false;
- dialogMsg('您只能选择一条数据项!');
- }
- return isOK;
- }
- reload = function () {
- location.reload();
- return false;
- }
- dialogOpen = function(opt){
- var defaults = {
- id : 'layerForm',
- title : '',
- width: '',
- height: '',
- url : null,
- scroll : false,
- data : {},
- btn: ['确定', '取消'],
- success: function(){},
- yes: function(){}
- }
- var option = $.extend({}, defaults, opt), content = null;
- if(option.scroll){
- content = [option.url]
- }else{
- content = [option.url, 'no']
- }
- top.layer.open({
- type : 2,
- id : option.id,
- title : option.title,
- closeBtn : 1,
- anim: -1,
- isOutAnim: false,
- shadeClose : false,
- shade : 0.3,
- area : [option.width, option.height],
- content : content,
- btn: option.btn,
- success: function(){
- option.success(option.id);
- },
- yes: function(){
- option.yes(option.id);
- }
- });
- }
- dialogContent = function(opt){
- var defaults = {
- title : '系统窗口',
- width: '',
- height: '',
- content : null,
- data : {},
- btn: ['确定', '取消'],
- success: null,
- yes: null
- }
- var option = $.extend({}, defaults, opt);
- return top.layer.open({
- type : 1,
- title : option.title,
- closeBtn : 1,
- anim: -1,
- isOutAnim: false,
- shadeClose : false,
- shade : 0.3,
- area : [option.width, option.height],
- shift : 5,
- content : option.content,
- btn: option.btn,
- success: option.success,
- yes: option.yes
- });
- }
- dialogAjax = function(opt){
- var defaults = {
- title : '系统窗口',
- width: '',
- height: '',
- url : null,
- data : {},
- btn: ['确定', '取消'],
- success: null,
- yes: null
- }
- var option = $.extend({}, defaults, opt);
- $.post(option.url, null, function(content){
- layer.open({
- type : 1,
- title : option.title,
- closeBtn : 1,
- anim: -1,
- isOutAnim: false,
- shadeClose : false,
- shade : 0.3,
- area : [option.width, option.height],
- shift : 5,
- content : content,
- btn: option.btn,
- success: option.success,
- yes: option.yes
- });
- });
- }
- dialogAlert = function (content, type) {
- var msgType = {
- success:1,
- error:2,
- warn:3,
- info:7
- };
- if(isNullOrEmpty(type)){
- type='info';
- }
- top.layer.alert(content, {
- icon: msgType[type],
- title: "系统提示",
- anim: -1,
- btnAlign: 'c',
- isOutAnim: false
- });
- }
- dialogConfirm = function (content, callBack) {
- top.layer.confirm(content, {
- area: '338px',
- icon: 7,
- anim: -1,
- isOutAnim: false,
- title: "系统提示",
- btn: ['确认', '取消'],
- btnAlign: 'c',
- yes: callBack
- });
- }
- dialogMsg = function(msg, type) {
- var msgType = {
- success:1,
- error:2,
- warn:3,
- info:7
- };
- if(isNullOrEmpty(type)){
- type='info';
- }
- top.layer.msg(msg, {
- icon: msgType[type],
- time: 2000
- });
- }
- dialogClose = function() {
- var index = top.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
- top.layer.close(index); //再执行关闭
- }
- dialogLoading = function(flag) {
- if(flag){
- top.layer.load(0, {
- shade: [0.1,'#fff'],
- time: 2000
- });
- }else{
- top.layer.closeAll('loading');
- }
- }
- dialogToastr = function(msg) {
- top.layer.msg(msg);
- }
- dialogTip = function(msg, dom) {
- top.layer.tips(msg, dom);
- }
- $.fn.GetWebControls = function (keyValue) {
- var reVal = "";
- $(this).find('input,select,textarea').each(function (r) {
- var id = $(this).attr('id');
- var type = $(this).attr('type');
- switch (type) {
- case "checkbox":
- if ($("#" + id).is(":checked")) {
- reVal += '"' + id + '"' + ':' + '"1",'
- } else {
- reVal += '"' + id + '"' + ':' + '"0",'
- }
- break;
- default:
- var value = $("#" + id).val();
- if (value == "") {
- value = " ";
- }
- reVal += '"' + id + '"' + ':' + '"' + $.trim(value) + '",'
- break;
- }
- });
- reVal = reVal.substr(0, reVal.length - 1);
- if (!keyValue) {
- reVal = reVal.replace(/ /g, '');
- }
- reVal = reVal.replace(/\\/g, '\\\\');
- reVal = reVal.replace(/\n/g, '\\n');
- var postdata = jQuery.parseJSON('{' + reVal + '}');
- return postdata;
- };
- $.fn.SetWebControls = function (data) {
- var $id = $(this)
- for (var key in data) {
- var id = $id.find('#' + key);
- if (id.attr('id')) {
- var type = id.attr('type');
- var value = $.trim(data[key]).replace(/ /g, '');
- switch (type) {
- case "checkbox":
- if (value == 1) {
- id.attr("checked", 'checked');
- } else {
- id.removeAttr("checked");
- }
- break;
- default:
- id.val(value);
- break;
- }
- }
- }
- }
- tabiframeId = function () {
- var iframeId = top.$(".DP_iframe:visible").attr("id");
- return iframeId;
- }
- $.currentIframe = function () {
- var tabId = tabiframeId();
- if(isNullOrEmpty(tabId)) {//单页iframe嵌套
- return $(window.parent.document).contents().find('#main')[0].contentWindow;
- }
- return $(window.parent.document).contents().find('#'+tabiframeId())[0].contentWindow;//多层tab页嵌套
- }
|