| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393 |
- <template>
- <uni-navbar-lite :showLeft=false title="工单"></uni-navbar-lite>
- <view class="list-page">
- <!-- 搜索栏 -->
- <view class="search-bar">
- <view class="search-box">
- <image class="search-icon" src="/static/images/workbench/list/1.png" mode="aspectFit"></image>
- <input class="search-input" type="text" placeholder="请输入关键字查询" v-model="keyword" @confirm="handleSearch" />
- </view>
- </view>
- <view class="status-bar">
- <view class="status-box">
- <text class="status-txt" :class="{'stauts-sel':ix == 0}">全部</text>
- <text class="status-txt" :class="{'stauts-sel':ix == 1}">待接单</text>
- </view>
- </view>
- <!-- 列表内容 -->
- <common-list
- :dataList="dataList"
- :loading="loading"
- :refreshing="refreshing"
- :hasMore="hasMore"
- @refresh="handleRefresh"
- @loadMore="loadMore"
- @itemClick="handleItemClick"
- >
- <template #default="{ item, index }">
- <view class="list-item">
- <view class="item-container">
- <view class="item-header">
- <image class="location-icon" src="/static/images/workbench/list/2.png" mode="aspectFit"></image>
- <text class="item-title">{{ getOrderType(item) }}</text>
- <text class="detail-link">类型 ›</text>
- </view>
- <text class="item-address">{{ getWorkOrderProjectNo(item) }}</text>
- <view class="item-info">
- <view class="info-row">
- <view class="info-item">
- <text class="info-label">工单状态</text>
- <text class="info-value">{{ getWorkOrderStatus(item) }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">场站</text>
- <text class="info-value">{{ getPcsStationName(item) }}</text>
- </view>
- </view>
- <view class="info-row">
- <view class="info-item">
- <text class="info-label">设备名</text>
- <text class="info-value">{{ getPcsDeviceName(item) }}</text>
- </view>
- <view class="info-item">
- <text class="info-label">派单时间</text>
- <text class="info-value">{{ getAssignTime(item) }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- </common-list>
- <custom-tabbar :current="1" />
- </view>
- </template>
- <script setup lang="uts">
- import { ref, computed, onBeforeUnmount } from 'vue'
- import type { orderInfo, orderListResponse } from '../../types/order'
- import { getOrderList } from '../../api/order/list'
- // 列表数据
- const dataList = ref<orderInfo[]>([])
- const keyword = ref<string>("")
- const page = ref<number>(1)
- const pageSize: number = 10
- const hasMore = ref<boolean>(true)
- const loading = ref<boolean>(false)
- const refreshing = ref<boolean>(false)
- const total = ref<number>(0)
- const ix = ref<number>(1)
- // 辅助函数:从 any 类型提取属性
- const getOrderType = (item: any | null): string => {
- if (item == null) return ''
- const orderInfoItem = item as orderInfo
- return orderInfoItem.orderType == 1?"维修工单":"维保工单";
- }
- const getWorkOrderProjectNo = (item: any | null): string | null => {
- if (item == null) return ''
- const orderInfoItem = item as orderInfo
- return orderInfoItem.workOrderProjectNo
- }
- const getWorkOrderStatus = (item: any | null): string | null => {
- if (item == null) return ''
- const orderInfoItem = item as orderInfo
- return orderInfoItem.workOrderStatus
- }
- const getPcsStationName = (item: any | null): string | null=> {
- if (item == null) return ''
- const orderInfoItem = item as orderInfo
- return orderInfoItem.pcsStationName
- }
- const getPcsDeviceName = (item: any | null): string | null=> {
- if (item == null) return ''
- const orderInfoItem = item as orderInfo
- return orderInfoItem.pcsDeviceName
- }
- const getAssignTime = (item: any | null): string|null => {
- if (item == null) return null
- const orderInfoItem = item as orderInfo
- return orderInfoItem.assignTime
- }
- // 加载列表数据
- const loadData = async (isRefresh: boolean | null): Promise<void> => {
- if (loading.value) {
- // 如果正在加载,直接重置刷新状态
- refreshing.value = false
- return
- }
- try {
- loading.value = true
- // 处理默认值
- const shouldRefresh = isRefresh != null ? isRefresh : false
- if (shouldRefresh) {
- page.value = 1
- }
- // 调用 API
- const searchKeyword = keyword.value.length > 0 ? keyword.value : null
- const result = await getOrderList(page.value, pageSize, searchKeyword)
- // 提取响应数据
- const resultObj = result as UTSJSONObject
- const code = resultObj['code'] as number
- const responseData = resultObj['rows'] as any[]
- const responseTotal = resultObj['total'] as number
-
- if (code == 200) {
- // 将 any[] 转换为 orderInfo[]
- const newData: orderInfo[] = []
- for (let i = 0; i < responseData.length; i++) {
- const item = responseData[i] as UTSJSONObject
- const orderItem: orderInfo = {
- orderType: item['orderType'] as Number,
- id: item['id'] as Number,
- teamLeaderName: item['teamLeaderName'] as string | '',
- acceptUserName: item['acceptUserName'] as string | '',
- acceptTime: item['acceptTime'] as string | null,
- assignTime: item['assignTime'] as string | null,
- assignUserName: item['assignUserName'] as string | null,
- status: (item['status']==null)?0:item['status'] as Number,
- workOrderProjectNo: item['workOrderProjectNo'] as string | null,
- workOrderStatus: item['workOrderStatus'] as string | null,
- gxtCenterId: item['gxtCenterId'] as Number | 0,
- gxtCenter: item['gxtCenter'] as string | null,
- pcsStationId: item['pcsStationId'] as Number | 0,
- pcsStationName: item['pcsStationName'] as string | null,
- pcsDeviceId: item['pcsDeviceId'] as Number | 0,
- pcsDeviceName: item['pcsDeviceName'] as string | null,
- brand: item['brand'] as string | null,
- model: item['model'] as string | null
- }
- newData.push(orderItem)
- }
- if (shouldRefresh) {
- dataList.value = newData
- } else {
- dataList.value = [...dataList.value, ...newData]
- }
- total.value = responseTotal
- hasMore.value = dataList.value.length < responseTotal
- } else {
- const msg = resultObj['msg'] as string | null
- uni.showToast({
- title: msg ?? '加载失败',
- icon: 'none'
- })
- }
- } catch (e: any) {
- uni.showToast({
- title: e.message ?? '加载失败',
- icon: 'none'
- })
- } finally {
- loading.value = false
- // #ifdef WEB
- // Web 平台立即重置
- refreshing.value = false
- // #endif
- // #ifndef WEB
- // App 平台延迟重置刷新状态,确保 UI 更新
- setTimeout(() => {
- refreshing.value = false
- }, 100)
- // #endif
- }
-
- // #ifdef WEB
- // Web 平台额外确保重置
- refreshing.value = false
- // #endif
- }
- // 下拉刷新
- const handleRefresh = async (): Promise<void> => {
- refreshing.value = true
- await loadData(true as boolean | null)
-
- }
- // 加载更多
- const loadMore = (): void => {
- if (!hasMore.value || loading.value) {
- return
- }
- page.value++
- loadData(false as boolean | null)
- }
- // 搜索
- const handleSearch = (): void => {
- page.value = 1
- loadData(true as boolean | null)
- }
- // 点击列表项
- const handleItemClick = (item: any | null, index: number): void => {
- if (item == null) return
- const contractorItem = item as ContractorInfo
- uni.navigateTo({
- url: `/pages/workbench/detail/index?id=${contractorItem.id}`
- })
- }
- // 组件卸载前清理
- onBeforeUnmount(() => {
- refreshing.value = false
- loading.value = false
- })
- // 初始化
- loadData(true as boolean | null)
- </script>
- <style lang="scss">
- .list-page {
- flex: 1;
- background-color: #e8f0f9;
- }
- .search-bar {
- padding: 20rpx 30rpx;
- background-color: #d7eafe;
- }
- .search-box {
- flex-direction: row;
- align-items: center;
- height: 72rpx;
- padding: 0 24rpx;
- background-color: #f5f5f5;
- border-radius: 36rpx;
- .search-icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 12rpx;
- }
- .search-input {
- flex: 1;
- font-size: 28rpx;
- color: #333333;
- }
- }
-
- .status-bar{
- padding-bottom: 10px;
- padding-left:30rpx;
- background-color: #d7eafe;
- }
-
- .status-box {
- flex-direction: row;
- align-items: center;
- height: 72rpx;
- flex: 1;
-
- .status-txt{
- padding: 8px;
- width: 70px;
- text-align: center;
- margin-right: 12rpx;
- border-radius: 36rpx;
- background-color: #fff;
- font-size: 28rpx;
- }
-
- .stauts-sel{
- background-color: blue;
- color: #fff;
- }
- }
-
- .list-item {
- margin: 24rpx 30rpx;
- background-color: #ffffff;
- border-radius: 16rpx;
- }
- .item-container {
- padding: 30rpx;
- }
- .item-header {
- flex-direction: row;
- align-items: center;
- margin-bottom: 16rpx;
- .location-icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 8rpx;
- }
- .item-title {
- flex: 1;
- font-size: 32rpx;
- color: #333333;
- font-weight: bold;
- }
- .detail-link {
- font-size: 28rpx;
- color: #999999;
- }
- }
- .item-address {
- font-size: 26rpx;
- color: #999999;
- margin-bottom: 20rpx;
- line-height: 40rpx;
- }
- .item-info {
- padding: 20rpx;
- background-color: #f8f9fa;
- border-radius: 8rpx;
- .info-row {
- flex-direction: row;
- margin-bottom: 16rpx;
- &:last-child {
- margin-bottom: 0;
- }
- .info-item {
- flex: 1;
- flex-direction: row;
- align-items: center;
- .info-label {
- font-size: 26rpx;
- color: #666666;
- margin-right: 8rpx;
- white-space: nowrap;
- }
- .info-value {
- flex: 1;
- font-size: 26rpx;
- color: #333333;
- }
- }
- }
- }
- </style>
|