merge pagination
commit
e7834f972a
|
@ -0,0 +1,22 @@
|
||||||
|
<script>
|
||||||
|
import VcSelect, { SelectProps } from '../select'
|
||||||
|
import { getOptionProps, filterEmpty } from '../_util/props-util'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
...SelectProps,
|
||||||
|
},
|
||||||
|
Option: VcSelect.Option,
|
||||||
|
render () {
|
||||||
|
const selectOptionsProps = getOptionProps(this)
|
||||||
|
const selelctProps = {
|
||||||
|
props: {
|
||||||
|
...selectOptionsProps,
|
||||||
|
size: 'small',
|
||||||
|
},
|
||||||
|
on: this.$listeners,
|
||||||
|
}
|
||||||
|
return <VcSelect {...selelctProps}>{filterEmpty(this.$slots.default)}</VcSelect>
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -1,6 +1,7 @@
|
||||||
<script>
|
<script>
|
||||||
import PropTypes from '../_util/vue-types'
|
import PropTypes from '../_util/vue-types'
|
||||||
import VcSelect from '../select'
|
import VcSelect from '../select'
|
||||||
|
import MiniSelect from './MiniSelect'
|
||||||
import enUS from '../vc-pagination/locale/en_US'
|
import enUS from '../vc-pagination/locale/en_US'
|
||||||
import LocaleReceiver from '../locale-provider/LocaleReceiver'
|
import LocaleReceiver from '../locale-provider/LocaleReceiver'
|
||||||
import { getOptionProps } from '../_util/props-util'
|
import { getOptionProps } from '../_util/props-util'
|
||||||
|
@ -18,6 +19,7 @@ export const PaginationProps = {
|
||||||
PropTypes.number,
|
PropTypes.number,
|
||||||
PropTypes.string,
|
PropTypes.string,
|
||||||
])),
|
])),
|
||||||
|
buildOptionText: PropTypes.func,
|
||||||
showSizeChange: PropTypes.func,
|
showSizeChange: PropTypes.func,
|
||||||
showQuickJumper: PropTypes.bool,
|
showQuickJumper: PropTypes.bool,
|
||||||
showTotal: PropTypes.any,
|
showTotal: PropTypes.any,
|
||||||
|
@ -46,13 +48,14 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
renderPagination (locale) {
|
renderPagination (locale) {
|
||||||
const { size, ...restProps } = getOptionProps(this)
|
const { buildOptionText, size, ...restProps } = getOptionProps(this)
|
||||||
const isSmall = size === 'small'
|
const isSmall = size === 'small'
|
||||||
const paginationProps = {
|
const paginationProps = {
|
||||||
props: {
|
props: {
|
||||||
...restProps,
|
...restProps,
|
||||||
selectComponentClass: VcSelect,
|
selectComponentClass: (isSmall ? MiniSelect : VcSelect),
|
||||||
locale,
|
locale,
|
||||||
|
buildOptionText: buildOptionText || this.$scopedSlots.buildOptionText,
|
||||||
},
|
},
|
||||||
class: {
|
class: {
|
||||||
'mini': isSmall,
|
'mini': isSmall,
|
||||||
|
|
|
@ -25,14 +25,18 @@
|
||||||
<br>
|
<br>
|
||||||
迷你
|
迷你
|
||||||
<Pagination :current="1" :total="50" size="small"/>
|
<Pagination :current="1" :total="50" size="small"/>
|
||||||
<Pagination :current="1" :total="50" :showTotal="showTotal" size="small"/>
|
<Pagination :current="1" :total="50" :showTotal="showTotal" size="small" showSizeChanger showQuickJumper/>
|
||||||
<br>
|
<br>
|
||||||
总数
|
总数
|
||||||
<Pagination :current="1" :total="50" :showTotal="showTotal"/>
|
<Pagination :current="1" :total="50" :showTotal="showTotal"/>
|
||||||
<Pagination :current="1" :total="50" :showTotal="showTotal1"/>
|
<Pagination :current="1" :total="50" :showTotal="showTotal1"/>
|
||||||
<br>
|
<br>
|
||||||
跳转
|
跳转
|
||||||
<Pagination v-model="current" :total="50" :showQuickJumper="showQuickJumper"/>
|
<Pagination v-model="current" :total="50" :showQuickJumper="showQuickJumper" showSizeChanger>
|
||||||
|
<template slot='buildOptionText' slot-scope='props'>
|
||||||
|
<span>{{props.value}}条/页</span>
|
||||||
|
</template>
|
||||||
|
</Pagination>
|
||||||
<vc-button @click="getValue">当前值</vc-button>
|
<vc-button @click="getValue">当前值</vc-button>
|
||||||
<br>
|
<br>
|
||||||
上一步下一步
|
上一步下一步
|
||||||
|
|
|
@ -41,10 +41,6 @@ const SelectValue = PropTypes.oneOfType([
|
||||||
])),
|
])),
|
||||||
Value,
|
Value,
|
||||||
])
|
])
|
||||||
export {
|
|
||||||
AbstractSelectProps,
|
|
||||||
SelectValue,
|
|
||||||
}
|
|
||||||
|
|
||||||
const SelectProps = {
|
const SelectProps = {
|
||||||
...AbstractSelectProps,
|
...AbstractSelectProps,
|
||||||
|
@ -79,6 +75,12 @@ const SelectPropTypes = {
|
||||||
choiceTransitionName: PropTypes.string,
|
choiceTransitionName: PropTypes.string,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export {
|
||||||
|
AbstractSelectProps,
|
||||||
|
SelectValue,
|
||||||
|
SelectProps,
|
||||||
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Option,
|
Option,
|
||||||
OptGroup,
|
OptGroup,
|
||||||
|
|
|
@ -7,6 +7,7 @@ export default {
|
||||||
mixins: [BaseMixin],
|
mixins: [BaseMixin],
|
||||||
props: {
|
props: {
|
||||||
rootPrefixCls: PropTypes.String,
|
rootPrefixCls: PropTypes.String,
|
||||||
|
selectPrefixCls: PropTypes.String,
|
||||||
changeSize: PropTypes.func,
|
changeSize: PropTypes.func,
|
||||||
quickGo: PropTypes.func,
|
quickGo: PropTypes.func,
|
||||||
selectComponentClass: PropTypes.any,
|
selectComponentClass: PropTypes.any,
|
||||||
|
@ -24,8 +25,8 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
defaultBuildOptionText (value) {
|
defaultBuildOptionText (opt) {
|
||||||
return `${value} ${this.locale.items_per_page}`
|
return `${opt.value} ${this.locale.items_per_page}`
|
||||||
},
|
},
|
||||||
handleChange (e) {
|
handleChange (e) {
|
||||||
this.setState({
|
this.setState({
|
||||||
|
@ -50,7 +51,7 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
render () {
|
render () {
|
||||||
const { rootPrefixCls, locale, changeSize, quickGo, goButton, buildOptionText, selectComponentClass: Select, defaultBuildOptionText } = this
|
const { rootPrefixCls, locale, changeSize, quickGo, goButton, selectComponentClass: Select, defaultBuildOptionText } = this
|
||||||
const prefixCls = `${rootPrefixCls}-options`
|
const prefixCls = `${rootPrefixCls}-options`
|
||||||
let changeSelect = null
|
let changeSelect = null
|
||||||
let goInput = null
|
let goInput = null
|
||||||
|
@ -63,8 +64,9 @@ export default {
|
||||||
if (changeSize && Select) {
|
if (changeSize && Select) {
|
||||||
const Option = Select.Option
|
const Option = Select.Option
|
||||||
const pageSize = this.pageSize || this.pageSizeOptions[0]
|
const pageSize = this.pageSize || this.pageSizeOptions[0]
|
||||||
|
const buildOptionText = this.buildOptionText || defaultBuildOptionText
|
||||||
const options = this.pageSizeOptions.map((opt, i) => (
|
const options = this.pageSizeOptions.map((opt, i) => (
|
||||||
<Option key={i} value={opt}>{buildOptionText ? buildOptionText(opt) : defaultBuildOptionText(opt)}</Option>
|
<Option key={i} value={opt}>{buildOptionText({ value: opt })}</Option>
|
||||||
))
|
))
|
||||||
|
|
||||||
changeSelect = (
|
changeSelect = (
|
||||||
|
|
|
@ -41,6 +41,7 @@ export default {
|
||||||
showQuickJumper: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]).def(false),
|
showQuickJumper: PropTypes.oneOfType([PropTypes.bool, PropTypes.object]).def(false),
|
||||||
showTitle: PropTypes.bool.def(true),
|
showTitle: PropTypes.bool.def(true),
|
||||||
pageSizeOptions: PropTypes.arrayOf(PropTypes.string),
|
pageSizeOptions: PropTypes.arrayOf(PropTypes.string),
|
||||||
|
buildOptionText: PropTypes.func,
|
||||||
showTotal: PropTypes.func,
|
showTotal: PropTypes.func,
|
||||||
simple: PropTypes.bool,
|
simple: PropTypes.bool,
|
||||||
locale: PropTypes.object.def(LOCALE),
|
locale: PropTypes.object.def(LOCALE),
|
||||||
|
@ -481,6 +482,7 @@ export default {
|
||||||
}
|
}
|
||||||
const prevDisabled = !this.hasPrev()
|
const prevDisabled = !this.hasPrev()
|
||||||
const nextDisabled = !this.hasNext()
|
const nextDisabled = !this.hasNext()
|
||||||
|
const buildOptionText = this.buildOptionText || this.$scopedSlots.buildOptionText
|
||||||
return (
|
return (
|
||||||
<ul
|
<ul
|
||||||
class={`${prefixCls}`}
|
class={`${prefixCls}`}
|
||||||
|
@ -517,6 +519,7 @@ export default {
|
||||||
current={stateCurrent}
|
current={stateCurrent}
|
||||||
pageSize={statePageSize}
|
pageSize={statePageSize}
|
||||||
pageSizeOptions={this.pageSizeOptions}
|
pageSizeOptions={this.pageSizeOptions}
|
||||||
|
buildOptionText={buildOptionText || null}
|
||||||
quickGo={this.showQuickJumper ? this.handleChange : null}
|
quickGo={this.showQuickJumper ? this.handleChange : null}
|
||||||
goButton={goButton}
|
goButton={goButton}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue