hz-zhhq-app/pages/malfunc-repair/repair-record-cl.vue

682 lines
17 KiB
Vue
Raw Normal View History

2025-01-22 10:53:47 +08:00
<template>
<view>
<view class="container">
<view class="banner-box"><image src="/static/imgs/repairs-banner.png" mode=""></image></view>
<view class="main">
<view class="tab-box">
<view class="tab-item" :class="currentTabIndex == 0 ? 'active_tab' : ''" @click="currentTabIndex = 0">维修中</view>
<view class="tab-item" :class="currentTabIndex == 1 ? 'active_tab' : ''" @click="currentTabIndex = 1">已维修</view>
<!-- <view class="tab-item" :class="currentTabIndex == 2 ? 'active_tab' : ''" @click="currentTabIndex = 2">已维修</view> -->
</view>
<view class="reservation-box" v-if="currentTabIndex == 0">
<view class="list-box" v-if="repair0.length > 0">
<view style="position: relative;" class="detail" v-for="(item, index) in repair0" :key="index" @click="details(item)">
<view v-if="item.urgent==1" style="position: absolute;top: 40%;left: 36%;transform:rotate(-60deg);">
<image src="../../static/imgs/jiaji2.png" style="height: 150upx;width: 150upx;"></image>
</view>
<view class="detail_header">
<text class="blueSign"></text>
<text class="font-tilte" v-if="item.is_inspection!=1">{{pageTitle[faultType]}}服务</text>
<text class="font-tilte" v-if="item.is_inspection==1">巡检考核</text>
<!-- <text class="slect_icon"></text> -->
<text class="font-result" style="color: rgb(255, 144, 0);">维修中</text><!-- statusred -->
</view>
<view class="detail_msg">
<!-- <view v-if="item.is_inspection!=1" class="info-item" @click="details(item)">
<text>部门</text>
<text class="infoSpan">{{ item.repair_dept_name }}</text>
</view> -->
<view v-if="item.is_inspection!=1" class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}</text>
<text class="infoSpan">{{ item.repair_person_name }}</text>
</view>
<view v-if="item.is_inspection!=1" class="info-item" @click="details(item)">
<text>联系方式</text>
<text class="infoSpan">{{ item.repair_person_phone }}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}项目</text>
<text class="infoSpan">{{ item.repair_option_name}}</text>
</view>
<view v-if="item.repair_option_sub_name" class="info-item" @click="details(item)">
<text>问题小项</text>
<text class="infoSpan">{{ item.repair_option_sub_name}}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}位置</text>
<text class="infoSpan">{{ item.repair_place+" "+(item.repair_floor||'')+" "+(item.repair_room_no||'')}}</text>
</view>
<view v-if="item.fault_detail" class="info-item" @click="details(item)">
<text v-if="item.is_inspection!=1">描述</text>
<text v-if="item.is_inspection==1">改善建议</text>
<text class="infoSpan">{{ item.fault_detail }}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}时间</text>
<text class="infoSpan">{{ item.repair_time }}</text>
</view>
<view v-if="item.accept_date" class="info-item" @click="details(item)">
<text>受理时间</text>
<text class="infoSpan">{{ formatDate(item.accept_date,'dateTime')}}</text>
</view>
<view v-if="item.finish_date" class="info-item" @click="details(item)">
<text>处理时间</text>
<text class="infoSpan">{{ formatDate(item.finish_date,'dateTime')}}</text>
</view>
<!-- <view class="comment-btn" v-if="item.conmentStatus == 0" @click="goEvaluatePage(item.detailId)">受理</view>
<view class="comment-btn bg-ccc" v-if="item.conmentStatus == 1">已受理</view> -->
</view>
</view>
</view>
<content-none v-else :padTop="20"></content-none>
</view>
<!-- 维修中 -->
<view class="reservation-box" v-if="currentTabIndex == 1">
<view class="list-box" v-if="repair1.length > 0">
<view class="detail" v-for="(item, index) in repair1" :key="index" @click="details(item)">
<view class="detail_header">
<text class="blueSign"></text>
<text class="font-tilte" v-if="item.is_inspection!=1">{{pageTitle[faultType]}}服务</text>
<text class="font-tilte" v-if="item.is_inspection==1">巡检考核</text>
<!-- <text class="slect_icon"></text> -->
<text class="font-result" >已维修</text><!-- statusred -->
</view>
<view class="detail_msg">
<view v-if="item.is_inspection!=1" class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}</text>
<text class="infoSpan">{{ item.repair_person_name }}</text>
</view>
<view v-if="item.is_inspection!=1" class="info-item" @click="details(item)">
<text>联系方式</text>
<text class="infoSpan">{{ item.repair_person_phone }}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}项目</text>
<text class="infoSpan">{{ item.repair_option_name}}</text>
</view>
<view v-if="item.repair_option_sub_name" class="info-item" @click="details(item)">
<text>问题小项</text>
<text class="infoSpan">{{ item.repair_option_sub_name}}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}位置</text>
<text class="infoSpan">{{ item.repair_place+" "+(item.repair_floor||'')+" "+(item.repair_room_no||'')}}</text>
</view>
<view v-if="item.fault_detail" class="info-item" @click="details(item)">
<text v-if="item.is_inspection!=1">描述</text>
<text v-if="item.is_inspection==1">改善建议</text>
<text class="infoSpan">{{ item.fault_detail }}</text>
</view>
<view class="info-item" @click="details(item)">
<text>{{pageTitle[faultType]}}时间</text>
<text class="infoSpan">{{ item.repair_time }}</text>
</view>
<view v-if="item.accept_date" class="info-item" @click="details(item)">
<text>受理时间</text>
<text class="infoSpan">{{ formatDate(item.accept_date,'dateTime')}}</text>
</view>
<view v-if="item.finish_date" class="info-item" @click="details(item)">
<text>处理时间</text>
<text class="infoSpan">{{ formatDate(item.finish_date,'dateTime')}}</text>
</view>
<!-- <view class="comment-btn" v-if="item.conmentStatus == 0" @click="goEvaluatePage(item.detailId)">受理</view>
<view class="comment-btn bg-ccc" v-if="item.conmentStatus == 1">已受理</view> -->
</view>
</view>
</view>
<content-none v-else :padTop="20"></content-none>
</view>
<load-more v-if="currentTabIndex == 0" :loadingType="loadingType0" :contentText="contentText"></load-more>
<load-more v-if="currentTabIndex == 1" :loadingType="loadingType1" :contentText="contentText"></load-more>
</view>
</view>
</view>
</template>
<script>
import { getDate, alertTip, callbackRequest, getStorage, regPhone, formatDate } from '@/common/util.js';
import { getClFaultRepairList, } from '@/common/api.js';
import loadMore from '@/components/loadMore.vue';
import contentNone from '@/components/contentNone.vue';
export default {
data() {
return {
page0: 1,
pageSize0: 10,
loadingType0: 0, //0-loading前1-loading中2-没有更多了
page1: 1,
pageSize1: 10,
loadingType1: 0, //0-loading前1-loading中2-没有更多了
contentText: {
contentdown: '上拉加载更多',
contentrefresh: '正在加载...',
contentnomore: '没有更多数据了'
},
userId: getStorage('userInfo').id,
currentTabIndex: 0,
deptList: [], //部门列表
departmentIndex: 0, //选择的部门下标
repair0:[],
repair1:[],
formatDate: formatDate,
pageTitle:['报修','报事'],
faultType:0
};
},
components: {
loadMore,
contentNone
},
onLoad(option) {
this.currentTabIndex = option.currentTabIndex || 0;
this.faultType = option.faultType || 0;
if (this.currentTabIndex == 0) {
this.page0 = 1;
this.loadingType0 = 0;
this.initData();
} else if (this.currentTabIndex == 1) {
this.page1 = 1;
this.loadingType1 = 0;
this.initData();
}
},
watch: {
currentTabIndex: function(newVal, oldVal) {
if (newVal == 0) {
this.page0 = 1;
this.loadingType0 = 0;
this.initData();
} else if (newVal == 1) {
this.page1 = 1;
this.loadingType1 = 0;
this.initData();
}
}
},
methods: {
initData() {
let params = {};
if(this.currentTabIndex ==0 ){
params = {
method: getClFaultRepairList,
data: {
userId:this.userId,
repairStatus :1,
pageNum: this.page0,
pageSize: this.pageSize0,
faultType:this.faultType,
}
};
}else if(this.currentTabIndex ==1 ){
params = {
method: getClFaultRepairList,
data: {
userId:this.userId,
repairStatus :2,
pageNum: this.page1,
pageSize: this.pageSize1,
faultType:this.faultType,
}
};
}
callbackRequest(params).then(res => {
res = res.data;
if (res.returnCode == 1) {
if(this.currentTabIndex ==0){
if (this.page0 == 1) {
this.repair0 = res.returnData || [];
} else {
if (res.returnData.length > 0) {
this.repair0 = this.repair0.concat(res.returnData);
this.loadingType0 = 0;
} else {
this.loadingType0 = 2;
}
}
}else if(this.currentTabIndex ==1){
if (this.page1 == 1) {
this.repair1 = res.returnData || [];
} else {
if (res.returnData.length > 0) {
this.repair1 = this.repair1.concat(res.returnData);
this.loadingType1 = 0;
} else {
this.loadingType1 = 2;
}
}
}
} else {
alertTip(res.returnMsg);
}
});
},
details: function(item) {
uni.navigateTo({
url: 'repair-details-cl?item=' + encodeURIComponent(JSON.stringify(item))
});
}
},
onReachBottom() {
if(this.currentTabIndex ==0){
if (this.loadingType0 !== 0 ) {
return;
}
this.loadingType0 = 1;
this.page0 = this.page0 + 1;
this.initData();
}else if(this.currentTabIndex ==1){
if (this.loadingType1 !== 0 ) {
return;
}
this.loadingType1 = 1;
this.page1 = this.page1 + 1;
this.initData();
}
}
};
</script>
<style lang="scss">
@import '@/static/css/common.scss';
.container {
position: relative;
overflow: hidden;
min-height: 100vh;
background: #f8f8f8;
.banner-box {
width: 100%;
height: 240upx;
position: absolute;
top: 0;
left: 0;
image {
width: 100%;
height: 100%;
}
}
.main {
margin: 172upx 40upx 0;
position: relative;
z-index: 10;
.tab-box {
overflow: hidden;
border-radius: 10upx 10upx 0 0;
background: rgba(132, 149, 167, 0.8);
height: 70upx;
.tab-item {
float: left;
height: 70upx;
width: 50%;
font-size: 30upx;
color: #e5f6ff;
text-align: center;
line-height: 70upx;
}
.active_tab {
background: #fff;
color: #333;
border-radius: 10upx 10upx 0 0;
font-weight: bold;
}
}
.reservation-box {
background: #fff;
.time-box {
overflow: hidden;
padding-top: 20rpx;
.time-item {
float: left;
width: 196rpx;
margin: 0 0rpx 20rpx 20rpx;
font-size: 26rpx;
text-align: center;
line-height: 32rpx;
padding: 10rpx 0;
position: relative;
border: 1px solid #ccc;
box-sizing: border-box;
.time-text {
color: #666;
text {
padding: 0 6rpx;
color: #00c277;
}
.color-666 {
color: #666;
}
}
.icon {
position: absolute;
right: 0;
bottom: 0;
width: 36rpx;
height: 36rpx;
display: none;
}
}
.active {
border: 1px solid #00c277;
.icon {
display: block;
}
}
}
.form-box {
// padding: 20upx 30upx 50upx;
background: #fff;
.form-item {
overflow: hidden;
border-bottom: 1px solid #eee;
padding: 30upx;
.label {
float: left;
width: 150upx;
font-size: 28upx;
color: #333;
font-weight: bold;
line-height: 50upx;
}
.ipt-box {
margin-left: 160upx;
input {
width: 100%;
height: 50upx;
line-height: 50upx;
font-size: 26upx;
color: #666;
}
}
.select {
.arrow {
float: right;
width: 16upx;
height: 29upx;
margin-top: 10upx;
}
.picker {
height: 50upx;
line-height: 50upx;
font-size: 26upx;
color: #666;
}
}
}
.form-item:last-child {
border-bottom: 0px;
}
}
/* 评论 */
.evaluate {
padding-top: 30upx;
border-top: 1px solid #eee;
}
.evaluate .title {
font-size: 28upx;
color: #333;
font-weight: bold;
line-height: 40upx;
padding: 0 30rpx 30rpx;
}
.evaluate .evaluate_item {
border-bottom: 1px solid #eeeeee;
padding: 0 0 30upx 50upx;
}
.evaluate .evaluate_item:last-child {
border: none;
}
.evaluate .evaluate_item .user {
padding: 20upx 0;
}
.evaluate .evaluate_item .user .username {
font-size: 28rpx;
color: #666;
display: inline-block;
vertical-align: top;
padding-right: 20upx;
}
.evaluate .evaluate_item .user span image {
width: 40upx;
height: 40upx;
margin-right: 5upx;
}
.evaluate .evaluate_item .text {
font-size: 28upx;
color: #666;
line-height: 40upx;
}
}
}
.scroll-view {
padding-top: 30upx;
white-space: nowrap;
width: 100%;
height: 120upx;
.time-item-box {
padding: 0 10upx;
margin: 0 16upx;
display: inline-block;
.time {
display: block;
width: 100%;
font-size: 28upx;
color: #666;
}
.week {
display: block;
width: 100%;
font-size: 28upx;
color: #666;
}
}
.time-active {
.time {
color: #00c277;
}
.week {
color: #00c277;
}
}
}
}
.list-box {
background-color: #f8f8f8;
.detail {
// margin-top: 10upx;
margin-bottom: 14upx;
background: #ffffff;
border-radius: 4upx;
}
.detail_header {
padding: 15upx 30upx;
border-bottom: 1px solid #eee;
}
.detail_header .blueSign {
height: 30upx;
width: 10upx;
background: #00c277;
display: inline-block;
margin: 10upx 14upx 0 0;
}
.detail_header .font-tilte {
display: inline-block;
font-size: 28upx;
color: #333;
line-height: 50upx;
vertical-align: top;
}
.detail_header .font-result {
display: inline-block;
float: right;
font-size: 26upx;
color: #00c277;
line-height: 50upx;
vertical-align: top;
}
.detail_header .font-result-1 {
display: inline-block;
float: right;
font-size: 26upx;
color: red;
line-height: 50upx;
vertical-align: top;
}
.detail_msg {
padding: 20upx 30upx;
overflow: hidden;
}
.detail_msg .info-item {
margin-bottom: 10upx;
font-size: 28upx;
text {
display: inline-block;
width: 140upx;
}
.infoSpan {
width: auto;
font-size: 28upx;
color: #666;
float: right;
}
}
.comment-btn {
float: right;
font-size: 24upx;
border-radius: 10upx;
color: #fff;
line-height: 50upx;
text-align: center;
min-width: 140upx;
background-color: #00c277;
}
.comment-yc {
float: right;
font-size: 24upx;
border-radius: 10upx;
color: #fff;
line-height: 50upx;
text-align: center;
min-width: 140upx;
background-color: #00c277;
}
}
.comment-item {
overflow: hidden;
margin-top: 20rpx;
.user-head {
float: left;
width: 90upx;
height: 90upx;
border-radius: 50%;
image {
width: 100%;
height: 100%;
border-radius: 50%;
}
}
.fr-content {
margin: 0 0 0upx 110upx;
border-bottom: 1px solid #f5f5f5;
padding-bottom: 26upx;
.name {
font-size: 28upx;
font-weight: bold;
line-height: 44upx;
}
.date {
float: right;
font-size: 26upx;
color: #666;
line-height: 44upx;
}
.grade {
padding-bottom: 10upx;
text {
display: inline-block;
font-size: 26upx;
color: #666;
line-height: 36upx;
vertical-align: top;
padding-right: 20upx;
}
image {
width: 36upx;
height: 36upx;
margin-right: 8upx;
vertical-align: top;
}
}
.comment-content {
font-size: 26upx;
color: #666;
line-height: 40upx;
margin: 6upx;
}
.food-list {
padding: 10rpx 0 0;
overflow: hidden;
.food-item {
float: left;
margin-right: 10rpx;
font-size: 24rpx;
line-height: 30rpx;
color: $assistColor;
padding: 4rpx 16rpx;
border: 1px solid $assistColor;
}
}
}
}
</style>