From 1f00fd0daa7cf826a5526c8c06430872cba747fa Mon Sep 17 00:00:00 2001 From: qinzhenpen Date: Wed, 27 Dec 2023 13:21:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=88=91=E7=9A=84=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E6=98=BE=E7=A4=BA=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/myApps/MyApps.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/pages/myApps/MyApps.vue b/src/pages/myApps/MyApps.vue index b267bbb..e610f60 100644 --- a/src/pages/myApps/MyApps.vue +++ b/src/pages/myApps/MyApps.vue @@ -32,7 +32,11 @@ export default { yingyong:require("../../images/index/yingyong@2x.png"), type:this.$route.query.type, myAppsList: [], - timeIn:null + timeIn:null, + queryParams:{ + page:1, + limit:30 + } }; }, created() { @@ -40,11 +44,10 @@ export default { //this.addSystem(); }, mounted() { - }, methods: { getInfo(){ - this.$post("/api/base/myPageApplication.do").then((ret) =>{ + this.$post("/api/base/myPageApplication.do",this.queryParams).then((ret) =>{ if(ret.code == 0){ this.myAppsList = ret.data; this.$forceUpdate();