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