Compare commits

...

3 Commits

3 changed files with 18 additions and 5 deletions

View File

@ -71,7 +71,7 @@
<view
class="schedule-block"
v-if="
![2010, 2060, 2070].includes(OrderInfo.order_state_id) &&
![2010, 2050,2060, 2070].includes(OrderInfo.order_state_id) &&
![5, 10].includes(OrderInfo.delivery_type_id)
"
>
@ -92,7 +92,7 @@
'iconfontAili icon-money-cny-circle-fill icon-2',
orderProcessCalss(OrderInfo.order_state_id),
]"
></view>
></view>
<view
:class="[
'iconfontAili icon-yundianxiaochengxu2_tongchengpeisong icon-3',
@ -106,10 +106,12 @@
class="map-block"
ref="mapBlock"
v-if="
![2010, 2060, 2070].includes(OrderInfo.order_state_id) &&
![2010, 2060, 2050,2070].includes(OrderInfo.order_state_id) &&
![5, 10].includes(OrderInfo.delivery_type_id)
"
>
<!--5-自提;10-快递;16-同城配送;"-->
<!--2010待付款 2050已签收 2060已完成 2070已取消-->
<map
:latitude="mapLat"
:longitude="mapLng"
@ -1424,6 +1426,11 @@ export default {
return "satisfy";
}
},
orderSignCalss(id) {
if ([2050].includes(id)) {
return "satisfy";
}
},
orderTips() {
switch (this.OrderInfo.order_state_id) {
case 2010:
@ -1437,6 +1444,9 @@ export default {
case 2040:
return "骑手正在配送中,亲耐心等待";
break;
case 2050:
return "用户已签收";
break;
case 2060:
return "感谢您对小发同城的信任,期待再次光临。";
break;

View File

@ -151,6 +151,7 @@
v-if="category_deep == 1"
ref="productList"
:uniId="ptConfig.uniId"
:storeId="shopInfo.store_id"
:isFilterFixed="ptConfig.isFilterFixed"
:isShowFilter="ptConfig.isShowFilter"
:isShowLoading="ptConfig.isShowLoading"
@ -464,7 +465,6 @@ export default {
that.categoryId = options.category_id;
that.storeId = options.store_id;
that.w = w;
that.$.getSystemInfo({
success: function (t) {
that.setData({ screenHeight: t.screenHeight });

View File

@ -1884,6 +1884,9 @@ export default {
pointer-events: auto;
}
}
::v-deep .uni-nav-bar-text {
font-size: 20px !important;
font-weight: 500;
}
</style>