diff --git a/src/views/oem/oemApproval/index.vue b/src/views/oem/oemApproval/index.vue index cd989855..625016f8 100644 --- a/src/views/oem/oemApproval/index.vue +++ b/src/views/oem/oemApproval/index.vue @@ -314,10 +314,10 @@ export default { this.$message.error("请选择状态为【待审核】的数据"); return } - this.woId = this.selectionList.map(item => item.id).join(',') + this.woId = this.selectionList.map(item => item.woId).join(',') this.isOpen = true; }else{ - this.woId = row.id + this.woId = row.woId this.isOpen = true; } }, diff --git a/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue b/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue index dce2cce1..f9d961ff 100644 --- a/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue +++ b/src/views/oem/oemOrderSettlement/components/settlementAnomaly.vue @@ -620,7 +620,8 @@ export default { ...this.query, postPlatingStorageTimeStart:this.query && this.query.putStoreTime && this.query.putStoreTime.length != 0 && this.query.putStoreTime[0], postPlatingStorageTimeEnd:this.query && this.query.putStoreTime && this.query.putStoreTime.length != 0 && this.query.putStoreTime[1], - memo:this.query && this.query.memo && this.query.memo.length != 0 && this.query.memo.join(';'), + memo:this.query && this.query.memo && typeof(this.query.memo) == 'object' && this.query.memo.length != 0 ? this.query.memo.join(';') : this.query.memo, + // memo:this.query && this.query.memo && this.query.memo.length != 0 && this.query.memo.join(';'), } if(params.putStoreTime) delete params.putStoreTime; getStatement(params).then(res =>{ diff --git a/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue b/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue index 6bf97083..cdd07f9c 100644 --- a/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue +++ b/src/views/oem/oemOrderSettlement/components/settlementCompleted.vue @@ -636,7 +636,7 @@ export default { ...this.query, postPlatingStorageTimeStart:this.query && this.query.putStoreTime && this.query.putStoreTime.length != 0 && this.query.putStoreTime[0], postPlatingStorageTimeEnd:this.query && this.query.putStoreTime && this.query.putStoreTime.length != 0 && this.query.putStoreTime[1], - memo:this.query && this.query.memo && this.query.memo.length != 0 && this.query.memo.join(';'), + memo:this.query && this.query.memo && typeof(this.query.memo) == 'object' && this.query.memo.length != 0 ? this.query.memo.join(';') : this.query.memo, } if(params.putStoreTime) delete params.putStoreTime; getStatement(params).then(res =>{ diff --git a/src/views/oem/oemOrderSettlement/components/unsettled.vue b/src/views/oem/oemOrderSettlement/components/unsettled.vue index c60af071..1623b053 100644 --- a/src/views/oem/oemOrderSettlement/components/unsettled.vue +++ b/src/views/oem/oemOrderSettlement/components/unsettled.vue @@ -50,7 +50,7 @@ - + - +
审理类型: @@ -7,14 +7,11 @@ 内部审理
-
+ 应用 -
+ --> {{detailInfo.woCode}} {{detailInfo.productionDisposition}} @@ -34,18 +31,15 @@ - + - + - - @@ -295,7 +289,7 @@