Browse Source

2026-02-03

检验页面的检验内容列表优化
master
fengyuan_yang 3 weeks ago
parent
commit
54f9d5a395
  1. 1
      src/views/modules/qc/FQCResultEntry.vue
  2. 1
      src/views/modules/qc/IPQCResultEntry.vue
  3. 1
      src/views/modules/qc/IQCResultEntry.vue
  4. 14
      src/views/modules/qc/OQCResultEntry.vue

1
src/views/modules/qc/FQCResultEntry.vue

@ -642,6 +642,7 @@
border border
stripe stripe
style="width: 100%;" style="width: 100%;"
highlight-current-row
class="inspection-table"> class="inspection-table">
<el-table-column <el-table-column
prop="" prop=""

1
src/views/modules/qc/IPQCResultEntry.vue

@ -682,6 +682,7 @@
border border
stripe stripe
style="width: 100%;" style="width: 100%;"
highlight-current-row
class="inspection-table"> class="inspection-table">
<el-table-column <el-table-column
prop="" prop=""

1
src/views/modules/qc/IQCResultEntry.vue

@ -557,6 +557,7 @@
border border
stripe stripe
style="width: 100%;" style="width: 100%;"
highlight-current-row
class="inspection-table"> class="inspection-table">
<el-table-column <el-table-column
prop="" prop=""

14
src/views/modules/qc/OQCResultEntry.vue

@ -510,9 +510,8 @@
:data="detailList" :data="detailList"
border border
stripe stripe
:row-style="rowDetailStyle"
@row-click="OQCDetailClickRow"
style="width: 100%;" style="width: 100%;"
highlight-current-row
class="inspection-table"> class="inspection-table">
<el-table-column <el-table-column
prop="" prop=""
@ -2458,17 +2457,6 @@
this.FQASSelections = val this.FQASSelections = val
}, },
//
OQCDetailClickRow (row) {
this.currentDetailRow = JSON.parse(JSON.stringify(row))
},
rowDetailStyle ({row}) {
if (this.currentDetailRow.itemNo === row.itemNo) {
return { 'background-color': '#50DCDC', cursor: 'pointer' };
}
},
// //
getFileContentData (row) { getFileContentData (row) {
this.currentFileRow = row this.currentFileRow = row

Loading…
Cancel
Save