

231206 김성훈 기업홍보관 페이징 추가
@74548c6f74ed400a08f55c2a02cef985051f9143
--- client/views/pages/admin/statistics/MatchingStatistics.vue
+++ client/views/pages/admin/statistics/MatchingStatistics.vue
... | ... | @@ -494,9 +494,9 @@ |
494 | 494 |
link.href = url; |
495 | 495 |
let today = COMMON_UTIL.today(); |
496 | 496 |
if(vm.selectedOption1 == 'pick') { |
497 |
- link.download = '[' + today + ']' + '기업별 pick 통계'; |
|
497 |
+ link.download = '[' + today + ']' + vm.company_nm + ' pick 세부통계'; |
|
498 | 498 |
} else { |
499 |
- link.download = '[' + today + ']' + '기업별 matching 통계'; |
|
499 |
+ link.download = '[' + today + ']' + vm.company_nm + ' matching 세부통계'; |
|
500 | 500 |
} |
501 | 501 |
|
502 | 502 |
link.click(); |
--- client/views/pages/user/networking/Matching.vue
+++ client/views/pages/user/networking/Matching.vue
... | ... | @@ -98,10 +98,13 @@ |
98 | 98 |
</div> |
99 | 99 |
</div> |
100 | 100 |
</div> |
101 |
- |
|
102 | 101 |
</div> |
103 | 102 |
</div> |
104 | 103 |
</section> |
104 |
+ <div class="bottom-wrap"> |
|
105 |
+ <PaginationButton v-model:currentPage="companyListSearch.currentPage" :perPage="companyListSearch.perPage" |
|
106 |
+ :total-count="companyListCount" :max-range="5" :click="companySelectList" /> |
|
107 |
+ </div> |
|
105 | 108 |
</div> |
106 | 109 |
<div v-show="isModalOpen" class="modal-wrapper"> |
107 | 110 |
<div class="modal-container admin-alert"> |
... | ... | @@ -128,13 +131,14 @@ |
128 | 131 |
import { useStore } from "vuex"; |
129 | 132 |
import axios from 'axios'; |
130 | 133 |
import COMMON_UTIL from '../../../../resources/js/commonUtil.js'; |
134 |
+import PaginationButton from '../../../component/pagination/PaginationButton.vue'; |
|
131 | 135 |
|
132 | 136 |
export default { |
133 | 137 |
data() { |
134 | 138 |
return { |
135 | 139 |
companyListSearch: { |
136 | 140 |
currentPage: 1, |
137 |
- perPage: 10, |
|
141 |
+ perPage: 12, |
|
138 | 142 |
searchType: null, |
139 | 143 |
searchText: null, |
140 | 144 |
selectedKeywords: [], |
... | ... | @@ -329,6 +333,9 @@ |
329 | 333 |
console.log("keywordList - error : ", error); |
330 | 334 |
}); |
331 | 335 |
}, |
336 |
+ components: { |
|
337 |
+ PaginationButton: PaginationButton, |
|
338 |
+ }, |
|
332 | 339 |
mounted() { |
333 | 340 |
console.log('Matching mounted'); |
334 | 341 |
this.pageLogInsert(); |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?