| | |
| | | if(row.reason != '' && row.reason != null) { |
| | | var str = row.reason; |
| | | if (str.length > 20){ |
| | | str = str.substring(0,20)+'...<br><button class="btn btn-outline btn-primary" onclick="TReassign.buttonClick(' + row.id + ',1)">查看更多</button>'; |
| | | str = str.substring(0,20)+'...<br><button class="btn btn-outline btn-primary" onclick="TReassign.buttonClick(' + row.id + ')">查看更多</button>'; |
| | | } |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.reason + '" onfocus="TUser.tooltip()">' + str + '</p>'] |
| | | } |
| | |
| | | } |
| | | }; |
| | | |
| | | |
| | | TReassign.buttonClick = function (id) { |
| | | var index = layer.open({ |
| | | type: 2, |
| | | title: '查看详情', |
| | | area: ['800px', '420px'], //宽高 |
| | | fix: false, //不固定 |
| | | maxmin: true, |
| | | content: Feng.ctxPath + '/tReassign/lookDetail/'+id |
| | | }); |
| | | this.layerIndex = index; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询专车改派管理列表 |
| | | */ |