index.vue 445 B

1234567891011121314151617181920
  1. <template>
  2. <div>
  3. <staff-list/>
  4. </div>
  5. </template>
  6. <script>
  7. import { StaffList } from '~components/mobile/staffManagement'
  8. export default {
  9. middleware: 'authenticated',
  10. layout: 'mobile',
  11. components: {
  12. StaffList
  13. },
  14. fetch ({ store }) {
  15. return Promise.all([
  16. store.dispatch('staff/loadStaffList', {count: 10, page: 1, enuu: store.state.option.user.data.enterprise.uu})
  17. ])
  18. }
  19. }
  20. </script>