dataTable.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. // show: {
  19. // type: Boolean,
  20. // required: true
  21. // },
  22. columns: {
  23. type: Array,
  24. default: [
  25. { title: '日期' },
  26. { title: '值' },
  27. ],
  28. },
  29. data: {
  30. type: Array,
  31. default: [],
  32. }
  33. },
  34. methods: {
  35. initData() {
  36. this.DataTable = $('#dataTable').DataTable({
  37. ...tableOptions,
  38. data: this.data,
  39. columns: this.columns,
  40. });
  41. },
  42. },
  43. mounted() {
  44. this.initData();
  45. }
  46. };
  47. </script>
  48. <style lang="scss" >
  49. .dataTables_wrapper {
  50. .dataTable td {
  51. text-align: center !important;
  52. }
  53. .dataTables_scrollHeadInner,.dataTables_scrollHeadInner .dataTable {
  54. width: 100% !important;
  55. }
  56. .dataTables_info {
  57. display: none;
  58. }
  59. .strip1 td{
  60. background-color: #f9f9f9
  61. }
  62. }
  63. </style>