From 47cf5518f0f61dbf8066c2273b9f77c2cd7b1751 Mon Sep 17 00:00:00 2001
From: YLouie <929705085@qq.com>
Date: 星期五, 19 九月 2025 17:56:03 +0800
Subject: [PATCH] 销售订单plm同步
---
src/views/product/producttraceability/index.vue | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/src/views/product/producttraceability/index.vue b/src/views/product/producttraceability/index.vue
index a4b1dd2..8685e96 100644
--- a/src/views/product/producttraceability/index.vue
+++ b/src/views/product/producttraceability/index.vue
@@ -10,6 +10,7 @@
:data="partList"
:formatter="labelFormatter"
:selectLoading="selectLoading"
+ ref="systemSelect"
:valueColumn="valueColumn"
@selectChange="queryBatchNoData"
@remoteSearch="queryPart"
@@ -343,7 +344,7 @@
</div>
</el-tab-pane> -->
<el-tab-pane label="妫�娴嬩俊鎭�" name="妫�娴嬩俊鎭�">
- <div style="margin-top:10px;">
+ <div style="margin-top:10px;height: 80vh;overflow-y: scroll;">
<div class="process" v-if="process">
<el-divider
class="pane-divider"
@@ -381,9 +382,9 @@
>
<template slot-scope="scope">
{{
- scope.row.isQualified == 0
+ scope.row.result == 0
? '涓嶅悎鏍�'
- : '鍚堟牸'
+ : (scope.row.result==1?'鍚堟牸':'')
}}
</template>
</el-table-column>
@@ -432,9 +433,9 @@
>
<template slot-scope="scope">
{{
- scope.row.isQualified == 0
+ scope.row.result == 0
? '涓嶅悎鏍�'
- : '鍚堟牸'
+ : (scope.row.result==1?'鍚堟牸':'')
}}
</template>
</el-table-column>
@@ -531,7 +532,7 @@
</el-tab-pane>
<el-tab-pane label="鐢熶骇璁板綍" name="鐢熶骇璁板綍">
<div style="margin-top:10px;">
- <div style="padding:0px 14px;height: 100%;overflow: auto;">
+ <div style="padding:0px 14px;height: 80vh !important;overflow: auto;">
<div class="product-record-div">
<div class="product-record-div-left">
<div class="product-record-list-header">
@@ -1305,7 +1306,7 @@
},
labelFormatter(ele) {
let partLabel
- const part = this.partList.find((item) => ele.systemNo === item.systemNo)
+ const part = this.partList.find((item) => ele.customerOrderId === item.customerOrderId)
if (part !== undefined) {
partLabel =
'閿�鍞鍗曞彿锛�' +
--
Gitblit v1.9.3