修复table列表在卡片视图下操作相关按钮前端显示偏离问题
This commit is contained in:
parent
c12b7571f0
commit
a841272425
|
|
@ -97,7 +97,6 @@
|
||||||
{
|
{
|
||||||
field: 'businessType',
|
field: 'businessType',
|
||||||
title: '操作类型',
|
title: '操作类型',
|
||||||
align: 'center',
|
|
||||||
formatter: function(value, row, index) {
|
formatter: function(value, row, index) {
|
||||||
return $.table.selectDictLabel(datas, value);
|
return $.table.selectDictLabel(datas, value);
|
||||||
}
|
}
|
||||||
|
|
@ -122,7 +121,6 @@
|
||||||
{
|
{
|
||||||
field: 'status',
|
field: 'status',
|
||||||
title: '操作状态',
|
title: '操作状态',
|
||||||
align: 'center',
|
|
||||||
formatter: function(value, row, index) {
|
formatter: function(value, row, index) {
|
||||||
if (value == 0) {
|
if (value == 0) {
|
||||||
return '<span class="badge badge-primary">成功</span>';
|
return '<span class="badge badge-primary">成功</span>';
|
||||||
|
|
@ -138,7 +136,6 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
align: 'center',
|
|
||||||
formatter: function(value, row, index) {
|
formatter: function(value, row, index) {
|
||||||
var actions = [];
|
var actions = [];
|
||||||
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.operId + '\')"><i class="fa fa-search"></i>详细</a>');
|
actions.push('<a class="btn btn-warning btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detail(\'' + row.operId + '\')"><i class="fa fa-search"></i>详细</a>');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue