This commit is contained in:
pseduo-god 2020-06-18 19:43:18 -07:00 committed by GitHub
commit d5f8bca276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"author": "Pan <panfree23@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vue-cli-service serve",
"dev": "vue-cli-service serve --open",
"build:prod": "vue-cli-service build",
"build:stage": "vue-cli-service build --mode staging",
"preview": "node build/index.js --preview",

View File

@ -73,6 +73,14 @@ export default {
}
}
},
watch: {
total() {
// currentPage
if (this.total === (this.currentPage - 1) * this.limit && this.total !== 0) {
this.$emit('pagination', { page: this.currentPage - 1, limit: this.pageSize })
}
}
},
methods: {
handleSizeChange(val) {
this.$emit('pagination', { page: this.currentPage, limit: val })

View File

@ -31,7 +31,6 @@ module.exports = {
productionSourceMap: false,
devServer: {
port: port,
open: true,
overlay: {
warnings: false,
errors: true