1234567891011121314151617181920212223242526272829 |
- <template>
- <div>
- <table-page ref="tableRef" type="2" />
- </div>
- </template>
- <script>
- // 个人金融业务部业绩分润
- import TablePage from '../components/table.vue'
- export default {
- name: 'salaryClaimPersonalFinance',
- components: {
- TablePage
- },
- data () {
- return {
- }
- },
- methods: {
- onInit () {
- this.$refs.tableRef.onInit()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- /* 自定义样式 */
- </style>
|