|
|
@@ -104,10 +104,15 @@ export default {
|
|
|
methods:{
|
|
|
async listData () {
|
|
|
const res = await this.$api.requested(this.params)
|
|
|
+ this.params.content.pageSize = 999999999
|
|
|
+ const res2 = await this.$api.requested(this.params)
|
|
|
+ this.params.content.pageSize = 20
|
|
|
this.list = res.data
|
|
|
this.total = res.total
|
|
|
this.currentPage = res.pageNumber
|
|
|
- this.$emit('exportDataUpdata',this.list)
|
|
|
+ console.log(res2.data);
|
|
|
+
|
|
|
+ this.$emit('exportDataUpdata',res2.data)
|
|
|
this.$store.dispatch('optiontypeselect','cluepublic')
|
|
|
},
|
|
|
handleSizeChange(val) {
|