Former-commit-id: 7b74bdf25b14c6a8da08ae07075e3f78be308894 [formerly 7b74bdf25b14c6a8da08ae07075e3f78be308894 [formerly 7b74bdf25b14c6a8da08ae07075e3f78be308894 [formerly 7b74bdf25b14c6a8da08ae07075e3f78be308894 [formerly 1e795e1614aaf94f23ad99354f6ca9be303a1b1e [formerly 9ce21aef6b043d8bfcb2849dd7c6bc34e4625387]]]]] Former-commit-id: c92d7410adc4138c7903c0067860fc3d190f54b0 Former-commit-id: 9f0ab819a505e341a6edf210efb107df8b8efe33 Former-commit-id: 3006c0d2ccda4133203372c30ffee34a73fa8944 [formerly f340ca4127e4578b3c53747d13bbaba223ed4e83] Former-commit-id: 9624c2aaa99880b5e37f1e60f1f36ac673e021ed Former-commit-id: 7923489f2c3c637782d9d4a1707bc48dfe3b1acf Former-commit-id: 2375e080a7f715bc48da40d4c56235efad3f0d5d Former-commit-id: c41402e6c0266a07e974efad41feed7c6fb7d0b6 Former-commit-id: b8814b31619151361c91ed37cb1ee7f3813853c1
89 lines
1.9 KiB
Vue
89 lines
1.9 KiB
Vue
<template>
|
|
<d2-container :filename="filename">
|
|
<template slot="header">分页</template>
|
|
<d2-crud
|
|
:columns="columns"
|
|
:data="data"
|
|
:loading="loading"
|
|
:pagination="pagination"
|
|
@pagination-current-change="paginationCurrentChange"/>
|
|
<el-card shadow="never" class="d2-mb">
|
|
<d2-markdown :source="doc"/>
|
|
</el-card>
|
|
<el-card shadow="never" class="d2-mb">
|
|
<d2-highlight :code="code"/>
|
|
</el-card>
|
|
<template slot="footer">
|
|
<d2-link-btn title="文档" link="https://doc.d2admin.fairyever.com/zh/ecosystem-d2-crud/"/>
|
|
</template>
|
|
</d2-container>
|
|
</template>
|
|
|
|
<script>
|
|
import doc from './doc.md'
|
|
import code from './code.js'
|
|
import { BusinessTable1List } from '@api/demo.business.table.1'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
filename: __filename,
|
|
doc,
|
|
code,
|
|
columns: [
|
|
{
|
|
title: '卡密',
|
|
key: 'key',
|
|
width: 320
|
|
},
|
|
{
|
|
title: '面值',
|
|
key: 'value'
|
|
},
|
|
{
|
|
title: '管理员',
|
|
key: 'admin'
|
|
},
|
|
{
|
|
title: '创建时间',
|
|
key: 'dateTimeCreat'
|
|
},
|
|
{
|
|
title: '使用时间',
|
|
key: 'dateTimeUse'
|
|
}
|
|
],
|
|
data: [],
|
|
loading: false,
|
|
pagination: {
|
|
currentPage: 1,
|
|
pageSize: 5,
|
|
total: 0
|
|
}
|
|
}
|
|
},
|
|
mounted () {
|
|
this.fetchData()
|
|
},
|
|
methods: {
|
|
paginationCurrentChange (currentPage) {
|
|
this.pagination.currentPage = currentPage
|
|
this.fetchData()
|
|
},
|
|
fetchData () {
|
|
this.loading = true
|
|
BusinessTable1List({
|
|
...this.pagination
|
|
}).then(res => {
|
|
this.data = res.list
|
|
this.pagination.total = res.page.total
|
|
this.loading = false
|
|
}).catch(err => {
|
|
console.log('err', err)
|
|
this.loading = false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|