|
@@ -30,7 +30,7 @@
|
30
|
30
|
<div style="padding:25px 20px 5px;border-bottom:2px solid #cccccc;">
|
31
|
31
|
<i class="iconfont icon-yinchenglogo" style="font-size:70px;color:red;position: relative;bottom: 20px;margin-right:10px;"></i>
|
32
|
32
|
<div style="display:inline-block;">
|
33
|
|
- <span style="display:block;font-size:20px;font-weight:700;width:180px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;">{{item.AreaName + item.TableNo}}</span>
|
|
33
|
+ <span style="display:block;font-size:20px;font-weight:700;width:180px;white-space: initial;">{{item.AreaName + item.TableNo}}</span>
|
34
|
34
|
<span style="display:block;margin-top:10px">下单时间:{{toolClass.dateFormat(item.CreateDate)}}</span>
|
35
|
35
|
<span style="display:block;margin-top:10px">已等待:<span style="color:red;font-weight:700;">{{leftTimes[item.OrdersId]}}</span></span>
|
36
|
36
|
</div>
|
|
@@ -249,7 +249,7 @@ export default {
|
249
|
249
|
let newData = JSON.parse(e.data).data.refreshOnlineGoodsOrders.slice(lengthOld - lengthNew)
|
250
|
250
|
this.updateList(JSON.parse(e.data).data.refreshOnlineGoodsOrders).then(() => {
|
251
|
251
|
for (let i = 0; i < newData.length; i++) {
|
252
|
|
- let index = newData[i].indexOf(this.list)
|
|
252
|
+ let index = this.list.indexOf(newData[i])
|
253
|
253
|
this.printPdf(`item${index}`)
|
254
|
254
|
}
|
255
|
255
|
})
|