| 1234567891011121314151617181920 |
- <template>
- <div>
- <staff-list/>
- </div>
- </template>
- <script>
- import { StaffList } from '~components/mobile/staffManagement'
- export default {
- middleware: 'authenticated',
- layout: 'mobile',
- components: {
- StaffList
- },
- fetch ({ store }) {
- return Promise.all([
- store.dispatch('staff/loadStaffList', {count: 10, page: 1, enuu: store.state.option.user.data.enterprise.uu})
- ])
- }
- }
- </script>
|