Files
emsapp/pages/index.vue

110 lines
2.5 KiB
Vue
Raw Normal View History

2025-06-25 14:15:59 +08:00
<template>
2025-07-15 20:17:19 +08:00
<scroll-view class="scroll-y" :scroll-y="true" @scrolltolower="lower" scrolltoupper="upper" >
<view class="content">
<view class="item-list" v-for="item in list" :key="item.ticketNo+'ticket'" @click="toDetail(item.id)">
2025-07-15 19:26:31 +08:00
<view class="item-title" :class="item.status === 1 ? 'done' : 'undone'" >工单号{{item.ticketNo}}</view>
<view class="item-content">
<view class="item-info">工单标题:{{item.title}}</view>
<view class="item-info">问题描述:{{item.content}}</view>
<view class="item-info">工单状态:{{ticketStatusOptions[item.status]}}</view>
<view class="item-info">预期完成时间:{{item.expectedCompleteTime || '-'}}</view>
<view class="item-info">处理人:{{item.workName || '-'}}</view>
</view>
</view>
2025-07-15 20:17:19 +08:00
</view>
</scroll-view>
2025-06-25 14:15:59 +08:00
</template>
2025-07-15 19:26:31 +08:00
<script>
import {mapState} from 'vuex'
import {listTicket} from 'api/ems/ticket'
export default{
computed:{
...mapState({
ticketStatusOptions:(state)=>state.ems.ticketStatusOptions
})
},
data(){
return {
total:0,
list:[],
pageNum:1,
pageSize:10
}
},
methods:{
lower(){
if(this.list.length>=this.total){
return console.log('数据已经加载完成')
}
this.pageNum+=1;
this.init().catch(()=>{this.pageNum-=1})
},
init(){
uni.showLoading()
return listTicket({pageNum:this.pageNum,pageSize:this.pageSize}).then(response=>{
const data = JSON.parse(JSON.stringify(response?.rows || []))
this.list =this.list.concat(data)
this.total = response?.total || 0
}).finally(()=>{uni.hideLoading()})
},
toDetail(id) {
this.$tab.navigateTo(`/pages/ticket/index?id=${id}`)
},
reset(){
this.list = []
this.total = 0
this.pageNum=1
}
},
onShow(){
this.reset()
this.init()
}
}
</script>
2025-06-25 14:15:59 +08:00
2025-07-15 19:26:31 +08:00
<style scoped lang="scss">
2025-07-15 20:17:19 +08:00
.scroll-y{
height: calc(100vh - 50px)
}
.content {
background-color: #ffffff;
padding:50px 20px;
}
.item-list{
border-radius: 5px;
box-shadow: 0px 0px 3px 0 rgba(0, 0, 0, 0.3);
font-size: 16px;
line-height: 24px;
margin-bottom: 20px;
border:1px solid #eee;
.item-title{
border-radius: 5px 5px 0 0;
font-size: 18px;
border-bottom:1px solid #eee ;
padding:10px 15px;
background-color: #FC6B69;
color:#fff;
&.done{
background-color: #05AEA3;
2025-07-15 19:26:31 +08:00
}
2025-07-15 20:17:19 +08:00
}
.item-content{
padding:15px 15px;
.item-info{
margin-bottom:20px;
2025-07-15 19:26:31 +08:00
}
}
2025-07-15 20:17:19 +08:00
.item-content .item-info:last-child{
2025-07-15 19:26:31 +08:00
margin-bottom:0;
}
2025-07-15 20:17:19 +08:00
}
.content .item-list:last-child{
margin-bottom:0;
}
2025-07-15 19:26:31 +08:00
2025-06-25 14:15:59 +08:00
</style>