dataTable.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <table id="dataTable" ref="datatable"></table>
  3. </template>
  4. <script>
  5. const tableOptions = {
  6. scrollY: "250px",
  7. searching: false,
  8. scrollCollapse: true,
  9. paging: false,
  10. fixedHeader: true,
  11. autoWidth: true,
  12. ordering: false,
  13. stripeClasses: [ 'strip1', 'strip2' ]
  14. }
  15. export default {
  16. name: '',
  17. props: {
  18. columns: {
  19. type: Array,
  20. default: [
  21. { title: '日期' },
  22. { title: '值' },
  23. ],
  24. },
  25. data: {
  26. type: Array,
  27. default: [],
  28. }
  29. },
  30. methods: {
  31. initData() {
  32. this.DataTable = $('#dataTable').DataTable({
  33. ...tableOptions,
  34. data: this.data,
  35. columns: this.columns,
  36. });
  37. },
  38. },
  39. mounted() {
  40. this.initData();
  41. }
  42. };
  43. </script>
  44. <style lang="scss" >
  45. .dataTables_wrapper {
  46. .dataTable td {
  47. text-align: center !important;
  48. }
  49. .dataTables_scrollHeadInner,.dataTables_scrollHeadInner .dataTable {
  50. width: 100% !important;
  51. }
  52. .dataTables_info {
  53. display: none;
  54. }
  55. .strip1 td{
  56. background-color: #f9f9f9
  57. }
  58. }
  59. </style>