Files
supplier-dispatch-h5/src/views/report/components/service-item.vue
2025-06-20 11:44:51 +08:00

113 lines
2.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="wrap">
<div class="service_title">
<span class="name">{{orderInfo?.serviceName}}</span>
<span class="status">
{{orderInfo?.orderStatusString}}
<span class="refresh_btn" @click="refreshHandler">刷新</span>
</span>
</div>
<!-- <img class="report_line" src="@/assets/report/report_line.png" alt="">-->
<div class="service_content">
<div class="content_left">
<img class="report_logo" src="@/assets/report/report_logo.png" alt="">
</div>
<div class="content_right">
<div class="order_code">单号{{orderInfo?.userOrderCode}}</div>
<div class="company">单位{{orderInfo?.supplierName}}</div>
<div class="driver_info">
<span class="driver_name">{{orderInfo?.driverName}}</span>
<span>{{orderInfo?.phone}}</span>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
name: "service-item",
props: ['orderInfo'],
methods: {
refreshHandler() {
this.$emit('refresh')
}
}
}
</script>
<style scoped lang="scss">
.wrap {
width: calc(100% - 20px);
background: #FFFFFF;
box-shadow: 0px 0px 9px 0px rgba(53,73,93,0.2);
border-radius: 8px;
border: 1px solid #E6E6E6;
backdrop-filter: blur(5.602678571428572px);
margin: 0 auto;
}
.service_title {
height: 40px;
line-height: 42px;
padding-left: 22px;
padding-right: 14px;
background: #F9FDFF;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #EFEFEF;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
.name {
font-size: 16px;
font-weight: bold;
color: rgba(0, 0, 0, 0.9);
}
.status {
font-size: 13px;
color: #F19028;
}
.refresh_btn {
background-color: #267EF0;
color: #fff;
padding: 6px 12px;
margin-left: 5px;
border-radius: 3px;
}
}
.service_content {
padding: 11px 16px 18px;
display: flex;
.content_left {
.report_logo {
width: 56px;
height: 56px;
margin-right: 14px;
}
}
.content_right {
.order_code {
color: #323643;
font-size: 16px;
font-weight: 600;
margin-bottom: 1px;
}
.company {
color: #323643;
font-size: 13px;
margin-bottom: 3px;
}
.driver_info {
color: rgba(50, 54, 67, 0.65);
font-size: 12px;
margin-bottom: 3px;
.driver_name {
margin-right: 10px;
}
}
}
}
.report_line {
}
</style>