只需要把text改为以下内容即可
```
text: function(row){
return row.accomplishNum;
},
```
```
{
field: 'buttons',
width: "120px",
title: __('已完成'),
table: table,
events: Table.api.events.operate,
operate: false,
buttons: [{
name: 'accomplishNum',
text: function(row){
return row.accomplishNum;
},
title: __('已完成'),
classname: 'btn btn-xs btn-success btn-dialog',
url: 'sideline/details',
callback: function (data) {
Layer.alert("接收到回传数据:" + JSON.stringify(data), { title: "回传数据" });
},
visible: function (row) {
//返回true时按钮显示,返回false隐藏
return true;
}
},
],
formatter: Table.api.formatter.buttons
},
```