<template>
|
<view class="main-production-plan">
|
<!-- 使用通用页面头部组件 -->
|
<PageHeader title="主生产计划" @back="goBack" />
|
|
<!-- 搜索区域 -->
|
<view class="search-section">
|
<view class="search-bar">
|
<view class="search-input">
|
<up-input
|
class="search-text"
|
placeholder="请输入计划号或产品名称"
|
v-model="searchForm.keyword"
|
@change="handleQuery"
|
clearable
|
/>
|
</view>
|
<view class="filter-button" @click="handleQuery">
|
<up-icon name="search" size="24" color="#999"></up-icon>
|
</view>
|
</view>
|
</view>
|
|
<!-- 列表区域 -->
|
<scroll-view scroll-y class="list-container" v-if="tableData.length > 0" @scrolltolower="loadMore">
|
<view v-for="(item, index) in tableData" :key="item.id || index" @click="goDetail(item)">
|
<view class="ledger-item">
|
<view class="item-header">
|
<view class="item-left">
|
<view class="document-icon">
|
<up-icon name="file-text" size="16" color="#ffffff"></up-icon>
|
</view>
|
<text class="item-id">{{ item.mpsNo }}</text>
|
</view>
|
<view class="item-right">
|
<up-tag :text="getStatusText(item.status)" :type="getStatusType(item.status)" size="mini" />
|
</view>
|
</view>
|
<up-divider></up-divider>
|
|
<view class="item-details">
|
<view class="detail-row">
|
<text class="detail-label">产品名称</text>
|
<text class="detail-value">{{ item.productName || '-' }}</text>
|
</view>
|
<view class="detail-row">
|
<text class="detail-label">规格型号</text>
|
<text class="detail-value">{{ item.model || '-' }}</text>
|
</view>
|
<view class="detail-row">
|
<text class="detail-label">所需数量</text>
|
<text class="detail-value highlight">{{ item.qtyRequired || 0 }} {{ item.unit || '方' }}</text>
|
</view>
|
<view class="detail-row">
|
<text class="detail-label">需求日期</text>
|
<text class="detail-value">{{ formatDate(item.requiredDate) }}</text>
|
</view>
|
<view class="detail-row">
|
<text class="detail-label">来源</text>
|
<text class="detail-value">{{ item.source === '销售' ? '销售' : '内部' }}</text>
|
</view>
|
</view>
|
<view class="item-footer">
|
<text class="more-detail">查看详情</text>
|
<up-icon name="arrow-right" size="14" color="#999"></up-icon>
|
</view>
|
</view>
|
</view>
|
<up-loadmore :status="loadStatus" v-if="tableData.length >= page.size" />
|
</scroll-view>
|
|
<view v-else class="no-data">
|
<up-empty mode="data" text="暂无主生产计划数据"></up-empty>
|
</view>
|
</view>
|
</template>
|
|
<script setup>
|
import { ref, reactive, toRefs, getCurrentInstance } from "vue";
|
import { onShow } from '@dcloudio/uni-app';
|
import dayjs from "dayjs";
|
import { productionPlanListPage } from "@/api/productionManagement/productionPlan.js";
|
import PageHeader from "@/components/PageHeader.vue";
|
|
const { proxy } = getCurrentInstance();
|
|
// 加载状态
|
const loading = ref(false);
|
const loadStatus = ref('loadmore');
|
// 列表数据
|
const tableData = ref([]);
|
|
// 分页配置
|
const page = reactive({
|
current: 1,
|
size: 10,
|
total: 0,
|
});
|
|
// 搜索表单数据
|
const data = reactive({
|
searchForm: {
|
keyword: "",
|
mpsNo: "",
|
productName: ""
|
},
|
});
|
const { searchForm } = toRefs(data);
|
|
// 返回上一页
|
const goBack = () => {
|
uni.navigateBack();
|
};
|
|
// 格式化日期
|
const formatDate = (date) => {
|
return date ? dayjs(date).format('YYYY-MM-DD') : '-';
|
};
|
|
// 获取状态文本
|
const getStatusText = (status) => {
|
const statusMap = {
|
0: "待下发",
|
1: "部分下发",
|
2: "已下发",
|
};
|
return statusMap[status] || "未知";
|
};
|
|
// 获取状态类型 (uView tag type)
|
const getStatusType = (status) => {
|
const typeMap = {
|
0: "warning",
|
1: "primary",
|
2: "info",
|
};
|
return typeMap[status] || "info";
|
};
|
|
// 查询列表
|
const handleQuery = () => {
|
page.current = 1;
|
tableData.value = [];
|
getList();
|
};
|
|
// 加载更多
|
const loadMore = () => {
|
if (loadStatus.value === 'nomore' || loading.value) return;
|
page.current++;
|
getList();
|
};
|
|
// 获取列表数据
|
const getList = () => {
|
loading.value = true;
|
loadStatus.value = 'loading';
|
|
// 构造请求参数
|
// PC端接口支持 mpsNo, productName 等,这里简单处理,如果 keyword 存在,则尝试匹配
|
const params = {
|
current: page.current,
|
size: page.size,
|
mpsNo: searchForm.value.keyword, // 简单处理:搜索号
|
productName: searchForm.value.keyword // 简单处理:搜索名称
|
};
|
|
productionPlanListPage(params).then((res) => {
|
loading.value = false;
|
const records = res.data.records || [];
|
if (page.current === 1) {
|
tableData.value = records;
|
} else {
|
tableData.value = [...tableData.value, ...records];
|
}
|
|
if (records.length < page.size) {
|
loadStatus.value = 'nomore';
|
} else {
|
loadStatus.value = 'loadmore';
|
}
|
page.total = res.data.total || 0;
|
}).catch(() => {
|
loading.value = false;
|
loadStatus.value = 'loadmore';
|
uni.showToast({
|
title: '加载失败',
|
icon: 'error'
|
});
|
});
|
};
|
|
// 跳转详情
|
const goDetail = (item) => {
|
uni.navigateTo({
|
url: `/pages/productionManagement/mainProductionPlan/detail?data=${encodeURIComponent(JSON.stringify(item))}`
|
});
|
};
|
|
// 页面显示时加载数据
|
onShow(() => {
|
handleQuery();
|
});
|
</script>
|
|
<style scoped lang="scss">
|
@import '@/styles/sales-common.scss';
|
|
.main-production-plan {
|
min-height: 100vh;
|
background: #f8f9fa;
|
display: flex;
|
flex-direction: column;
|
}
|
|
.list-container {
|
flex: 1;
|
height: 0;
|
}
|
|
.ledger-item {
|
background: #fff;
|
margin: 20rpx;
|
padding: 20rpx;
|
border-radius: 12rpx;
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.05);
|
|
.item-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
padding-bottom: 10rpx;
|
|
.item-left {
|
display: flex;
|
align-items: center;
|
|
.document-icon {
|
width: 40rpx;
|
height: 40rpx;
|
background: #3c9cff;
|
border-radius: 8rpx;
|
display: flex;
|
justify-content: center;
|
align-items: center;
|
margin-right: 16rpx;
|
}
|
|
.item-id {
|
font-size: 28rpx;
|
font-weight: bold;
|
color: #333;
|
}
|
}
|
}
|
|
.item-details {
|
padding: 10rpx 0;
|
|
.detail-row {
|
display: flex;
|
justify-content: space-between;
|
margin-bottom: 12rpx;
|
|
.detail-label {
|
font-size: 26rpx;
|
color: #999;
|
}
|
|
.detail-value {
|
font-size: 26rpx;
|
color: #333;
|
|
&.highlight {
|
color: #f56c6c;
|
font-weight: bold;
|
}
|
}
|
}
|
}
|
|
.item-footer {
|
display: flex;
|
justify-content: flex-end;
|
align-items: center;
|
padding-top: 16rpx;
|
border-top: 1rpx solid #f0f0f0;
|
|
.more-detail {
|
font-size: 24rpx;
|
color: #999;
|
margin-right: 8rpx;
|
}
|
}
|
}
|
|
.no-data {
|
padding-top: 200rpx;
|
}
|
</style>
|