lanan-repair-app/components/applyCard.vue
2024-10-22 18:29:31 +08:00

133 lines
2.8 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>
<view class="orderCard" @click="viewDetail">
<view class="title">
{{ order.licenseNumber }} 的配件申请
</view>
<view class="desc">
申请时间{{formatTimestamp(order.createTime)}}
</view>
<view class="message red" v-if="order.status=='05'">
<view class="remark">
原因{{ order.remark }}
</view>
</view>
<image v-if="order.status=='05'" class="stateImg" src="@/pages-repair/static/weitongguo.png" ></image>
<image v-if="order.status=='01'" class="stateImg" src="@/pages-repair/static/daishenhe.png" ></image>
<image v-if="order.status=='02'" class="stateImg" src="@/pages-repair/static/yitongguo.png" ></image>
</view>
</template>
<script>
import {
getUserInfo,
getStrData
} from '@/utils/auth';
import {formatTimestamp,getOrderStatusText,builderOrder,saveTicketsRecords} from "@/utils/utils";
import request from '@/utils/request';
export default {
name: "orderCard",
props: {
order: {
type: Object,
default: () => {
return {}
}
}
},
data() {
return {
}
},
mounted(){
let userInfo = getUserInfo()
if(userInfo.roleCodes.includes("service_advisor") || userInfo.roleCodes.includes("general_inspection") || (userInfo.roleCodes.includes("repair_staff") && getStrData("ifLeader"))){
//服务顾问、总检、维修班组长可以派工
this.roleCanPg = true
}
if(userInfo.roleCodes.includes("service_advisor")){
//服务顾问可以告知取车
this.roleCanQc = true
}
if(userInfo.roleCodes.includes("repair_staff") && this.order.nowRepairId==userInfo.id){
//维修工角色,并且指派处理的人就是当前用户可以接单
this.roleCanJd = true
}
},
onLoad(){
},
methods: {
formatTimestamp(value){
return formatTimestamp(value)
},
getFlagColor(flag) {
if (flag == 1) {
return '#E8A321'
} else if (flag === 2) {
return '#999'
}
},
viewDetail(){
this.$emit("childEvent",this.order)
}
}
}
</script>
<style lang="less" scoped>
.message{
padding: 2px 0;
font-size: 15px;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: space-between;
.icon{
width: 28rpx;
height: 28rpx;
margin-left: 10px;
margin-right: 10px;
}
.goto{
font-size: 30px;
margin-right: 10px;
}
}
.red{
background: #FFEFEF;
color: #F92C2C;
}
.orderCard {
background: #FFFFFF;
border-radius: 8rpx 8rpx 8rpx 8rpx;
padding: 10px;
margin: 10px 0;
position: relative;
.title {
font-weight: 600;
font-size: 30rpx;
color: #333333;
margin-left: 5px;
}
.desc{
font-size: 28rpx;
color: #858BA0
}
.remark{
margin: 8px;
}
.stateImg{
width: 50px;
height: 50px;
display: block;
right: 0;
top: 0;
position: absolute;
}
}
</style>