订单列表 接单 + 商家信息
This commit is contained in:
parent
9a193669b8
commit
f7017a21c1
|
|
@ -432,9 +432,9 @@
|
|||
+ '<small> 订单编号:' + row.code + '<small/> <br>'
|
||||
+ '<h4> ' + value.goodsName + '<h4/>'
|
||||
// + '<small> ' + value.goodsDesc + '</small> <br>'
|
||||
+ '<small> 联系人:' + row.addressName + '</small> <br>'
|
||||
+ '<small> 联系电话:' + row.addressPhone + '</small> <br>'
|
||||
+ '<small> 联系地址:' + row.address + '</small> <br>'
|
||||
+ '<small>' + row.addressName + '</small> <br>'
|
||||
+ '<small>' + row.addressPhone + '</small> <br>'
|
||||
+ '<small>' + row.address + '</small> <br>'
|
||||
+ '<small> 下单时间:' + row.createTime + '</small> <br>'
|
||||
+ '<small> 预约时间:' + row.expectTimeStart + ' - ' + row.expectTimeEnd + '</small> <br>'
|
||||
+ '<small> 总金额:' + row.financialMasterMoney + '元 应得金额:' + row.financialDetailMoney + '元</small> <br>'
|
||||
|
|
@ -454,8 +454,10 @@
|
|||
field: 'worker',
|
||||
title: '接单信息',
|
||||
formatter: function (value, row, index) {
|
||||
<!-- return '<small>' + value.name + value.phone + '</small><br>'-->
|
||||
<!-- + '<small>接单时间:' + row.revTime + '</small>';-->
|
||||
if(value){
|
||||
return '<small>' + value.name + value.phone + '</small><br>'
|
||||
+ '<small>接单时间:' + value.createTime + '</small>';
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
@ -476,8 +478,10 @@
|
|||
field: 'goodsWorker',
|
||||
title: '商家信息',
|
||||
formatter: function (value, row, index) {
|
||||
<!-- return '<small>' + value.name + '</small><br>'-->
|
||||
<!-- + '<small>' + value.phone + '</small>';-->
|
||||
if(value){
|
||||
return '<small>' + value.name + '</small><br>'
|
||||
+ '<small>' + value.phone + '</small>';
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue