|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div v-if="!tableHidden && dynamicShow" class="dynamic-form-table">
|
|
<div v-if="!tableHidden && dynamicShow" class="dynamic-form-table">
|
|
|
|
|
+ {{ field.field_options.page }}
|
|
|
<template v-if="columns && columns.length > 0">
|
|
<template v-if="columns && columns.length > 0">
|
|
|
<!--================表内和弹窗模式=================================-->
|
|
<!--================表内和弹窗模式=================================-->
|
|
|
<div
|
|
<div
|
|
@@ -679,7 +680,6 @@ export default {
|
|
|
},
|
|
},
|
|
|
handlePagination(val) {
|
|
handlePagination(val) {
|
|
|
if (this.canSortable && this.sortFlag) {
|
|
if (this.canSortable && this.sortFlag) {
|
|
|
- console.log('我tmd的来了')
|
|
|
|
|
this.copDataModel = []
|
|
this.copDataModel = []
|
|
|
this.sortFlag = false
|
|
this.sortFlag = false
|
|
|
}
|
|
}
|
|
@@ -699,12 +699,16 @@ export default {
|
|
|
this.currentPage =
|
|
this.currentPage =
|
|
|
this.currentPage > pageCount ? pageCount : this.currentPage
|
|
this.currentPage > pageCount ? pageCount : this.currentPage
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- this.copDataModel = this.getShowData(
|
|
|
|
|
- val,
|
|
|
|
|
- this.currentPage,
|
|
|
|
|
- this.pageSize
|
|
|
|
|
- )
|
|
|
|
|
|
|
+ // if (this.needPage === 'N') {
|
|
|
|
|
+ // this.copDataModel = this.dataModel
|
|
|
|
|
+ // } else {
|
|
|
|
|
+ // this.copDataModel = this.getShowData(
|
|
|
|
|
+ // val,
|
|
|
|
|
+ // this.currentPage,
|
|
|
|
|
+ // this.pageSize
|
|
|
|
|
+ // )
|
|
|
|
|
+ // }
|
|
|
|
|
+ this.$emit('update:value', val)
|
|
|
this.editFromType = ''
|
|
this.editFromType = ''
|
|
|
})
|
|
})
|
|
|
|
|
|