| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="section">
- <search-customs/>
- </div>
- </template>
- <script>
- import { searchCustoms } from '@/components/common'
- export default {
- name: 'SearchCustoms',
- layout: 'default',
- middleware: 'authenticated',
- data () {
- return {
- title: '关务汇总单查询'
- }
- },
- fetch({store}) {
- return Promise.all([
- store.dispatch('loadCustomsInfo', {count: 10, page: 1})
- ])
- },
- components: {
- searchCustoms
- }
- }
- </script>
|