/**
* 通用js方法封装处理
* Copyright (c) 2019 ots
*/
(function ($) {
$.extend({
_tree: {},
btTable: {},
bttTable: {},
// 表格封装处理
table: {
_option: {},
// 初始化表格参数
init: function(options) {
var defaults = {
id: "bootstrap-table",
type: 0, // 0 代表bootstrapTable 1代表bootstrapTreeTable
height: undefined,
sidePagination: "server",
sortName: "",
sortOrder: "asc",
pagination: true,
pageSize: 10,
pageList: [10, 25, 50],
toolbar: "toolbar",
striped: false,
escape: false,
firstLoad: true,
showFooter: false,
search: false,
showSearch: true,
showPageGo: false,
showRefresh: true,
showColumns: true,
showToggle: true,
showExport: false,
clickToSelect: false,
rememberSelected: false,
fixedColumns: false,
fixedNumber: 0,
rightFixedColumns: false,
rightFixedNumber: 0,
queryParams: $.table.queryParams,
rowStyle: {},
};
var options = $.extend(defaults, options);
$.table._option = options;
$.btTable = $('#' + options.id);
$.table.initEvent();
$('#' + options.id).bootstrapTable({
url: options.url, // 请求后台的URL(*)
contentType: "application/x-www-form-urlencoded", // 编码类型
method: 'post', // 请求方式(*)
cache: false, // 是否使用缓存
height: options.height, // 表格的高度
striped: options.striped, // 是否显示行间隔色
sortable: true, // 是否启用排序
sortStable: true, // 设置为 true 将获得稳定的排序
sortName: options.sortName, // 排序列名称
sortOrder: options.sortOrder, // 排序方式 asc 或者 desc
pagination: options.pagination, // 是否显示分页(*)
pageNumber: 1, // 初始化加载第一页,默认第一页
pageSize: options.pageSize, // 每页的记录行数(*)
pageList: options.pageList, // 可供选择的每页的行数(*)
firstLoad: options.firstLoad, // 是否首次请求加载数据,对于数据较大可以配置false
escape: options.escape, // 转义HTML字符串
showFooter: options.showFooter, // 是否显示表尾
iconSize: 'outline', // 图标大小:undefined默认的按钮尺寸 xs超小按钮sm小按钮lg大按钮
toolbar: '#' + options.toolbar, // 指定工作栏
sidePagination: options.sidePagination, // server启用服务端分页client客户端分页
search: options.search, // 是否显示搜索框功能
searchText: options.searchText, // 搜索框初始显示的内容,默认为空
showSearch: options.showSearch, // 是否显示检索信息
showPageGo: options.showPageGo, // 是否显示跳转页
showRefresh: options.showRefresh, // 是否显示刷新按钮
showColumns: options.showColumns, // 是否显示隐藏某列下拉框
showToggle: options.showToggle, // 是否显示详细视图和列表视图的切换按钮
showExport: options.showExport, // 是否支持导出文件
uniqueId: options.uniqueId, // 唯 一的标识符
clickToSelect: options.clickToSelect, // 是否启用点击选中行
detailView: options.detailView, // 是否启用显示细节视图
onClickRow: options.onClickRow, // 点击某行触发的事件
onDblClickRow: options.onDblClickRow, // 双击某行触发的事件
onClickCell: options.onClickCell, // 单击某格触发的事件
onDblClickCell: options.onDblClickCell, // 双击某格触发的事件
rememberSelected: options.rememberSelected, // 启用翻页记住前面的选择
fixedColumns: options.fixedColumns, // 是否启用冻结列(左侧)
fixedNumber: options.fixedNumber, // 列冻结的个数(左侧)
rightFixedColumns: options.rightFixedColumns, // 是否启用冻结列(右侧)
rightFixedNumber: options.rightFixedNumber, // 列冻结的个数(右侧)
onReorderRow: options.onReorderRow, // 当拖拽结束后处理函数
queryParams: options.queryParams, // 传递参数(*)
rowStyle: options.rowStyle, // 通过自定义函数设置行样式
columns: options.columns, // 显示列信息(*)
responseHandler: $.table.responseHandler, // 在加载服务器发送来的数据之前处理函数
onLoadSuccess: $.table.onLoadSuccess, // 当所有数据被加载时触发处理函数
exportOptions: options.exportOptions, // 前端导出忽略列索引
detailFormatter: options.detailFormatter, // 在行下面展示其他数据列表
});
},
// 查询条件
queryParams: function(params) {
var curParams = {
// 传递参数查询参数
pageSize: params.limit,
pageNum: params.offset / params.limit + 1,
searchValue: params.search,
orderByColumn: params.sort,
isAsc: params.order
};
var currentId = $.common.isEmpty($.table._option.formId) ? $('form').attr('id') : $.table._option.formId;
return $.extend(curParams, $.common.formToJSON(currentId));
},
// 请求获取数据后处理回调函数
responseHandler: function(res) {
if (typeof $.table._option.responseHandler == "function") {
$.table._option.responseHandler(res);
}
if (res.code == 0) {
if ($.common.isNotEmpty($.table._option.sidePagination) && $.table._option.sidePagination == 'client') {
return res.rows;
} else {
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
var column = $.common.isEmpty($.table._option.uniqueId) ? $.table._option.columns[1].field : $.table._option.uniqueId;
$.each(res.rows, function(i, row) {
row.state = $.inArray(row[column], selectionIds) !== -1;
})
}
return { rows: res.rows, total: res.total };
}
} else {
$.modal.alertWarning(res.msg);
return { rows: [], total: 0 };
}
},
// 初始化事件
initEvent: function(data) {
// 触发行点击事件 加载成功事件
$.btTable.on("check.bs.table uncheck.bs.table check-all.bs.table uncheck-all.bs.table load-success.bs.table", function () {
// 工具栏按钮控制
var rows = $.common.isEmpty($.table._option.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.uniqueId);
// 非多个禁用
$('#' + $.table._option.toolbar + ' .multiple').toggleClass('disabled', !rows.length);
// 非单个禁用
$('#' + $.table._option.toolbar + ' .single').toggleClass('disabled', rows.length!=1);
});
// 绑定选中事件、取消事件、全部选中、全部取消
$.btTable.on("check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table", function (e, rows) {
// 复选框分页保留保存选中数组
var rowIds = $.table.affectedRowIds(rows);
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
func = $.inArray(e.type, ['check', 'check-all']) > -1 ? 'union' : 'difference';
selectionIds = _[func](selectionIds, rowIds);
}
});
// 图片预览事件
$.btTable.on('click', '.img-circle', function() {
var src = $(this).attr('src');
var target = $(this).data('target');
var height = $(this).data('height');
var width = $(this).data('width');
if($.common.equals("self", target)) {
layer.open({
title: false,
type: 1,
closeBtn: true,
shadeClose: true,
area: ['auto', 'auto'],
content: "
"
});
} else if ($.common.equals("blank", target)) {
window.open(src);
}
});
// 单击tooltip复制文本
$.btTable.on('click', '.tooltip-show', function() {
var input = $(this).prev();
input.select();
document.execCommand("copy");
});
},
// 当所有数据被加载时触发
onLoadSuccess: function(data) {
if (typeof $.table._option.onLoadSuccess == "function") {
$.table._option.onLoadSuccess(data);
}
// 浮动提示框特效
$("[data-toggle='tooltip']").tooltip();
},
// 表格销毁
destroy: function (tableId) {
var currentId = $.common.isEmpty(tableId) ? $.table._option.id : tableId;
$("#" + currentId).bootstrapTable('destroy');
},
// 序列号生成
serialNumber: function (index) {
var table = $.btTable.bootstrapTable('getOptions');
var pageSize = table.pageSize;
var pageNumber = table.pageNumber;
return pageSize * (pageNumber - 1) + index + 1;
},
// 列超出指定长度浮动提示(单击文本复制)
tooltip: function (value, length) {
var _length = $.common.isEmpty(length) ? 20 : length;
var _text = "";
var _value = $.common.nullToStr(value);
if (_value.length > _length) {
_text = _value.substr(0, _length) + "...";
_value = _value.replace(/\'/g,"’");
var actions = [];
actions.push($.common.sprintf('', _value));
actions.push($.common.sprintf("%s", _value, _text));
return actions.join('');
} else {
_text = _value;
return _text;
}
},
// 下拉按钮切换
dropdownToggle: function (value) {
var actions = [];
actions.push('
');
actions.push('');
actions.push('');
actions.push('
');
return actions.join('');
},
// 图片预览
imageView: function (value, height, width, target) {
if ($.common.isEmpty(width)) {
width = 'auto';
}
if ($.common.isEmpty(height)) {
height = 'auto';
}
// blank or self
var _target = $.common.isEmpty(target) ? 'self' : target;
if ($.common.isNotEmpty(value)) {
return $.common.sprintf("
", width, height, _target, value);
} else {
return $.common.nullToStr(value);
}
},
// 搜索-默认第一个form
search: function(formId, data) {
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
var params = $.btTable.bootstrapTable('getOptions');
params.queryParams = function(params) {
var search = $.common.formToJSON(currentId);
if($.common.isNotEmpty(data)){
$.each(data, function(key) {
search[key] = data[key];
});
}
search.pageSize = params.limit;
search.pageNum = params.offset / params.limit + 1;
search.searchValue = params.search;
search.orderByColumn = params.sort;
search.isAsc = params.order;
return search;
}
$.btTable.bootstrapTable('refresh', params);
},
// 导出数据
exportExcel: function(formId) {
$.modal.confirm($.common.queryMessage('jsp.exam.report.002') + $.table._option.modalName + "?", function() {
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
$.modal.loading($.common.queryMessage('basic.tip4'));
$.post($.table._option.exportUrl, $("#" + currentId).serializeArray(), function(result) {
if (result.code == web_status.SUCCESS) {
window.location.href = ctx + "common/download?fileName=" + encodeURI(result.msg) + "&delete=" + true;
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
});
});
},
// 下载模板
importTemplate: function() {
$.get($.table._option.importTemplateUrl, function(result) {
if (result.code == web_status.SUCCESS) {
window.location.href = ctx + "common/download?fileName=" + encodeURI(result.msg) + "&delete=" + true;
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
});
},
// 导入数据
importExcel: function(formId) {
//alert($.common.queryMessage('basis.import') + $.table._option.modalName + $.common.queryMessage('basis.data'));
var currentId = $.common.isEmpty(formId) ? 'importTpl' : formId;
layer.open({
type: 1,
area: ['400px', '230px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: $.common.queryMessage('basis.import') + $.common.queryMessage('basis.data'),
content: $('#' + currentId).html(),
btn: [' '+$.common.queryMessage('basis.import'), ' '+$.common.queryMessage('basis.cancel')],
// 弹层外区域关闭
shadeClose: true,
btn1: function(index, layero){
var file = layero.find('#file').val();
if (file == '' || (!$.common.endWith(file, '.xls') && !$.common.endWith(file, '.xlsx'))){
$.modal.msgWarning($.common.queryMessage('basic.tip3'));
return false;
}
var index = layer.load(2, {shade: false});
$.modal.disable();
var formData = new FormData();
formData.append("file", $('#file')[0].files[0]);
formData.append("updateSupport", $("input[name='updateSupport']").is(':checked'));
var levelOptions=$("#importReportType option:selected");
formData.append("importReportType", levelOptions.val());
$.ajax({
url: $.table._option.importUrl,
data: formData,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function (result) {
if (result.code == web_status.SUCCESS) {
$.modal.closeAll();
$.modal.alertSuccess(result.msg);
$.table.refresh();
} else if (result.code == web_status.WARNING) {
layer.close(index);
$.modal.enable();
$.modal.alertWarning(result.msg)
} else {
layer.close(index);
$.modal.enable();
$.modal.alertError(result.msg);
}
}
});
}
});
},
// 导入工作模板数据
importJobExcel: function(formId) {
var currentId = $.common.isEmpty(formId) ? 'importTpl' : formId;
var width = '';
var height = '';
//如果是移动端,就使用自适应大小弹窗
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
width = 'auto';
height = 'auto';
}
if ($.common.isEmpty(width)) {
width = 800;
}
if ($.common.isEmpty(height)) {
height = ($(window).height() - 50);
}
layer.open({
type: 1,
area: [width + 'px', height + 'px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: $.common.queryMessage('basis.import') + $.table._option.modalName + $.common.queryMessage('basis.data'),
content: $('#' + currentId).html(),
btn: [' '+$.common.queryMessage('basis.import'), ' '+$.common.queryMessage('basis.cancel')],
// 弹层外区域关闭
shadeClose: true,
btn1: function(index, layero){
if ($('.ibox-dimension').html().trim() == ""){
$.modal.msgWarning($.common.queryMessage('basic.tip5'))
return false;
}
$dimension = $('.ibox-dimension').find('.clone').clone();
var file = layero.find('#file').val();
if (file == '' || (!$.common.endWith(file, '.xls') && !$.common.endWith(file, '.xlsx'))){
$.modal.msgWarning($.common.queryMessage('basic.tip3'));
return false;
}
var index = layer.load(2, {shade: false});
$.modal.disable();
var formData = new FormData();
formData.append("file", $('#file')[0].files[0]);
formData.append("updateSupport", $("input[name='updateSupport']").is(':checked'));
$.ajax({
url: $.table._option.importUrl,
data: formData,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function (result) {
if (result.code == web_status.SUCCESS) {
if (result.data.langType.trim() == "") {
layer.close(index);
$.modal.enable();
$.modal.msgWarning($.common.queryMessage('basic.tip1'));
return false;
}
$.modal.closeAll();
// $.modal.alertSuccess(result.msg);
$.table.bulkImportJobFunction(result.data,$dimension);
$('#multilingual').val(JSON.stringify(result.data.multilingualList));
// submitHandler(); // 自动提交job产品包
} else if (result.code == web_status.WARNING) {
layer.close(index);
$.modal.enable();
$.modal.alertWarning(result.msg)
} else {
layer.close(index);
$.modal.enable();
$.modal.alertError(result.msg);
}
}
});
}
});
// 翻译json
$titles = $('.ibox-dimension').find('.ibox-content');
$titles.each(function () {
try {
$(this).find('p').html($.table.getLangString($('[name="langType"]').val(), $(this).find('p').html()));
$list_inline = $(this).find('.list-inline');
$list_inline.each(function () {
$(this).children().eq(1).html($.table.getLangString($('[name="langType"]').val(), $(this).children().eq(1).html()));
});
} catch (e) {
}
});
},
getLangString: function(langType, contentMap) {
var content = $.parseJSON(contentMap);
var result = content[langType];
if (result == undefined) {
return "";
}
return result;
},
bulkImportJobFunction: function(data,$dimension){
$('#headline').empty();
for (var i = 0; i < data.permanentIdList.length; i++) {
var $dimensionTemp = $dimension.clone();
var $hiddenTitle = $('#hiddenTitle').clone();
$hiddenTitle.removeAttrs('hidden');
$hiddenTitle.removeAttrs('id');
$hiddenTitle.find('input').each(function () {
$(this).attr('needed', 'true');
});
$hiddenTitle.find('[name = "segmentationName"]').val(data.questionList[i].title);
$hiddenTitle.find('[name = "permanentId"]').val(data.permanentIdList[i]);
$hiddenTitle.find('[name = "questionId"]').val(data.questionList[i].id);
$ibox = $hiddenTitle.find('.float-e-margins');
$ibox.append($dimensionTemp);
$dimensionTemp.find('[name="question-seq"]').each(function (i) {
var $permanentId = $(this).parents('.segmentation').find('[name = "permanentId"]');
if ($permanentId.val().trim() != "" && $permanentId != undefined) {
$(this).html($permanentId.val() + "-" + String.fromCharCode(i + 97));
} else {
$(this).html((i + 1) + '.');
}
});
$('#headline').append($hiddenTitle);
num++;
}
var $title = $('#headline').find('.headline-index-seq');
var $description = $('#headline').find('.segment-discription-seq');
// 最后执行
$title.each(function(i){
$(this).text("题目"+(i+1)+" -");
$description.eq(i).text("题目" + (i+1) + "描述 -");
});
},
// 批量导入填充人格的前台
bulkImportPersonality: function (data) {
$tableSelect = data.questionList;
var $thisContent = $('#importQuestionsInBatches').parents('.segmentation').find(".float-e-margins");
$thisContent.attr('add-question-edit', 'true'); // add_question.html remove after save
var $editConten = $('[add-question-edit="true"]');
$editConten.removeAttrs('add-question-edit');
$partValues = $('.ibox').find('.part-value')
if ($partValues == null || $partValues == undefined || $partValues.length == 0) {
$editConten.empty();
}
// 删除全部最后一段的内容
$lastPart = $partValues.eq($partValues.length - 1);
$nextContent = $lastPart.next();
while ($nextContent.hasClass("ibox-content")) {
$thisContent = $nextContent;
$nextContent = $nextContent.next();
$thisContent.remove();
}
$.each($tableSelect, function (index, obj) {
// 如果已经添加就不需要添加了
var isContinue = false;
$oldQuestionIds = $('[name="questionId"]');
// 找到最后一道题目遍历最后一段
// $.each($oldQuestionIds, function (index, questionId) {
// if (parseInt(obj.id) == parseInt(questionId.value)) {
// isContinue = true;
// return false; // 相当于break
// }
// });
if (isContinue) {
return true; // 相当于continue
}
var $questionContent = $('#questionSelect').clone();
$questionContent.removeAttrs('id');
$questionContent.removeAttrs('hidden');
$questionContent.children('div').eq(0).html(1 + ")");
$questionContent.children('p').eq(0).html(obj.permanentId);
$questionContent.children('p').eq(1).html(obj.title);
$questionContent.children('[name="contentId"]').eq(0).val(obj.infoTextContentId);
$questionContent.children('[name="questionId"]').eq(0).val(obj.id);
$.each(obj.choiceInput, function (index, select) {
str = "" + select + "" + obj.selectInput[index] + "";
$questionContent.children('ul').eq(0).append(str);
});
$addQuestionClicks = $('.ibox').find('.add-question-click');
$addQuestionClickLast = $addQuestionClicks.eq($addQuestionClicks.length - 1);
if ($addQuestionClickLast !== null && $addQuestionClickLast != undefined && $addQuestionClickLast.length != 0) {
$addQuestionClickLast.before($questionContent);
} else {
$editConten.append($questionContent);
}
});
$editConten.find('[name="question-seq"]').each(function (i) {
var $permanentId = $(this).parents('.segmentation').find('[name = "permanentId"]');
if ($permanentId.val().trim() != "" && $permanentId != undefined) {
$(this).html($permanentId.val() + "-" + String.fromCharCode(i + 97));
} else {
$(this).html((i + 1) + '.');
}
});
$thisContent.removeAttrs('add-question-edit');
},
// 导入工作模板数据
importPersonalityExcel: function(formId) {
var currentId = $.common.isEmpty(formId) ? 'importTpl' : formId;
var width = '';
var height = '';
//如果是移动端,就使用自适应大小弹窗
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
width = 'auto';
height = 'auto';
}
if ($.common.isEmpty(width)) {
width = 800;
}
if ($.common.isEmpty(height)) {
height = ($(window).height() - 50);
}
layer.open({
type: 1,
area: [width + 'px', height + 'px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: $.common.queryMessage('basis.import') + $.table._option.modalName + $.common.queryMessage('basis.data'),
content: $('#' + currentId).html(),
btn: [' '+$.common.queryMessage('basis.import'), ' '+$.common.queryMessage('basis.cancel')],
// 弹层外区域关闭
shadeClose: true,
btn1: function(index, layero){
if ($('#level-import-id').val() == ""){
$.modal.msgWarning($.common.queryMessage('basic.tip2'))
return false;
}
var file = layero.find('#file').val();
if (file == '' || (!$.common.endWith(file, '.xls') && !$.common.endWith(file, '.xlsx'))){
$.modal.msgWarning($.common.queryMessage('basic.tip3'));
return false;
}
var index = layer.load(2, {shade: false});
$.modal.disable();
var formData = new FormData();
formData.append("file", $('#file')[0].files[0]);
formData.append("updateSupport", $("input[name='updateSupport']").is(':checked'));
var levelOptions=$("#level-import-id option:selected");
formData.append("levelId", levelOptions.val());
formData.append("levelName", levelOptions.text());
$.ajax({
url: $.table._option.importUrl,
data: formData,
cache: false,
contentType: false,
processData: false,
type: 'POST',
success: function (result) {
if (result.code == web_status.SUCCESS) {
if (result.data.langType.trim() == "") {
layer.close(index);
$.modal.enable();
$.modal.msgWarning($.common.queryMessage('basic.tip1'));
return false;
}
$.modal.closeAll();
// $.modal.alertSuccess(result.msg);
$.table.bulkImportPersonality(result.data);
$('#multilingual').val(JSON.stringify(result.data.multilingualList));
// $('#add-part').remove();
// submitHandler(); // 自动提交personality
} else if (result.code == web_status.WARNING) {
layer.close(index);
$.modal.enable();
$.modal.alertWarning(result.msg)
} else {
layer.close(index);
$.modal.enable();
$.modal.alertError(result.msg);
}
}
});
}
});
},
// 刷新表格
refresh: function() {
$.btTable.bootstrapTable('refresh', {
silent: true
});
},
// 查询表格指定列值
selectColumns: function(column) {
var rows = $.map($.btTable.bootstrapTable('getSelections'), function (row) {
return row[column];
});
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
rows = rows.concat(selectionIds);
}
return $.common.uniqueFn(rows);
},
// 获取当前页选中或者取消的行ID
affectedRowIds: function(rows) {
var column = $.common.isEmpty($.table._option.uniqueId) ? $.table._option.columns[1].field : $.table._option.uniqueId;
var rowIds;
if ($.isArray(rows)) {
rowIds = $.map(rows, function(row) {
return row[column];
});
} else {
rowIds = [rows[column]];
}
return rowIds;
},
// 查询表格首列值
selectFirstColumns: function() {
var rows = $.map($.btTable.bootstrapTable('getSelections'), function (row) {
return row[$.table._option.columns[1].field];
});
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
rows = rows.concat(selectionIds);
}
return $.common.uniqueFn(rows);
},
// 回显数据字典
selectDictLabel: function(datas, value) {
var actions = [];
$.each(datas, function(index, dict) {
if (dict.dictValue == ('' + value)) {
var listClass = $.common.equals("default", dict.listClass) || $.common.isEmpty(dict.listClass) ? "" : "badge badge-" + dict.listClass;
actions.push($.common.sprintf("%s", listClass, dict.dictLabel));
return false;
}
});
return actions.join('');
},
// 显示表格指定列
showColumn: function(column) {
$.btTable.bootstrapTable('showColumn', column);
},
// 隐藏表格指定列
hideColumn: function(column) {
$.btTable.bootstrapTable('hideColumn', column);
},
addPartToQuestionContent: function (isEidt) {
if (isEidt && $('#headline').find('.part-value') == undefined) {
$('#headline').find('.ibox').empty();
}
$('#add-question-nopart').css("display", "none");
// $('#importQuestionsInBatches').css("display","none");
// 判断是否已经添加了题目,如果添加了,就把原来的题目分片,分片的题目设置,要给分片添加按钮
$partValue = $('#part-value').clone();
$partValue.removeAttrs("id");
// 设置分段
$partValue.removeAttrs('hidden');
// 添加指导语按钮加上
$addSignalButton = $('#addSignalButton').clone();
$addSignalButton.removeAttrs("id");
$addSignalButton.removeAttrs("hidden");
$partValue.append($addSignalButton);
// 后面追加按钮
$ibox = $('#headline').find('.ibox.float-e-margins');
$ibox.append($partValue);
},
addPartToQuestionTail: function () {
$partNums = $ibox.find('.part-num');
$partNums.each(function (i) {
$(this).html("分片");
$(this).append(i + 1);
});
},
// 智力题,人格题添加分片
addPartToQuestion: function (isEidt) {
this.addPartToQuestionContent(isEidt);
$ibox.append('题目设置
');
this.addPartToQuestionTail();
},
addPartToIntelligenceQuestion: function (isEidt) {
this.addPartToQuestionContent(isEidt);
$ibox.append('添加问答题 添加题目
');
this.addPartToQuestionTail();
},
addSignal: function (obj) {
$(obj).parent().before($('#signal').html());
},
deleteSignal: function (obj) {
var $deleteButton = $(obj).parent();
if ($deleteButton.prev().hasClass("signalDescription")) {
$deleteButton.prev().remove();
$deleteButton.prev().remove();
}
},
// 初始化partvalue
initPartValue: function () {
var smallQuestionNum = 1;
var orderNum = 1;
$ibox_content = $('#headline').find('.ibox').find('.ibox-content');
// 没有分片
if ($('#parts').val() == undefined || $('#parts').val().trim() == "[]") {
// 填序号
// 去掉增加分片按钮
$('#add-part').remove();
$ibox_content.each(function (i) {
$(this).children('[name="question-seq"]').html((i+1) + ".");
});
return;
}
$('#add-question-nopart').css("display","none");
var parts = JSON.parse($('#parts').val());
var partOrder = 1;
$ibox_content.each(function (i) {
var questionPartOrder = $(this).find('[name="questionPartOrder"]').val();
if (partOrder == parseInt(questionPartOrder)) {
var part = parts[partOrder - 1];
$partValue = $('#part-value').clone();
$partValue.removeAttrs("id");
$partValue.find('[name="timeOut"]').val(part.timeOut);
$partValue.find('[name="lowestScore"]').val(part.lowestScore);
$partValue.find('label').eq(0).append(partOrder);
$partValue.removeAttrs("hidden");
// 智力的和人格的分开,人格的有指导语条件
if (part.signals != null) {
$.each(part.signals, function (i) {
$signal = $('#signal').clone();
$signal.removeAttrs("id");
$signal.find('[name="signal"]').attr("value", this.signal);
$signal.find('[name="signalDescription"]').text(this.signalDescription);
$partValue.append($signal.html());
});
}
if (partOrder != 1) {
if ($('#intelligence').val() == 'intelligence') {
$(this).before('添加问答题 添加题目
');
} else {
$(this).before('题目设置
');
}
}
$addSignalButton = $('#addSignalButton').clone();
$addSignalButton.removeAttrs("id");
$addSignalButton.removeAttrs("hidden");
$partValue.append($addSignalButton);
$(this).before($partValue);
partOrder++;
}
var parentQuestionId = $(this).find('[name="parentQuestionId"]').eq(0).val();
// 智力题没有不分片的,所以其他地方不需要这样
if (parentQuestionId == null || parentQuestionId == undefined || parentQuestionId.trim() == "") {
$(this).children('[name="question-seq"]').html((orderNum++) + ".");
smallQuestionNum = 1;
} else {
$(this).children('[name="question-seq"]').html("(" + (smallQuestionNum++) + ")");
}
// $(this).children('[name="question-seq"]').html((i+1) + ".");
});
if ($('#intelligence').val() == 'intelligence') {
$ibox_content.eq($ibox_content.length - 1).after('添加问答题 添加题目
');
} else {
$ibox_content.eq($ibox_content.length - 1).after('题目设置
');
}
},
testPackDefault: function () {
var testType = $('[name="testType"] option:selected').val();
if (testType == 'questionnaire') {
$('.jaq-div').removeAttrs("hidden");
$('.jaq-div').find("input").attr("required","true");
}
$('[name="testType"]').change(function () {
var testType = $('[name="testType"] option:selected').val();
if (testType != 'questionnaire') {
$('.jaq-div').attr("hidden","true");
$('.jaq-div').find('input').removeAttrs("required");
} else {
if (testType == 'questionnaire') {
$('.jaq-div').removeAttrs("hidden");
$('.jaq-div').find('input').attr("required","true");
}
}
});
},
// 添加题目
addQuetionClick: function (obj) {
$(obj).parent().attr("add-question-button-edit", "true");
$(obj).parent().prevAll('.part-value').eq(0).attr('add-part-edit', 'true');
$iboxContent = $(obj).parent().prev();
while ($iboxContent.hasClass('ibox-content') && $iboxContent.attr("add-intelligence-title") != "true" && $iboxContent.find('[name="template"]').eq(0).val() != "intelligence_title") {
$iboxContent.attr("add-question-now-part", 'true');
$iboxContent.attr("add-question-now-title", 'true');
$iboxContent = $iboxContent.prev();
}
$('#add-question-nopart').click();
},
addTitleClick: function (obj) {
// 用add-question-button-edit和添加题目一样,代码可以重用
$(obj).parent().attr("add-question-button-edit", "true");
$(obj).parent().prevAll('.part-value').eq(0).attr('add-part-edit', 'true');
$iboxContent = $(obj).parent().prev();
// 如果前面一个是问答题,让选择的是删除掉
if ($iboxContent.find('[name=template]').eq(0).val() == "intelligence_title") {
$iboxContent.attr("delete-question", "true");
}
$('#add-title-nopart').click();
},
deleteTitleAndTheQuestion: function (obj) {
// 问你一下是否要删除该问答题和下面的小题目
$.modal.confirm($.common.queryMessage('jsp.exam.product.deleteTitleQuestionAleter'), function () {
// 先获得要上的题目
$iboxContentTitle = $(obj).parents('.ibox-content').eq(0);
$iboxContentQuestion = $(obj).parents('.ibox-content').eq(0).next();
var questionId = $iboxContentTitle.find('[name="questionId"]').val();
$iboxContentTitle.remove();
// 循环删除下面的元素
while ($iboxContentQuestion.find('[name="parentQuestionId"]').eq(0).val() == questionId) {
$iboxContentQuestionTemp = $iboxContentQuestion;
$iboxContentQuestion = $iboxContentQuestion.next();
$iboxContentQuestionTemp.remove();
}
// 重新编号
$iboxContentForNum = $('.ibox.float-e-margins');
$.table.setNumber($iboxContentForNum);
});
},
setNumber: function ($editConten) {
var smallQuestionNum = 1;
var orderNum = 1;
$editConten.find('[name="question-seq"]').each(function (i) {
var $permanentId = $(this).parents('.segmentation').find('[name = "permanentId"]');
if ($permanentId.val().trim() != "" && $permanentId != undefined) {
$(this).html($permanentId.val() + "-" + String.fromCharCode(i + 97));
} else {
var parentQuestionId = $(this).parent().find('[name="parentQuestionId"]').eq(0).val();
// 智力题没有不分片的,所以其他地方不需要这样
if (parentQuestionId == null || parentQuestionId == undefined || parentQuestionId.trim() == "") {
$(this).html((orderNum++) + '.');
smallQuestionNum = 1;
} else {
$(this).html("(" + (smallQuestionNum++) + ")");
}
}
});
},
addQuestionAttr: function () {
$('#addHeadline-must').attr('hidden', 'true');
var $thisContent = $(this).parents('.segmentation').find(".float-e-margins");
$thisContent.attr('add-question-edit', 'true'); // add_question.html remove after save
},
addQuestionAttrrTail: function () {
$('.segmentation-group').removeAttrs("hidden");
}
},
// 表格树封装处理
treeTable: {
// 初始化表格
init: function(options) {
var defaults = {
id: "bootstrap-tree-table",
type: 1, // 0 代表bootstrapTable 1代表bootstrapTreeTable
height: 0,
rootIdValue: null,
ajaxParams: {},
toolbar: "toolbar",
striped: false,
expandColumn: 1,
showSearch: true,
showRefresh: true,
showColumns: true,
expandAll: true,
expandFirst: true
};
var options = $.extend(defaults, options);
$.table._option = options;
$.bttTable = $('#' + options.id).bootstrapTreeTable({
code: options.code, // 用于设置父子关系
parentCode: options.parentCode, // 用于设置父子关系
type: 'post', // 请求方式(*)
url: options.url, // 请求后台的URL(*)
ajaxParams: options.ajaxParams, // 请求数据的ajax的data属性
rootIdValue: options.rootIdValue, // 设置指定根节点id值
height: options.height, // 表格树的高度
expandColumn: options.expandColumn, // 在哪一列上面显示展开按钮
striped: options.striped, // 是否显示行间隔色
bordered: true, // 是否显示边框
toolbar: '#' + options.toolbar, // 指定工作栏
showSearch: options.showSearch, // 是否显示检索信息
showRefresh: options.showRefresh, // 是否显示刷新按钮
showColumns: options.showColumns, // 是否显示隐藏某列下拉框
expandAll: options.expandAll, // 是否全部展开
expandFirst: options.expandFirst, // 是否默认第一级展开--expandAll为false时生效
columns: options.columns, // 显示列信息(*)
responseHandler: $.treeTable.responseHandler // 当所有数据被加载时触发处理函数
});
},
// 条件查询
search: function(formId) {
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
var params = $.common.formToJSON(currentId);
$.bttTable.bootstrapTreeTable('refresh', params);
},
// 刷新
refresh: function() {
$.bttTable.bootstrapTreeTable('refresh');
},
// 查询表格树指定列值
selectColumns: function(column) {
var rows = $.map($.bttTable.bootstrapTreeTable('getSelections'), function (row) {
return row[column];
});
return $.common.uniqueFn(rows);
},
// 请求获取数据后处理回调函数,校验异常状态提醒
responseHandler: function(data) {
if (data.code != undefined && data.code != 0) {
$.modal.alertWarning(data.msg);
return [];
} else {
return data;
}
},
},
// 表单封装处理
form: {
// 表单重置
reset: function(formId) {
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
$("#" + currentId)[0].reset();
$.btTable.bootstrapTable('refresh');
},
// 获取选中复选框项
selectCheckeds: function(name) {
var checkeds = "";
$('input:checkbox[name="' + name + '"]:checked').each(function(i) {
if (0 == i) {
checkeds = $(this).val();
} else {
checkeds += ("," + $(this).val());
}
});
return checkeds;
},
// 获取选中下拉框项
selectSelects: function(name) {
var selects = "";
$('#' + name + ' option:selected').each(function (i) {
if (0 == i) {
selects = $(this).val();
} else {
selects += ("," + $(this).val());
}
});
return selects;
}
},
// 弹出层封装处理
modal: {
// 显示图标
icon: function(type) {
var icon = "";
if (type == modal_status.WARNING) {
icon = 0;
} else if (type == modal_status.SUCCESS) {
icon = 1;
} else if (type == modal_status.FAIL) {
icon = 2;
} else {
icon = 3;
}
return icon;
},
// 消息提示
msg: function(content, type) {
if (type != undefined) {
layer.msg(content, { icon: $.modal.icon(type), time: 1000, shift: 5 });
} else {
layer.msg(content);
}
},
// 错误消息
msgError: function(content) {
$.modal.msg(content, modal_status.FAIL);
},
// 成功消息
msgSuccess: function(content) {
$.modal.msg(content, modal_status.SUCCESS);
},
// 警告消息
msgWarning: function(content) {
$.modal.msg(content, modal_status.WARNING);
},
// 弹出提示
alert: function(content, type) {
layer.alert(content, {
icon: $.modal.icon(type),
title: $.common.queryMessage('system.hint'),
btn: [$.common.queryMessage('basis.confirm')],
btnclass: ['btn btn-primary'],
});
},
// 消息提示并刷新父窗体
msgReload: function(msg, type) {
layer.msg(msg, {
icon: $.modal.icon(type),
time: 500,
shade: [0.1, '#8F8F8F']
},
function() {
$.modal.reload();
});
},
// 错误提示
alertError: function(content) {
$.modal.alert(content, modal_status.FAIL);
},
// 成功提示
alertSuccess: function(content) {
$.modal.alert(content, modal_status.SUCCESS);
},
// 警告提示
alertWarning: function(content) {
$.modal.alert(content, modal_status.WARNING);
},
// 关闭窗体
close: function () {
var index = parent.layer.getFrameIndex(window.name);
parent.layer.close(index);
},
// 关闭全部窗体
closeAll: function () {
layer.closeAll();
},
// 确认窗体
confirm: function (content, callBack) {
layer.confirm(content, {
icon: 3,
title: $.common.queryMessage('system.hint'),
btn: [$.common.queryMessage('basis.confirm'), $.common.queryMessage('basis.cancel')]
}, function (index) {
layer.close(index);
callBack(true);
});
},
// 弹出层指定宽度
open: function (title, url, width, height, callback) {
//如果是移动端,就使用自适应大小弹窗
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
width = 'auto';
height = 'auto';
}
if ($.common.isEmpty(title)) {
title = false;
}
if ($.common.isEmpty(url)) {
url = "/404.html";
}
if ($.common.isEmpty(width)) {
width = 800;
}
if ($.common.isEmpty(height)) {
height = ($(window).height() - 50);
}
if ($.common.isEmpty(callback)) {
callback = function(index, layero) {
var iframeWin = layero.find('iframe')[0];
iframeWin.contentWindow.submitHandler(index, layero);
}
}
layer.open({
type: 2,
area: [width + 'px', height + 'px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: title,
content: url,
btn: [$.common.queryMessage('basis.confirm'), $.common.queryMessage('basis.close')],
// 弹层外区域关闭
shadeClose: true,
yes: callback,
cancel: function(index) {
return true;
}
});
},
// 弹出层指定参数选项
openOptions: function (options) {
var _url = $.common.isEmpty(options.url) ? "/404.html" : options.url;
var _title = $.common.isEmpty(options.title) ? "系统窗口" : options.title;
var _width = $.common.isEmpty(options.width) ? "800" : options.width;
var _height = $.common.isEmpty(options.height) ? ($(window).height() - 50) : options.height;
var _btn = [''+$.common.queryMessage('basis.confirm'), ' '+$.common.queryMessage('basis.close')];
if ($.common.isEmpty(options.yes)) {
options.yes = function(index, layero) {
options.callBack(index, layero);
}
}
layer.open({
type: 2,
maxmin: true,
shade: 0.3,
title: _title,
fix: false,
area: [_width + 'px', _height + 'px'],
content: _url,
shadeClose: $.common.isEmpty(options.shadeClose) ? true : options.shadeClose,
skin: options.skin,
btn: $.common.isEmpty(options.btn) ? _btn : options.btn,
yes: options.yes,
cancel: function () {
return true;
}
});
},
// 弹出层全屏
openFull: function (title, url, width, height) {
//如果是移动端,就使用自适应大小弹窗
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
width = 'auto';
height = 'auto';
}
if ($.common.isEmpty(title)) {
title = false;
}
if ($.common.isEmpty(url)) {
url = "/404.html";
}
if ($.common.isEmpty(width)) {
width = 800;
}
if ($.common.isEmpty(height)) {
height = ($(window).height() - 50);
}
var index = layer.open({
type: 2,
area: [width + 'px', height + 'px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: title,
content: url,
btn: [$.common.queryMessage('basis.confirm'), $.common.queryMessage('basis.close')],
// 弹层外区域关闭
shadeClose: true,
yes: function(index, layero) {
var iframeWin = layero.find('iframe')[0];
iframeWin.contentWindow.submitHandler(index, layero);
},
cancel: function(index) {
return true;
}
});
layer.full(index);
},
// 选卡页方式打开
openTab: function (title, url) {
createMenuItem(url, title);
},
// 选卡页同一页签打开
parentTab: function (title, url) {
var dataId = window.frameElement.getAttribute('data-id');
createMenuItem(url, title);
closeItem(dataId);
},
// 关闭选项卡
closeTab: function (dataId) {
closeItem(dataId);
},
// 禁用按钮
disable: function() {
var doc = window.top == window.parent ? window.document : window.parent.document;
$("a[class*=layui-layer-btn]", doc).addClass("layer-disabled");
},
// 启用按钮
enable: function() {
var doc = window.top == window.parent ? window.document : window.parent.document;
$("a[class*=layui-layer-btn]", doc).removeClass("layer-disabled");
},
// 打开遮罩层
loading: function (message) {
$.blockUI({ message: '' });
},
// 关闭遮罩层
closeLoading: function () {
setTimeout(function(){
$.unblockUI();
}, 50);
},
// 重新加载
reload: function () {
parent.location.reload();
},
richtext:function (nodeObj) {
var title = "richtext";
var url = "/richtext";
window.top.layer.open({
type: 2,
area: ['900px', '520px'],
fix: false,
//不固定
maxmin: true,
shade: 0.3,
title: title,
content: url,
btn: [$.common.queryMessage('basis.confirm'), $.common.queryMessage('basis.close')],
// 弹层外区域关闭
shadeClose: true,
yes: function (ix,layero) {
var iframeWin = window.top[layero.find('iframe')[0]['name']];
var html = iframeWin.$('.click2edit').summernote('code');
if (nodeObj) {
$(nodeObj).val(html);
}
window.top.layer.close(ix);
},
cancel: function(index) {
return true;
},
success:function (layero,ix){
if (nodeObj) {
var iframeWin = window.top[layero.find('iframe')[0]['name']];
iframeWin.$('.click2edit').summernote('code',nodeObj.value);
}
}
});
}
},
// 操作封装处理
operate: {
// 提交数据
submit: function(url, type, dataType, data, callback) {
var config = {
url: url,
type: type,
dataType: dataType,
data: data,
beforeSend: function () {
$.modal.loading("正在处理中,请稍后...");
},
success: function(result) {
if (typeof callback == "function") {
callback(result);
}
$.operate.ajaxSuccess(result);
}
};
$.ajax(config)
},
// post请求传输
post: function(url, data, callback) {
$.operate.submit(url, "post", "json", data, callback);
},
// get请求传输
get: function(url, callback) {
$.operate.submit(url, "get", "json", "", callback);
},
// 详细信息
detail: function(id, width, height) {
var _url = $.operate.detailUrl(id);
var options = {
title: $.table._option.modalName + "info",
width: width,
height: height,
url: $.operate.detailUrl(id),
skin: 'layui-layer-gray',
btn: [$.common.queryMessage('basis.close')],
yes: function (index, layero) {
layer.close(index);
}
};
$.modal.openOptions(options);
},
// 详细访问地址
detailUrl: function(id) {
var url = "/404.html";
if ($.common.isNotEmpty(id)) {
url = $.table._option.detailUrl.replace("{id}", id);
} else {
var id = $.common.isEmpty($.table._option.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.uniqueId);
if (id.length == 0) {
$.modal.alertWarning($.common.queryMessage('basic.tip7'));
return;
}
url = $.table._option.detailUrl.replace("{id}", id);
}
return url;
},
// 删除信息
remove: function(id) {
$.modal.confirm($.common.queryMessage('basic.tip6') + "?", function() {
var url = $.common.isEmpty(id) ? $.table._option.removeUrl : $.table._option.removeUrl.replace("{id}", id);
if($.table._option.type == table_type.bootstrapTreeTable) {
$.operate.get(url);
} else {
var data = { "ids": id };
$.operate.submit(url, "post", "json", data);
}
});
},
// 批量删除信息
removeAll: function() {
var rows = $.common.isEmpty($.table._option.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.uniqueId);
if (rows.length == 0) {
$.modal.alertWarning($.common.queryMessage('basic.tip7'));
return;
}
$.modal.confirm($.common.queryMessage('basic.tip6')+"?", function() {
var url = $.table._option.removeUrl;
var data = { "ids": rows.join() };
$.operate.submit(url, "post", "json", data);
});
},
// 清空信息
clean: function() {
$.modal.confirm($.common.queryMessage('basic.tip8') + $.table._option.modalName + "?", function() {
var url = $.table._option.cleanUrl;
$.operate.submit(url, "post", "json", "");
});
},
// 添加信息
add: function(id) {
$.modal.open("add" + $.table._option.modalName, $.operate.addUrl(id));
},
// 添加信息,以tab页展现
addTab: function (id) {
$.modal.openTab("add" + $.table._option.modalName, $.operate.addUrl(id));
},
// 添加信息 全屏
addFull: function(id) {
var url = $.common.isEmpty(id) ? $.table._option.createUrl : $.table._option.createUrl.replace("{id}", id);
$.modal.openFull("add" + $.table._option.modalName, url);
},
// 添加访问地址
addUrl: function(id) {
var url = $.common.isEmpty(id) ? $.table._option.createUrl.replace("{id}", "") : $.table._option.createUrl.replace("{id}", id);
return url;
},
// 修改信息
edit: function(id) {
if($.common.isEmpty(id) && $.table._option.type == table_type.bootstrapTreeTable) {
var row = $.bttTable.bootstrapTreeTable('getSelections')[0];
if ($.common.isEmpty(row)) {
$.modal.alertWarning($.common.queryMessage('basic.tip7'));
return;
}
var url = $.table._option.updateUrl.replace("{id}", row[$.table._option.uniqueId]);
$.modal.open("update" + $.table._option.modalName, url);
} else {
$.modal.open("update" + $.table._option.modalName, $.operate.editUrl(id));
}
},
// 修改信息,以tab页展现
editTab: function(id) {
$.modal.openTab("update" + $.table._option.modalName, $.operate.editUrl(id));
},
// 修改信息 全屏
editFull: function(id) {
var url = "/404.html";
if ($.common.isNotEmpty(id)) {
url = $.table._option.updateUrl.replace("{id}", id);
} else {
var row = $.common.isEmpty($.table._option.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.uniqueId);
url = $.table._option.updateUrl.replace("{id}", row);
}
$.modal.openFull("update" + $.table._option.modalName, url);
},
// 修改访问地址
editUrl: function(id) {
var url = "/404.html";
if ($.common.isNotEmpty(id)) {
url = $.table._option.updateUrl.replace("{id}", id);
} else {
var id = $.common.isEmpty($.table._option.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns($.table._option.uniqueId);
if (id.length == 0) {
$.modal.alertWarning("Please select at least one record");
return;
}
url = $.table._option.updateUrl.replace("{id}", id);
}
return url;
},
// 保存信息 刷新表格
save: function(url, data, callback) {
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
beforeSend: function () {
$.modal.loading("waiting...");
$.modal.disable();
},
success: function(result) {
if (typeof callback == "function") {
callback(result);
}
$.operate.successCallback(result);
}
};
$.ajax(config)
},
// 保存信息 弹出提示框
saveModal: function(url, data, callback) {
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
beforeSend: function () {
$.modal.loading("waiting...");
},
success: function(result) {
if (typeof callback == "function") {
callback(result);
}
if (result.code == web_status.SUCCESS) {
$.modal.alertSuccess(result.msg)
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
}
};
$.ajax(config)
},
// 保存选项卡信息
saveTab: function(url, data, callback) {
var config = {
url: url,
type: "post",
dataType: "json",
data: data,
beforeSend: function () {
$.modal.loading("正在处理中,请稍后...");
},
success: function(result) {
if (typeof callback == "function") {
callback(result);
}
$.operate.successTabCallback(result);
}
};
$.ajax(config)
},
// 文件提交
saveFileTab: function(url, data, callback) {
var config = {
url: url,
type: "post",
processData: false,
contentType: false,
data: data,
beforeSend: function () {
$.modal.loading("waiting...");
},
success: function(result) {
if (typeof callback == "function") {
callback(result);
}
$.operate.successTabCallback(result);
}
};
$.ajax(config)
},
// 保存结果弹出msg刷新table表格
ajaxSuccess: function (result) {
if (result.code == web_status.SUCCESS && $.table._option.type == table_type.bootstrapTable) {
$.modal.msgSuccess(result.msg);
$.table.refresh();
} else if (result.code == web_status.SUCCESS && $.table._option.type == table_type.bootstrapTreeTable) {
$.modal.msgSuccess(result.msg);
$.treeTable.refresh();
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
},
// 成功结果提示msg(父窗体全局更新)
saveSuccess: function (result) {
if (result.code == web_status.SUCCESS) {
$.modal.msgReload("Saved successfully, refreshing data, please wait……", modal_status.SUCCESS);
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
},
// 成功回调执行事件(父窗体静默更新)
successCallback: function(result) {
if (result.code == web_status.SUCCESS) {
var parent = window.parent;
if (parent.$.table._option.type == table_type.bootstrapTable) {
$.modal.close();
parent.$.modal.msgSuccess(result.msg);
parent.$.table.refresh();
} else if (parent.$.table._option.type == table_type.bootstrapTreeTable) {
$.modal.close();
parent.$.modal.msgSuccess(result.msg);
parent.$.treeTable.refresh();
} else {
$.modal.msgReload("Saved successfully, refreshing data, please wait……", modal_status.SUCCESS);
}
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
$.modal.enable();
},
// 选项卡成功回调执行事件(父窗体静默更新)
successTabCallback: function(result) {
if (result.code == web_status.SUCCESS) {
var topWindow = $(window.parent.document);
var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-panel');
var $contentWindow = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow)[0].contentWindow;
$.modal.close();
$contentWindow.$.modal.msgSuccess(result.msg);
$contentWindow.$(".layui-layer-padding").removeAttr("style");
if ($contentWindow.$.table._option.type == table_type.bootstrapTable) {
$contentWindow.$.table.refresh();
} else if ($contentWindow.$.table._option.type == table_type.bootstrapTreeTable) {
$contentWindow.$.treeTable.refresh();
}
$.modal.closeTab();
} else if (result.code == web_status.WARNING) {
$.modal.alertWarning(result.msg)
} else {
$.modal.alertError(result.msg);
}
$.modal.closeLoading();
},
parentHtml: function () {
try {
var topWindow = $(window.parent.document);
var currentId = $('.page-tabs-content', topWindow).find('.active').attr('data-panel');
var $parent = $('.RuoYi_iframe[data-id="' + currentId + '"]', topWindow)[0].contentWindow;
return $parent;
} catch (e) {
}
return parent;
},
selectMust: function () {
$('select').on("change", function () {
$(this).nextAll('.select-must').attr('hidden', 'true');
});
}
},
// 校验封装处理
validate: {
// 判断返回标识是否唯一 false 不存在 true 存在
unique: function (value) {
if (value == "0") {
return true;
}
return false;
},
// 表单验证
form: function (formId) {
var currentId = $.common.isEmpty(formId) ? $('form').attr('id') : formId;
return $("#" + currentId).validate().form();
},
must: function ($select) {
var flag = true;
$select.find('input').each(function () {
if ($(this).attr("needed") != undefined && $(this).val().trim() == "") {
$(this).siblings('div[class*="must"]').removeAttrs('hidden');
flag = false;
}
});
return flag;
},
verifyEmails: function (email) {
if (email == null || email == undefined || email.trim() == "") {
return true;
}
var reg = /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/;
var emails = email.split(",");
for (var i = 0; i < emails.length; i++) {
if (!reg.test(emails[i])) {
$.modal.alertError($.common.queryMessage('basis.mail.valify'));
return false;
}
}
return true;
},
verifyLangType: function () {
if ($('[name="langType"]').val() == null ) {
$.modal.alertWarning($.common.queryMessage('jsp.exam.product.pleaseSelectLangType'));
$('[name="langType"]').focus();
return false;
}
return true;
}
},
// 树插件封装处理
tree: {
_option: {},
_lastValue: {},
// 初始化树结构
init: function(options) {
var defaults = {
id: "tree", // 属性ID
expandLevel: 0, // 展开等级节点
view: {
selectedMulti: false, // 设置是否允许同时选中多个节点
nameIsHTML: true // 设置 name 属性是否支持 HTML 脚本
},
check: {
enable: false, // 置 zTree 的节点上是否显示 checkbox / radio
nocheckInherit: true, // 设置子节点是否自动继承
},
data: {
key: {
title: "title" // 节点数据保存节点提示信息的属性名称
},
simpleData: {
enable: true // true / false 分别表示 使用 / 不使用 简单数据模式
}
},
};
var options = $.extend(defaults, options);
$.tree._option = options;
// 树结构初始化加载
var setting = {
callback: {
onClick: options.onClick, // 用于捕获节点被点击的事件回调函数
onCheck: options.onCheck, // 用于捕获 checkbox / radio 被勾选 或 取消勾选的事件回调函数
onDblClick: options.onDblClick // 用于捕获鼠标双击之后的事件回调函数
},
check: options.check,
view: options.view,
data: options.data
};
$.get(options.url, function(data) {
var treeId = $("#treeId").val();
tree = $.fn.zTree.init($("#" + options.id), setting, data);
$._tree = tree;
var nodes = tree.getNodesByParam("level", options.expandLevel - 1);
for (var i = 0; i < nodes.length; i++) {
tree.expandNode(nodes[i], true, false, false);
}
var node = tree.getNodesByParam("id", treeId, null)[0];
$.tree.selectByIdName(treeId, node);
});
},
// 搜索节点
searchNode: function() {
// 取得输入的关键字的值
var value = $.common.trim($("#keyword").val());
if ($.tree._lastValue == value) {
return;
}
// 保存最后一次搜索名称
$.tree._lastValue = value;
var nodes = $._tree.getNodes();
// 如果要查空字串,就退出不查了。
if (value == "") {
$.tree.showAllNode(nodes);
return;
}
$.tree.hideAllNode(nodes);
// 根据搜索值模糊匹配
$.tree.updateNodes($._tree.getNodesByParamFuzzy("name", value));
},
// 根据Id和Name选中指定节点
selectByIdName: function(treeId, node) {
if ($.common.isNotEmpty(treeId) && treeId == node.id) {
$._tree.selectNode(node, true);
}
},
// 显示所有节点
showAllNode: function(nodes) {
nodes = $._tree.transformToArray(nodes);
for (var i = nodes.length - 1; i >= 0; i--) {
if (nodes[i].getParentNode() != null) {
$._tree.expandNode(nodes[i], true, false, false, false);
} else {
$._tree.expandNode(nodes[i], true, true, false, false);
}
$._tree.showNode(nodes[i]);
$.tree.showAllNode(nodes[i].children);
}
},
// 隐藏所有节点
hideAllNode: function(nodes) {
var tree = $.fn.zTree.getZTreeObj("tree");
var nodes = $._tree.transformToArray(nodes);
for (var i = nodes.length - 1; i >= 0; i--) {
$._tree.hideNode(nodes[i]);
}
},
// 显示所有父节点
showParent: function(treeNode) {
var parentNode;
while ((parentNode = treeNode.getParentNode()) != null) {
$._tree.showNode(parentNode);
$._tree.expandNode(parentNode, true, false, false);
treeNode = parentNode;
}
},
// 显示所有孩子节点
showChildren: function(treeNode) {
if (treeNode.isParent) {
for (var idx in treeNode.children) {
var node = treeNode.children[idx];
$._tree.showNode(node);
$.tree.showChildren(node);
}
}
},
// 更新节点状态
updateNodes: function(nodeList) {
$._tree.showNodes(nodeList);
for (var i = 0, l = nodeList.length; i < l; i++) {
var treeNode = nodeList[i];
$.tree.showChildren(treeNode);
$.tree.showParent(treeNode)
}
},
// 获取当前被勾选集合
getCheckedNodes: function(column) {
var _column = $.common.isEmpty(column) ? "id" : column;
var nodes = $._tree.getCheckedNodes(true);
return $.map(nodes, function (row) {
return row[_column];
}).join();
},
// 不允许根父节点选择
notAllowParents: function(_tree) {
var nodes = _tree.getSelectedNodes();
for (var i = 0; i < nodes.length; i++) {
if (nodes[i].level == 0) {
$.modal.msgError("不能选择根节点(" + nodes[i].name + ")");
return false;
}
if (nodes[i].isParent) {
$.modal.msgError("不能选择父节点(" + nodes[i].name + ")");
return false;
}
}
return true;
},
// 不允许最后层级节点选择
notAllowLastLevel: function(_tree) {
var nodes = _tree.getSelectedNodes();
for (var i = 0; i < nodes.length; i++) {
if (!nodes[i].isParent) {
$.modal.msgError("不能选择最后层级节点(" + nodes[i].name + ")");
return false;
}
}
return true;
},
// 隐藏/显示搜索栏
toggleSearch: function() {
$('#search').slideToggle(200);
$('#btnShow').toggle();
$('#btnHide').toggle();
$('#keyword').focus();
},
// 折叠
collapse: function() {
$._tree.expandAll(false);
},
// 展开
expand: function() {
$._tree.expandAll(true);
}
},
// 通用方法封装处理
common: {
// 判断字符串是否为空
isEmpty: function (value) {
if (value == null || this.trim(value) == "") {
return true;
}
return false;
},
// 判断一个字符串是否为非空串
isNotEmpty: function (value) {
return !$.common.isEmpty(value);
},
// 空对象转字符串
nullToStr: function(value) {
if ($.common.isEmpty(value)) {
return "-";
}
return value;
},
// 是否显示数据 为空默认为显示
visible: function (value) {
if ($.common.isEmpty(value) || value == true) {
return true;
}
return false;
},
// 空格截取
trim: function (value) {
if (value == null) {
return "";
}
return value.toString().replace(/(^\s*)|(\s*$)|\r|\n/g, "");
},
// 比较两个字符串(大小写敏感)
equals: function (str, that) {
return str == that;
},
// 比较两个字符串(大小写不敏感)
equalsIgnoreCase: function (str, that) {
return String(str).toUpperCase() === String(that).toUpperCase();
},
// 将字符串按指定字符分割
split: function (str, sep, maxLen) {
if ($.common.isEmpty(str)) {
return null;
}
var value = String(str).split(sep);
return maxLen ? value.slice(0, maxLen - 1) : value;
},
// 字符串格式化(%s )
sprintf: function (str) {
var args = arguments, flag = true, i = 1;
str = str.replace(/%s/g, function () {
var arg = args[i++];
if (typeof arg === 'undefined') {
flag = false;
return '';
}
return arg;
});
return flag ? str : '';
},
// 指定随机数返回
random: function (min, max) {
return Math.floor((Math.random() * max) + min);
},
// 判断字符串是否是以start开头
startWith: function(value, start) {
var reg = new RegExp("^" + start);
return reg.test(value)
},
// 判断字符串是否是以end结尾
endWith: function(value, end) {
var reg = new RegExp(end + "$");
return reg.test(value)
},
// 数组去重
uniqueFn: function(array) {
var result = [];
var hashObj = {};
for (var i = 0; i < array.length; i++) {
if (!hashObj[array[i]]) {
hashObj[array[i]] = true;
result.push(array[i]);
}
}
return result;
},
// 数组中的所有元素放入一个字符串
join: function(array, separator) {
if ($.common.isEmpty(array)) {
return null;
}
return array.join(separator);
},
// 获取form下所有的字段并转换为json对象
formToJSON: function(formId) {
var json = {};
$.each($("#" + formId).serializeArray(), function(i, field) {
json[field.name] = field.value;
});
return json;
},
queryMessage:function (key) {
var query = top.window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i