Browse Source

0430细化日付lhj1150

liuhj 1 year ago
parent
commit
be58f259f0

+ 2 - 0
src/components/Finance/DailyFeePayment.vue

@@ -400,6 +400,7 @@ export default {
                 userNameValue:this.userNameValue,
                 isPaySign:this.isPaySign,
                 pgindex:this.currentPage,
+                pageSize:this.pageSize,
             };
             this.$router.push({path: '/home/DailyFeeedit?id=' + row.id +''});
         },
@@ -414,6 +415,7 @@ export default {
             this.userNameValue=this.$store.state.PaymentRequest.userNameValue?this.$store.state.PaymentRequest.userNameValue:'';
             this.isPaySign=this.$store.state.PaymentRequest.isPaySign?this.$store.state.PaymentRequest.isPaySign:'-1';
             this.currentPage=this.$store.state.PaymentRequest.pgindex?this.$store.state.PaymentRequest.pgindex:1;
+            this.pageSize=this.$store.state.PaymentRequest.pageSize?this.$store.state.PaymentRequest.pageSize:10;
         },
         handleDelete(index, row,rows) {
             console.log(index, row);

+ 3 - 1
src/components/Resource/InvitationOfficialActivityData.vue

@@ -288,6 +288,7 @@ export default {
             this.InviteTime=this.$store.state.Termsofinvitation.InviteTime?this.$store.state.Termsofinvitation.InviteTime:'';
             this.Field=this.$store.state.Termsofinvitation.Field?this.$store.state.Termsofinvitation.Field:'';
             this.currentPage=this.$store.state.Termsofinvitation.pgindex?this.$store.state.Termsofinvitation.pgindex:1;
+            this.pageSize=this.$store.state.Termsofinvitation.pageSize?this.$store.state.Termsofinvitation.pageSize:10;
         },
         //基础数据
         QueryIOAInitData() {
@@ -489,7 +490,8 @@ export default {
             });
         },
         upDate(index, row) {
-            this.$store.state.Termsofinvitation.pgindex=this.currentPage
+            this.$store.state.Termsofinvitation.pgindex=this.currentPage;
+            this.$store.state.Termsofinvitation.pageSize=this.pageSize;
             this.$router.push({
                 path: "/home/OpInvitationOfficialActivityData",
                 query: { id: row.id }