|
|
@ -91,6 +91,7 @@ |
|
|
:height="height" |
|
|
:height="height" |
|
|
:data="dataList" |
|
|
:data="dataList" |
|
|
border |
|
|
border |
|
|
|
|
|
:row-style="rowStyle" |
|
|
ref="quotationTable" |
|
|
ref="quotationTable" |
|
|
@row-click="quotationClickRow" |
|
|
@row-click="quotationClickRow" |
|
|
@selection-change="selectionQuotation" |
|
|
@selection-change="selectionQuotation" |
|
|
@ -2754,6 +2755,11 @@ |
|
|
return false |
|
|
return false |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
rowStyle({row}){ |
|
|
|
|
|
if (this.quotationCurrentRow.quotationNo === row.quotationNo) { |
|
|
|
|
|
return { 'background-color': '#E8F7F6', cursor: 'pointer' }; |
|
|
|
|
|
} |
|
|
|
|
|
}, |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|