修改我的应用显示数量

main
qinzhenpen 1 year ago
parent dc23d8fbb2
commit 1f00fd0daa

@ -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();

Loading…
Cancel
Save