You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
250 lines
6.1 KiB
250 lines
6.1 KiB
10 months ago
|
<template>
|
||
|
<!-- 检修工单 -->
|
||
|
<view class="container">
|
||
|
<u-navbar back-icon-color='#fff' :background="{ background: '#409eff'}" back-text="" title-color='#fff'
|
||
|
title="检修工单">
|
||
|
<template v-slot:right>
|
||
|
<u-icon name="plus" color="#fff" size="36" style="padding-right: 30rpx;" @click="addForm"></u-icon>
|
||
|
</template>
|
||
|
</u-navbar>
|
||
|
<!-- <Search @search='search' @screen='screen'/> -->
|
||
|
<view class="list">
|
||
|
<view class="item" v-for="(item,index) in list" :key="index" >
|
||
|
<view class="" @click="itemClick(item,index)">
|
||
|
<view class="title">
|
||
|
<view class="title-txt">
|
||
|
{{item.describes}}
|
||
|
</view>
|
||
|
<u-tag text="待接单" v-if="item.status == 'PENDING'" bg-color='rgba(255,255,255,0)' color='#fe8463' border-color='#fe8463' type="primary" shape='circle'/>
|
||
|
<u-tag text="已撤回" v-else-if="item.status=='REJECTED'" bg-color='rgba(255,255,255,0)' color='#d7d7d7' border-color='#d7d7d7 ' type="warning" shape='circle'/>
|
||
|
<u-tag text="已转办" v-else-if="item.status=='TRANSFERRED'" bg-color='rgba(255,255,255,0)' color='#e01f54' border-color='#e01f54' type="success" shape='circle'/>
|
||
|
<u-tag text="已接单" v-else-if="item.status=='PECEIVED'" bg-color='rgba(255,255,255,0)' color='#005eaa' border-color='#005eaa ' type="error" shape='circle'/>
|
||
|
<u-tag text="已验证" v-else-if="item.status=='VERIFIED'" bg-color='rgba(255,255,255,0)' color='#2EC7C9' border-color='#2EC7C9' type="info" shape='circle'/>
|
||
|
<u-tag text="已完成" v-else-if="item.status=='COMPLETED'" bg-color='rgba(255,255,255,0)' color='#2ba471' border-color='#2ba471' type="info" shape='circle'/>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
检修单号:<span>{{item.number}}</span>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
维修工单:<span>{{item.maintenanceNumber}}</span>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
{{`${params.type=='DEVICE'?'设备' : '模具'}`}}编号:<span>{{item.deviceNumber}}</span>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
{{`${params.type=='DEVICE'?'设备' : '模具'}`}}名称:<span>{{item.name}}</span>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
所属厂区:<span>{{item.factoryAreaName}}</span>
|
||
|
</view>
|
||
|
<view class="dec">
|
||
|
故障类型:<span>{{item.faultTypeName}}</span>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="bottom">
|
||
|
<view class="time" style="flex: 1;">
|
||
|
{{`${$time.formatDate(item.createTime)}`}}
|
||
|
</view>
|
||
|
<view class="status">
|
||
|
<u-button shape="circle" type="primary" size="mini" style="min-width: 120rpx;" @click="addForm(item)">编辑</u-button>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view style="height: 94rpx;padding-top: 30rpx;">
|
||
|
<u-loadmore :status="status" v-if="status != 'loadmore'" />
|
||
|
</view>
|
||
|
<view style="height: constant(safe-area-inset-bottom); height: env(safe-area-inset-bottom);"></view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import * as overhaulOrderApi from "@/api/overhaulOrder.js"
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
params: {
|
||
|
pageNo: 1,
|
||
|
pageSize: 10,
|
||
|
type: ''
|
||
|
},
|
||
|
status: 'loadmore', //是否显示没有更多了
|
||
|
list: [],
|
||
|
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
// 筛选
|
||
|
screen() {
|
||
|
this.$tab.navigateTo(`/pages/overhaulOrder/screen?type=${this.params.type}`)
|
||
|
},
|
||
|
itemClick(item, index) {
|
||
|
this.$tab.navigateTo(`/pages/overhaulOrder/detail?type=${this.params.type}&data=${encodeURIComponent(JSON.stringify(item))}`)
|
||
|
},
|
||
|
addForm(item) {
|
||
|
this.$tab.navigateTo(`/pages/overhaulOrder/addForm?type=${this.params.type}&data=${encodeURIComponent(JSON.stringify(item))}`)
|
||
|
},
|
||
|
// 获取检修工单列表
|
||
|
getList() {
|
||
|
if (this.status == 'nomore') return;
|
||
|
this.status = 'loading';
|
||
|
this.$modal.loading('加载中')
|
||
|
overhaulOrderApi.overhaulOrderPage(this.params).then((res) => {
|
||
|
this.$modal.closeLoading()
|
||
|
if (res.data.list.length > 0) {
|
||
|
this.list = this.list.concat(res.data.list);
|
||
|
this.params.pageNo++;
|
||
|
this.status = 'loadmore'
|
||
|
} else {
|
||
|
this.status = 'nomore'
|
||
|
}
|
||
|
})
|
||
|
},
|
||
|
// 撤销
|
||
|
cancle(item) {
|
||
|
this.$modal.confirm('确定撤销报修吗?').then(() => {
|
||
|
this.$modal.loading('加载中')
|
||
|
deviceApi.rejected(item.id).then((res) => {
|
||
|
this.$modal.closeLoading()
|
||
|
this.params.pageNo = 1
|
||
|
this.list = []
|
||
|
this.status = 'loadmore'
|
||
|
this.getList()
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
onLoad(option) {
|
||
|
if (option.type) this.params.type = option.type;
|
||
|
},
|
||
|
onShow() {
|
||
|
|
||
|
uni.$on('screen',(data)=>{
|
||
|
console.log(data)
|
||
|
this.params = {...this.params,...data}
|
||
|
})
|
||
|
this.params.pageNo = 1
|
||
|
this.list = []
|
||
|
this.status = 'loadmore'
|
||
|
this.getList()
|
||
|
|
||
|
},
|
||
|
onUnload() {
|
||
|
uni.$off('screen')
|
||
|
},
|
||
|
onReachBottom() {
|
||
|
this.getList()
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.list {
|
||
|
background: #f5f5f5;
|
||
|
margin-top: 20rpx;
|
||
|
|
||
|
.item {
|
||
|
padding: 30rpx 30rpx 0px 30rpx;
|
||
|
margin-top: 20rpx;
|
||
|
background: white;
|
||
|
|
||
|
.title {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding-bottom: 20rpx;
|
||
|
|
||
|
.title-txt {
|
||
|
color: #409eff;
|
||
|
font-weight: bold;
|
||
|
font-size: 36rpx;
|
||
|
width: 0px;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.time {
|
||
|
color: #919191;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.dec {
|
||
|
padding-bottom: 20rpx;
|
||
|
|
||
|
span {
|
||
|
color: #999999;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.last {
|
||
|
padding-bottom: 30rpx;
|
||
|
}
|
||
|
|
||
|
.bottom {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
border-top: 1px solid #E4E4E4;
|
||
|
padding: 20rpx 0px;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.list {
|
||
|
background: #f5f5f5;
|
||
|
margin-top: 20rpx;
|
||
|
|
||
|
.item {
|
||
|
padding: 30rpx 30rpx 0px 30rpx;
|
||
|
margin-top: 20rpx;
|
||
|
background: white;
|
||
|
|
||
|
.title {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding-bottom: 20rpx;
|
||
|
|
||
|
.title-txt {
|
||
|
color: #409eff;
|
||
|
font-weight: bold;
|
||
|
font-size: 36rpx;
|
||
|
width: 0px;
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.time {
|
||
|
color: #919191;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.dec {
|
||
|
padding-bottom: 20rpx;
|
||
|
|
||
|
span {
|
||
|
color: #999999;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.last {
|
||
|
padding-bottom: 30rpx;
|
||
|
}
|
||
|
|
||
|
.bottom {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
border-top: 1px solid #E4E4E4;
|
||
|
padding: 20rpx 0px;
|
||
|
position: relative;
|
||
|
|
||
|
|
||
|
.button {
|
||
|
position: absolute;
|
||
|
right: 0rpx;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|