|
@@ -147,13 +147,15 @@ export default {
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
- this.listQuery.size = parseInt(getCookie('PersonalPendingList'));
|
|
|
this.listQuery.keyword = this.$route.query.keyword;
|
|
|
this.getPage();
|
|
|
this.getNodeEnum();
|
|
|
},
|
|
|
methods: {
|
|
|
getPage() {
|
|
|
+ if (getCookie('PersonalPendingList') != undefined){
|
|
|
+ this.listQuery.size = parseInt(getCookie('PersonalPendingList'));
|
|
|
+ }
|
|
|
this.$api.personal.list(this.listQuery).then(res=>{
|
|
|
if (res.code ===200){
|
|
|
this.pageData = res.data;
|