|
|
@ -88,6 +88,7 @@
|
|
|
|
<slot name="right" class="right" ></slot>
|
|
|
|
<slot name="right" class="right" ></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<Pagination v-if="getBindValues.tableComponent === 'vxe'" v-bind="getBindValues.pagination" @change="pageChange" />
|
|
|
|
<Pagination v-if="getBindValues.tableComponent === 'vxe'" v-bind="getBindValues.pagination" @change="pageChange" />
|
|
|
|
|
|
|
|
<DsTableSet />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
|
|
<script lang="ts">
|
|
|
@ -97,6 +98,7 @@ import { Table, Pagination } from 'ant-design-vue'
|
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index'
|
|
|
|
import { BasicForm, useForm } from '/@/components/Form/index'
|
|
|
|
import { PageWrapperFixedHeightKey } from '/@/components/Page'
|
|
|
|
import { PageWrapperFixedHeightKey } from '/@/components/Page'
|
|
|
|
import HeaderCell from './components/HeaderCell.vue'
|
|
|
|
import HeaderCell from './components/HeaderCell.vue'
|
|
|
|
|
|
|
|
import DsTableSet from './components/settings/DsTableSet.vue'
|
|
|
|
import { InnerHandlers } from './types/table'
|
|
|
|
import { InnerHandlers } from './types/table'
|
|
|
|
|
|
|
|
|
|
|
|
import { usePagination } from './hooks/usePagination'
|
|
|
|
import { usePagination } from './hooks/usePagination'
|
|
|
@ -126,7 +128,8 @@ export default defineComponent({
|
|
|
|
Table,
|
|
|
|
Table,
|
|
|
|
BasicForm,
|
|
|
|
BasicForm,
|
|
|
|
HeaderCell,
|
|
|
|
HeaderCell,
|
|
|
|
Pagination
|
|
|
|
Pagination,
|
|
|
|
|
|
|
|
DsTableSet
|
|
|
|
},
|
|
|
|
},
|
|
|
|
props: basicProps,
|
|
|
|
props: basicProps,
|
|
|
|
emits: [
|
|
|
|
emits: [
|
|
|
|