|
|
@ -47,7 +47,7 @@ |
|
|
|
<!-- </a>--> |
|
|
|
</div> |
|
|
|
<div class="col-sm-12 select-table table-striped"> |
|
|
|
<table id="bootstrap-table" style="white-space:nowrap"></table> |
|
|
|
<table id="bootstrap-table" ></table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -70,7 +70,7 @@ |
|
|
|
modalName: "送货地址", |
|
|
|
columns: [ |
|
|
|
{checkbox: true}, |
|
|
|
{title: '送货id',field: 'deliveryId'}, |
|
|
|
{title: '送货id',field: 'deliveryId', visible: false}, |
|
|
|
{title: '客户/企业代码',field: 'enterpriseCode'}, |
|
|
|
{title: '客户/企业名称',field: 'enterpriseName'}, |
|
|
|
{title: '联系人电话',field: 'customerPhone'}, |
|
|
@ -90,9 +90,10 @@ |
|
|
|
align: 'center', |
|
|
|
formatter: function (value, row, index) { |
|
|
|
var actions = []; |
|
|
|
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.deliveryId + '\')"><i class="fa fa-edit"></i>编辑</a> '); |
|
|
|
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.deliveryId + '\')"><i class="fa fa-remove"></i>删除</a>'); |
|
|
|
return actions.join(''); |
|
|
|
actions.push('<a class=" ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.deliveryId + '\')"><i class="fa fa-edit"></i>编辑</a> '); |
|
|
|
actions.push('<a class=" ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.deliveryId + '\')"><i class="fa fa-remove"></i>删除</a>'); |
|
|
|
var actionLinks = actions.join(''); |
|
|
|
return $.table.dropdownToggle(actionLinks); |
|
|
|
} |
|
|
|
} |
|
|
|
] |
|
|
|