|  |  | 
 |  |  |       let enableBtn = this.buttons.find(x => x.value == 'Enable'); | 
 |  |  |       if (enableBtn) { | 
 |  |  |         enableBtn.onClick = function () { | 
 |  |  |           this.$message.success('èªå®ä¹æé®ç¹å»äºä»¶'); | 
 |  |  |           //this.$message.success('èªå®ä¹æé®ç¹å»äºä»¶'); | 
 |  |  |           var printSection = document.querySelector('.vol-table'); | 
 |  |  |           var printWindow = window.open('', ''); | 
 |  |  |           printWindow.document.write(printSection.innerHTML); | 
 |  |  |           printWindow.document.close(); | 
 |  |  |           printWindow.focus(); | 
 |  |  |           printWindow.print(); | 
 |  |  |           printWindow.close(); | 
 |  |  |  | 
 |  |  |         } | 
 |  |  |       } | 
 |  |  |       let disableBtn = this.buttons.find(x => x.value == 'Disable'); |