修改订单跳转方法

This commit is contained in:
TOP糯米 2023-02-25 16:38:46 +08:00
parent c698a76016
commit 75ed561afa
2 changed files with 14 additions and 9 deletions

View File

@ -1,5 +1,5 @@
<template>
<view class="component-order-item" @click="toDetail">
<view class="component-order-item">
<view class="order-header">
<view class="state-text" :style="{ color: models.order.getOrderStateTextColor(order.state) }">
<text>{{ models.order.getOrderStateText(order.state) }}</text>
@ -108,13 +108,6 @@ export default {
},
});
},
toDetail() {
let type = "detail";
if (this.order.state == this.$models.order.state.NO_SELECT_WORKER) {
type = "worker";
}
this.$utils.toPage("/pages/order/detail?type=" + type + "&id=" + this.order.id);
},
},
};
</script>

View File

@ -23,7 +23,12 @@
<swiper-item>
<view class="tab-item" :class="['tab' + tabIdx]">
<view class="order-list">
<view class="order-item" v-for="(item, index) in tabItem.list" :key="index">
<view
class="order-item"
v-for="(item, index) in tabItem.list"
:key="index"
@click="toDetail(item.id, item.state)"
>
<order-item :order="item" :index="index">
<view class="action-group">
<order-action :order="item" />
@ -202,6 +207,13 @@ export default {
});
},
loadData() {},
toDetail(id, state) {
let type = "detail";
if (state == this.$models.order.state.NO_SELECT_WORKER) {
type = "worker";
}
this.$utils.toPage("/pages/order/detail?type=" + type + "&id=" + id);
},
},
};
</script>