chore: 暂时保存
This commit is contained in:
@@ -165,7 +165,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import orderMethod from './public/js/orderMethod.js';
|
||||
import orderMethod from '../public/js/orderMethod.js';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
@@ -214,7 +214,7 @@ export default {
|
||||
if (this.$refs.mescroll) this.$refs.mescroll.refresh();
|
||||
} else {
|
||||
this.$nextTick(() => {
|
||||
this.$refs.login.open('/pages_order/list?status=' + this.orderStatus);
|
||||
this.$refs.login.open('/pages_order/base/list?status=' + this.orderStatus);
|
||||
})
|
||||
}
|
||||
},
|
||||
@@ -367,13 +367,13 @@ export default {
|
||||
switch (parseInt(data.order_type)) {
|
||||
case 2:
|
||||
// 自提订单
|
||||
this.$util.redirectTo('/pages_order/detail_pickup', {
|
||||
this.$util.redirectTo('/pages_order/detail/detail_pickup', {
|
||||
order_id: data.order_id
|
||||
});
|
||||
break;
|
||||
case 3:
|
||||
// 本地配送订单
|
||||
this.$util.redirectTo('/pages_order/detail_local_delivery', {
|
||||
this.$util.redirectTo('/pages_order/detail/detail_local_delivery', {
|
||||
order_id: data.order_id
|
||||
});
|
||||
break;
|
||||
@@ -384,7 +384,7 @@ export default {
|
||||
});
|
||||
break;
|
||||
default:
|
||||
this.$util.redirectTo('/pages_order/detail', {
|
||||
this.$util.redirectTo('/pages_order/detail/detail', {
|
||||
order_id: data.order_id
|
||||
});
|
||||
break;
|
||||
@@ -462,7 +462,7 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './public/css/list.scss';
|
||||
@import '../public/css/list.scss';
|
||||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@@ -633,7 +633,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import orderMethod from './public/js/orderMethod.js';
|
||||
import orderMethod from '../public/js/orderMethod.js';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
@@ -679,7 +679,7 @@ export default {
|
||||
this.getOrderData();
|
||||
} else {
|
||||
this.$util.redirectTo('/pages_tool/login/login', {
|
||||
back: '/pages_order/detail?order_id=' + this.orderId + '&merchant_trade_no=' + this.merchantTradeNo
|
||||
back: '/pages_order/detail/detail?order_id=' + this.orderId + '&merchant_trade_no=' + this.merchantTradeNo
|
||||
});
|
||||
}
|
||||
},
|
||||
@@ -746,7 +746,7 @@ export default {
|
||||
title: '未获取到订单信息!'
|
||||
});
|
||||
setTimeout(() => {
|
||||
this.$util.redirectTo('/pages_order/list');
|
||||
this.$util.redirectTo('/pages_order/base/list');
|
||||
}, 1500);
|
||||
}
|
||||
},
|
||||
@@ -837,7 +837,7 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './public/css/detail.scss';
|
||||
@import '../public/css/detail.scss';
|
||||
</style>
|
||||
<style scoped>
|
||||
.pickup-code-info .code img:nth-child(1) {
|
||||
@@ -14,7 +14,7 @@ export default {
|
||||
},
|
||||
onLoad(option) {
|
||||
if (option.order_id) {
|
||||
this.$util.redirectTo('/pages_order/detail', {order_id: option.order_id}, 'redirectTo');
|
||||
this.$util.redirectTo('/pages_order/detail/detail', {order_id: option.order_id}, 'redirectTo');
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -14,7 +14,7 @@ export default {
|
||||
},
|
||||
onLoad(option) {
|
||||
if (option.order_id) {
|
||||
this.$util.redirectTo('/pages_order/detail', {order_id: option.order_id}, 'redirectTo');
|
||||
this.$util.redirectTo('/pages_order/detail/detail', {order_id: option.order_id}, 'redirectTo');
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -170,7 +170,7 @@ export default {
|
||||
this.getOrderData();
|
||||
} else {
|
||||
this.$util.redirectTo('/pages_tool/login/login', {
|
||||
back: '/pages_order/detail_point?order_id=' + this.orderId
|
||||
back: '/pages_order/detail/detail_point?order_id=' + this.orderId
|
||||
});
|
||||
}
|
||||
},
|
||||
@@ -211,7 +211,7 @@ export default {
|
||||
title: '未获取到订单信息!'
|
||||
});
|
||||
setTimeout(() => {
|
||||
this.$util.redirectTo('/pages_order/list');
|
||||
this.$util.redirectTo('/pages_order/base/list');
|
||||
}, 1500);
|
||||
}
|
||||
},
|
||||
@@ -301,7 +301,7 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import './public/css/detail.scss';
|
||||
@import '../public/css/detail.scss';
|
||||
</style>
|
||||
<style scoped>
|
||||
/deep/ .sku-layer .uni-popup__wrapper.uni-custom .uni-popup__wrapper-box {
|
||||
Reference in New Issue
Block a user