mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-05 17:42:49 +08:00
优化table的field拼接边界兼容性
This commit is contained in:
@@ -1017,7 +1017,9 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
|
||||
} else {
|
||||
var querys = '';
|
||||
if (operat.url.indexOf("?") !== -1) {
|
||||
querys = '&'
|
||||
if (operat.url.indexOf("?") !== operat.url.length - 1) {
|
||||
querys = '&'
|
||||
}
|
||||
} else {
|
||||
querys = '?'
|
||||
}
|
||||
@@ -2264,7 +2266,7 @@ define(["jquery", "tableSelect", "ckeditor", 'miniTheme', 'tableData', 'citypick
|
||||
$.each(list, function (i, v) {
|
||||
var data = $(v).data()
|
||||
data.value = $(v).text()
|
||||
|
||||
|
||||
propertyInput.render(v, data, admin);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user