diff --git a/src/views/ManufacturingCenter/ProjectPlanningManagement/index.vue b/src/views/ManufacturingCenter/ProjectPlanningManagement/index.vue
index 3ff7fc08..ea53c183 100644
--- a/src/views/ManufacturingCenter/ProjectPlanningManagement/index.vue
+++ b/src/views/ManufacturingCenter/ProjectPlanningManagement/index.vue
@@ -85,11 +85,6 @@
{{ scope.row.安装调试节点 }}
-
-
- {{ scope.row.客户名称 }}
-
-
diff --git a/src/views/ManufacturingCenter/ProjectPlanningQuery/index.vue b/src/views/ManufacturingCenter/ProjectPlanningQuery/index.vue
index 3bf90b5d..f0b7c63c 100644
--- a/src/views/ManufacturingCenter/ProjectPlanningQuery/index.vue
+++ b/src/views/ManufacturingCenter/ProjectPlanningQuery/index.vue
@@ -74,19 +74,14 @@
{{ scope.row.机床名称 }}
-
-
- {{ scope.row.客户名称 }}
-
-
- {{ scope.row.合同签订日期 === '1900-01-01 00:00:00' ? '' : scope.row.合同签订日期 }}
+ {{ scope.row.合同签订日期 === '1900-01-01' ? '' : scope.row.合同签订日期 }}
- {{ scope.row.发货节点 === '1900-01-01 00:00:00' ? '' : scope.row.发货节点 }}
+ {{ scope.row.发货节点 === '1900-01-01' ? '' : scope.row.发货节点 }}
@@ -101,17 +96,17 @@
- {{ scope.row.审图计划开始时间 === '1900-01-01 00:00:00' ? '' : scope.row.审图计划开始时间 }}
+ {{ scope.row.审图计划开始时间 === '1900-01-01' ? '' : scope.row.审图计划开始时间 }}
- {{ scope.row.审图计划完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.审图计划完成时间 }}
+ {{ scope.row.审图计划完成时间 === '1900-01-01' ? '' : scope.row.审图计划完成时间 }}
- {{ scope.row.审图实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.审图实际完成时间 }}
+ {{ scope.row.审图实际完成时间 === '1900-01-01' ? '' : scope.row.审图实际完成时间 }}
@@ -121,7 +116,7 @@
- {{ scope.row.机床设计实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.机床设计实际完成时间 }}
+ {{ scope.row.机床设计实际完成时间 === '1900-01-01' ? '' : scope.row.机床设计实际完成时间 }}
@@ -131,7 +126,7 @@
- {{ scope.row.采购实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.采购实际完成时间 }}
+ {{ scope.row.采购实际完成时间 === '1900-01-01' ? '' : scope.row.采购实际完成时间 }}
@@ -141,7 +136,7 @@
- {{ scope.row.备料实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.备料实际完成时间 }}
+ {{ scope.row.备料实际完成时间 === '1900-01-01' ? '' : scope.row.备料实际完成时间 }}
@@ -151,7 +146,7 @@
- {{ scope.row.机床生产实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.机床生产实际完成时间 }}
+ {{ scope.row.机床生产实际完成时间 === '1900-01-01' ? '' : scope.row.机床生产实际完成时间 }}
@@ -161,7 +156,7 @@
- {{ scope.row.机床装配实际完成时间 === '1900-01-01 00:00:00' ? '' : scope.row.机床装配实际完成时间 }}
+ {{ scope.row.机床装配实际完成时间 === '1900-01-01' ? '' : scope.row.机床装配实际完成时间 }}
@@ -316,6 +311,11 @@
{{ scope.row.任务开始时间 }}
+
+
+ {{ scope.row.实际开始时间 }}
+
+
{{ scope.row.计划完成时间 }}
@@ -356,6 +356,11 @@
{{ scope.row.任务开始时间 }}
+
+
+ {{ scope.row.下阶段开始时间 }}
+
+
{{ scope.row.计划完成时间 }}
@@ -615,6 +620,9 @@ export default {
// } else if ((this.arrival3[i] - this.now) > (86400000 * this.warningValue)) {
// this.judge3[i] = 3 // 进度正常
// }
+ if (response.data[i].实际开始时间 !== '' && response.data[i].实际开始时间 !== null) {
+ response.data[i].实际开始时间 = response.data[i].实际开始时间.split(' ')[0]
+ }
if (response.data[i].任务开始时间 !== '' && response.data[i].任务开始时间 !== null) {
response.data[i].任务开始时间 = response.data[i].任务开始时间.split(' ')[0]
}
@@ -630,6 +638,7 @@ export default {
this.tableData4 = response.data
})
searchtable2(this.machineValue, 5).then(response => {
+ console.log(response.data)
for (let i = 0; i < response.data.length; i++) {
// this.arrival4.push(new Date(response.data[i].计划完成时间))
// if ((this.arrival4[i] - this.now) > 0 && (this.arrival4[i] - this.now) < (86400000 * this.warningValue)) {
@@ -639,6 +648,9 @@ export default {
// } else if ((this.arrival3[i] - this.now) > (86400000 * this.warningValue)) {
// this.judge4[i] = 3 // 进度正常
// }
+ if (response.data[i].下阶段开始时间 !== '' && response.data[i].下阶段开始时间 !== null) {
+ response.data[i].下阶段开始时间 = response.data[i].下阶段开始时间.split(' ')[0]
+ }
if (response.data[i].任务开始时间 !== '' && response.data[i].任务开始时间 !== null) {
response.data[i].任务开始时间 = response.data[i].任务开始时间.split(' ')[0]
}
diff --git a/src/views/WorkshopProcurement/ProcurementContractApproval/index.vue b/src/views/WorkshopProcurement/ProcurementContractApproval/index.vue
index aeeba313..0ee9e0c3 100644
--- a/src/views/WorkshopProcurement/ProcurementContractApproval/index.vue
+++ b/src/views/WorkshopProcurement/ProcurementContractApproval/index.vue
@@ -89,7 +89,7 @@
-