/** EasyWeb iframe v3.1.8 date:2020-05-04 License By http://easyweb.vip */
// 用common.js必须加上Feng.addCtx("${ctxPath}");
/* 解析数据表格templet列 */
Feng.parseData = function (res) {
return {
"code": res.code == "00000" ? "0" : res.code, //解析接口状态
"msg": res.message, //解析提示文本
"count": res.data.totalRows, //解析数据长度
"data": res.data.rows //解析数据列表
};
};
Feng.info = function (info) {
top.layer.msg(info, {icon: 6});
};
Feng.success = function (info) {
top.layer.msg(info, {icon: 1});
};
Feng.error = function (info) {
top.layer.msg(info, {icon: 2});
};
Feng.dialog = function (info) {
top.layer.open({
title: '提示', content: info
});
};
Feng.dialog = function (title, info) {
top.layer.open({
title: title, content: info
});
};
Feng.confirm = function (tip, ensure) {
top.layer.confirm(tip, {
skin: 'layui-layer-admin'
}, function () {
ensure();
});
};
Feng.currentDate = function () {
// 获取当前日期
var date = new Date();
// 获取当前月份
var nowMonth = date.getMonth() + 1;
// 获取当前是几号
var strDate = date.getDate();
// 添加分隔符“-”
var seperator = "-";
// 对月份进行处理,1-9月在前面添加一个“0”
if (nowMonth >= 1 && nowMonth <= 9) {
nowMonth = "0" + nowMonth;
}
// 对月份进行处理,1-9号在前面添加一个“0”
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
// 最后拼接字符串,得到一个格式为(yyyy-MM-dd)的日期
return date.getFullYear() + seperator + nowMonth + seperator + strDate;
};
Feng.getUrlParam = function (name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r != null) {
return unescape(r[2]);
} else {
return null;
}
};
Feng.infoDetail = function (title, info) {
var display = "";
if (typeof info === "string") {
display = info;
} else {
if (info instanceof Array) {
for (var x in info) {
display = display + info[x] + "
";
}
} else {
display = info;
}
}
top.layer.open({
title: title,
type: 1,
skin: 'layui-layer-rim', //加上边框
area: ['950px', '600px'], //宽高
content: '