| | |
| | | return btn; |
| | | } |
| | | }, |
| | | {title: '今日接单', field: 'dayReceivingOrders', visible: true, align: 'center', valign: 'middle',width:'9%', |
| | | formatter: function (value, row) { |
| | | var btn = ""; |
| | | if(row.dayReceivingOrders != '' && row.dayReceivingOrders != null) { |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.dayReceivingOrders + '" onfocus="TUser.tooltip()">' + row.dayReceivingOrders + '</p>'] |
| | | }else{ |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] |
| | | } |
| | | return btn; |
| | | } |
| | | }, |
| | | {title: '累计接单', field: 'sumReceivingOrders', visible: true, align: 'center', valign: 'middle',width:'9%', |
| | | formatter: function (value, row) { |
| | | var btn = ""; |
| | | if(row.sumReceivingOrders != '' && row.sumReceivingOrders != null) { |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.sumReceivingOrders + '" onfocus="TUser.tooltip()">' + row.sumReceivingOrders + '</p>'] |
| | | }else{ |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] |
| | | } |
| | | return btn; |
| | | } |
| | | }, |
| | | {title: '当天收入', field: 'dayIncome', visible: true, align: 'center', valign: 'middle',width:'9%', |
| | | formatter: function (value, row) { |
| | | var btn = ""; |
| | | if(row.dayIncome != '' && row.dayIncome != null) { |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.dayIncome + '" onfocus="TUser.tooltip()">' + row.dayIncome + '</p>'] |
| | | }else{ |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] |
| | | } |
| | | return btn; |
| | | } |
| | | }, |
| | | {title: '共计收入', field: 'sumIncome', visible: true, align: 'center', valign: 'middle',width:'9%', |
| | | formatter: function (value, row) { |
| | | var btn = ""; |
| | | if(row.sumIncome != '' && row.sumIncome != null) { |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="' + row.sumIncome + '" onfocus="TUser.tooltip()">' + row.sumIncome + '</p>'] |
| | | }else{ |
| | | btn = ['<p class="toolTip" style="overflow:hidden;white-space:nowrap;text-overflow:ellipsis;" title="-" onfocus="TUser.tooltip()">-</p>'] |
| | | } |
| | | return btn; |
| | | } |
| | | }, |
| | | {title: '评分', field: 'fraction', visible: true, align: 'center', valign: 'middle',width:'8%'}, |
| | | |
| | | {title: '历史<br/>接单数', field: 'historyNum', visible: true, align: 'center', valign: 'middle',width:'7%', |