|
@@ -19,23 +19,23 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- 订单名称 -->
|
|
|
- <el-table-column prop="orderNo" label='订单名称' :show-overflow-tooltip="true" width="170"></el-table-column>
|
|
|
+ <el-table-column prop="orderName" label='订单名称' :show-overflow-tooltip="true" width="170"></el-table-column>
|
|
|
<!-- 交货日期 -->
|
|
|
- <el-table-column prop="startTime" label='交货日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
+ <el-table-column prop="deliveryTime" label='交货日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
<!-- 来源 -->
|
|
|
- <el-table-column prop="planNo" label='来源' :show-overflow-tooltip="true" width="150"></el-table-column>
|
|
|
+ <el-table-column prop="source" label='来源' :show-overflow-tooltip="true" width="150"></el-table-column>
|
|
|
<!-- 计划编号 -->
|
|
|
- <el-table-column prop="endTime" label='计划编号' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
+ <el-table-column prop="planNo" label='计划编号' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
<!-- 零件名称 -->
|
|
|
<el-table-column prop="bomDesc" label='零件名称' :show-overflow-tooltip="true" width="150"></el-table-column>
|
|
|
<!-- 零部件编号 -->
|
|
|
- <el-table-column prop="bomDesc" label='零部件编号' :show-overflow-tooltip="true" width="150"></el-table-column>
|
|
|
+ <el-table-column prop="partsNo" label='零部件编号' :show-overflow-tooltip="true" width="150"></el-table-column>
|
|
|
<!-- 数量 -->
|
|
|
<el-table-column prop="planBomNum" :label='$t("runCenter.table.plan.planNums")' :show-overflow-tooltip="true" width="120"></el-table-column>
|
|
|
<!-- 计划开始日期 -->
|
|
|
- <el-table-column prop="startTime" label='计划开始日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
+ <el-table-column prop="pdeliveryTimeStart" label='计划开始日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
<!-- 计划完成日期 -->
|
|
|
- <el-table-column prop="startTime" label='计划完成日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
+ <el-table-column prop="pdeliveryTimeEnd" label='计划完成日期' :show-overflow-tooltip="true" width="160"></el-table-column>
|
|
|
<!-- 进度 -->
|
|
|
<el-table-column prop="process" label='进度' :show-overflow-tooltip="true" width="200">
|
|
|
<template slot-scope="scope">
|
|
@@ -45,7 +45,7 @@
|
|
|
<!-- 生产中 -->
|
|
|
<el-table-column prop="prority" label='生产中' :show-overflow-tooltip="true" width="120"></el-table-column>
|
|
|
<!-- 已完成 -->
|
|
|
- <el-table-column prop="zoenDesc" label='已完成' :show-overflow-tooltip="true" width="120"></el-table-column>
|
|
|
+ <el-table-column prop="completeNum" label='已完成' :show-overflow-tooltip="true" width="120"></el-table-column>
|
|
|
<!-- 抽检结果 -->
|
|
|
<el-table-column prop="zoenDesc" label='抽检结果' :show-overflow-tooltip="true" width="120"></el-table-column>
|
|
|
<!-- 创建时间 -->
|
|
@@ -261,9 +261,12 @@ export default {
|
|
|
// 分页参数
|
|
|
this.queryParams.current = params.current ? params.current : this.queryParams.current
|
|
|
this.queryParams.size = params.size ? params.size : this.queryParams.size
|
|
|
+
|
|
|
// 查询必须参数:进行中(当审核完成的时候,同时设置orderstaut=2)
|
|
|
this.queryParams.model.orderProduceStatus = '1,2'
|
|
|
- planMgrApi.page(this.queryParams).then(response => {
|
|
|
+ // 固定参数
|
|
|
+ this.queryParams.model.mulPlanStatus = '2';
|
|
|
+ planMgrApi.page(this.queryParams).then(response => {
|
|
|
const res = response.data
|
|
|
if (res.isSuccess) {
|
|
|
this.tableData = res.data
|