diff --git a/src/views/modules/proofing/requestForProofing.vue b/src/views/modules/proofing/requestForProofing.vue index be80772..7a447e9 100644 --- a/src/views/modules/proofing/requestForProofing.vue +++ b/src/views/modules/proofing/requestForProofing.vue @@ -85,6 +85,7 @@ :height="height" :data="dataList" border + :row-style="rowStyle" ref="proofingTable" @row-click="proofingClickRow" @selection-change="selectionProofing" @@ -2786,6 +2787,11 @@ customerId:undefined, } }, + rowStyle({row}){ + if (this.proofingCurrentRow.proofingNo === row.proofingNo) { + return { 'background-color': '#E8F7F6', cursor: 'pointer' }; + } + }, } } diff --git a/src/views/modules/quotation/requestForQuote.vue b/src/views/modules/quotation/requestForQuote.vue index 596de72..36f39f9 100644 --- a/src/views/modules/quotation/requestForQuote.vue +++ b/src/views/modules/quotation/requestForQuote.vue @@ -91,6 +91,7 @@ :height="height" :data="dataList" border + :row-style="rowStyle" ref="quotationTable" @row-click="quotationClickRow" @selection-change="selectionQuotation" @@ -2754,6 +2755,11 @@ return false } }, + rowStyle({row}){ + if (this.quotationCurrentRow.quotationNo === row.quotationNo) { + return { 'background-color': '#E8F7F6', cursor: 'pointer' }; + } + }, } } diff --git a/src/views/modules/test/requestForTest.vue b/src/views/modules/test/requestForTest.vue index c08c695..ca5d507 100644 --- a/src/views/modules/test/requestForTest.vue +++ b/src/views/modules/test/requestForTest.vue @@ -85,6 +85,7 @@ :height="height" :data="dataList" border + :row-style="rowStyle" ref="testTable" @row-click="testClickRow" @selection-change="selectionTest" @@ -2591,6 +2592,11 @@ customerId:undefined, } }, + rowStyle({row}){ + if (this.testCurrentRow.testNo === row.testNo) { + return { 'background-color': '#E8F7F6', cursor: 'pointer' }; + } + }, } }