index.vue 451 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div>
  3. <table-page ref="tableRef" type="2" />
  4. </div>
  5. </template>
  6. <script>
  7. // 个人金融业务部业绩分润
  8. import TablePage from '../components/table.vue'
  9. export default {
  10. name: 'salaryClaimPersonalFinance',
  11. components: {
  12. TablePage
  13. },
  14. data () {
  15. return {
  16. }
  17. },
  18. methods: {
  19. onInit () {
  20. this.$refs.tableRef.onInit()
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. /* 自定义样式 */
  27. </style>