mirror of https://gitee.com/karson/fastadmin.git
commit
9174b6c306
|
|
@ -12130,7 +12130,7 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
|
||||||
'click .img-center': function (e, value, row, index) {
|
'click .img-center': function (e, value, row, index) {
|
||||||
var data = [];
|
var data = [];
|
||||||
value = value === null ? '' : value.toString();
|
value = value === null ? '' : value.toString();
|
||||||
var arr = value != '' ? split(",") : [];
|
var arr = value != '' ? value.split(",") : [];
|
||||||
$.each(arr, function (index, value) {
|
$.each(arr, function (index, value) {
|
||||||
data.push({
|
data.push({
|
||||||
src: Fast.api.cdnurl(value),
|
src: Fast.api.cdnurl(value),
|
||||||
|
|
|
||||||
|
|
@ -11979,7 +11979,7 @@ define('table',['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstr
|
||||||
'click .img-center': function (e, value, row, index) {
|
'click .img-center': function (e, value, row, index) {
|
||||||
var data = [];
|
var data = [];
|
||||||
value = value === null ? '' : value.toString();
|
value = value === null ? '' : value.toString();
|
||||||
var arr = value != '' ? split(",") : [];
|
var arr = value != '' ? value.split(",") : [];
|
||||||
$.each(arr, function (index, value) {
|
$.each(arr, function (index, value) {
|
||||||
data.push({
|
data.push({
|
||||||
src: Fast.api.cdnurl(value),
|
src: Fast.api.cdnurl(value),
|
||||||
|
|
|
||||||
|
|
@ -602,7 +602,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
|
||||||
'click .img-center': function (e, value, row, index) {
|
'click .img-center': function (e, value, row, index) {
|
||||||
var data = [];
|
var data = [];
|
||||||
value = value === null ? '' : value.toString();
|
value = value === null ? '' : value.toString();
|
||||||
var arr = value != '' ? split(",") : [];
|
var arr = value != '' ? value.split(",") : [];
|
||||||
$.each(arr, function (index, value) {
|
$.each(arr, function (index, value) {
|
||||||
data.push({
|
data.push({
|
||||||
src: Fast.api.cdnurl(value),
|
src: Fast.api.cdnurl(value),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue