Commit e0567df7 authored by Facius's avatar Facius

fix: 订单cell报错;完工页面异常单报错

parent b166f695
...@@ -470,7 +470,7 @@ export default { ...@@ -470,7 +470,7 @@ export default {
exceptionRecord() { exceptionRecord() {
// 如果是异常单告诉后台 // 如果是异常单告诉后台
if (this.realType == 'exception') { if (this.realType == 'exception') {
this.$u.api.workerDealWithError(item.orderId).then(() => {}) this.$u.api.workerDealWithError(this.orderData.orderId).then(() => {})
} }
}, },
storeOparation() { storeOparation() {
......
...@@ -604,7 +604,7 @@ export default { ...@@ -604,7 +604,7 @@ export default {
for (var item of pages) { for (var item of pages) {
if ( if (
['/pages/mine/history/index', '/pages/mine/order/index'].indexOf( ['/pages/mine/history/index', '/pages/mine/order/index'].indexOf(
item.$page.fullPath item.$page?.fullPath.split('?')[0]
) != -1 ) != -1
) { ) {
return pages.length - i - 1 return pages.length - i - 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment