mirror of https://gitee.com/y_project/RuoYi.git
全屏editFull打开适配表树
parent
d066539616
commit
e517741f99
|
@ -214,10 +214,15 @@ var table = {
|
||||||
// 图片预览事件
|
// 图片预览事件
|
||||||
$(optionsIds).off("click").on("click", '.img-circle', function() {
|
$(optionsIds).off("click").on("click", '.img-circle', function() {
|
||||||
var src = $(this).attr('src');
|
var src = $(this).attr('src');
|
||||||
var target = $(this).data('target');
|
|
||||||
var height = $(this).data('height');
|
|
||||||
var width = $(this).data('width');
|
var width = $(this).data('width');
|
||||||
if($.common.equals("self", target)) {
|
if($.common.equals("self", target)) {
|
||||||
|
var height = $(this).data('height');
|
||||||
|
var width = $(this).data('width');
|
||||||
|
// 如果是移动端,就使用自适应大小弹窗
|
||||||
|
if ($.common.isMobile()) {
|
||||||
|
width = 'auto';
|
||||||
|
height = 'auto';
|
||||||
|
}
|
||||||
layer.open({
|
layer.open({
|
||||||
title: false,
|
title: false,
|
||||||
type: 1,
|
type: 1,
|
||||||
|
@ -1031,8 +1036,17 @@ var table = {
|
||||||
if ($.common.isNotEmpty(id)) {
|
if ($.common.isNotEmpty(id)) {
|
||||||
url = table.options.updateUrl.replace("{id}", id);
|
url = table.options.updateUrl.replace("{id}", id);
|
||||||
} else {
|
} else {
|
||||||
var row = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
|
if(table.options.type == table_type.bootstrapTreeTable) {
|
||||||
url = table.options.updateUrl.replace("{id}", row);
|
var row = $("#" + table.options.id).bootstrapTreeTable('getSelections')[0];
|
||||||
|
if ($.common.isEmpty(row)) {
|
||||||
|
$.modal.alertWarning("请至少选择一条记录");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
url = table.options.updateUrl.replace("{id}", row[table.options.uniqueId]);
|
||||||
|
} else {
|
||||||
|
var row = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
|
||||||
|
url = table.options.updateUrl.replace("{id}", row);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$.modal.openFull("修改" + table.options.modalName, url);
|
$.modal.openFull("修改" + table.options.modalName, url);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue