diff --git a/frontend/src/components/CustomGrid.vue b/frontend/src/components/CustomGrid.vue index 2b213a0..491b6cb 100644 --- a/frontend/src/components/CustomGrid.vue +++ b/frontend/src/components/CustomGrid.vue @@ -81,7 +81,7 @@ export default { }, cleanData() { if (typeof this.pagePerRows == undefined || this.pagePerRows == null) { - this.curPerPage = 20; + this.curPerPage = 50; } else { this.curPerPage = this.pagePerRows; } @@ -110,6 +110,7 @@ export default { this.nextPageRange = 1; }, readData(isKeep) { + console.log(111); if (typeof this.url != undefined && this.url != null && this.url != '') { if (isKeep == true) { // nothing diff --git a/frontend/src/modules/attractMgt/views/ChannelList.vue b/frontend/src/modules/attractMgt/views/ChannelList.vue index c542318..5a900de 100644 --- a/frontend/src/modules/attractMgt/views/ChannelList.vue +++ b/frontend/src/modules/attractMgt/views/ChannelList.vue @@ -190,7 +190,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/attractMgt/channelList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -279,12 +279,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; - isKeep = true; + //isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/calculate/views/CalcList.vue b/frontend/src/modules/calculate/views/CalcList.vue index fb268c4..7d299ab 100644 --- a/frontend/src/modules/calculate/views/CalcList.vue +++ b/frontend/src/modules/calculate/views/CalcList.vue @@ -141,7 +141,7 @@ export default { grid: { url: '/api/v1/bo/calculate/calcList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -289,12 +289,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; - isKeep = true; + //isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/channelMgt/views/ProfileList.vue b/frontend/src/modules/channelMgt/views/ProfileList.vue index cd5b070..d8f7887 100644 --- a/frontend/src/modules/channelMgt/views/ProfileList.vue +++ b/frontend/src/modules/channelMgt/views/ProfileList.vue @@ -55,7 +55,7 @@ :totalItems="'totalItems'" :url="grid.url" :pagePerRows="grid.pagePerRows" - :initialRequest="grid.pagination" + :initialRequest="grid.initialRequest" :pagination="grid.pagination" :isCheckbox="grid.isCheckbox" :columns="grid.columns" @@ -92,7 +92,7 @@ export default { ], grid: { url: '/api/v1/bo/sendNumMgt/profileList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -150,12 +150,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/channelMgt/views/TmpltList.vue b/frontend/src/modules/channelMgt/views/TmpltList.vue index 3ea2cba..2ba84c1 100644 --- a/frontend/src/modules/channelMgt/views/TmpltList.vue +++ b/frontend/src/modules/channelMgt/views/TmpltList.vue @@ -99,7 +99,7 @@ export default { ], grid: { url: '/api/v1/bo/channelMgt/tmpltList', - perPage: 20, + perPage: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -169,12 +169,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/custMgt/views/MemberList.vue b/frontend/src/modules/custMgt/views/MemberList.vue index 42bdccf..673476d 100644 --- a/frontend/src/modules/custMgt/views/MemberList.vue +++ b/frontend/src/modules/custMgt/views/MemberList.vue @@ -174,7 +174,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/custMgt/memberList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -244,12 +244,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/custMgt/views/SubsList.vue b/frontend/src/modules/custMgt/views/SubsList.vue index e653064..76932f6 100644 --- a/frontend/src/modules/custMgt/views/SubsList.vue +++ b/frontend/src/modules/custMgt/views/SubsList.vue @@ -184,7 +184,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/custMgt/subsList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -260,12 +260,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/homeMgt/views/faq.vue b/frontend/src/modules/homeMgt/views/faq.vue index 0dc30a6..45b0e16 100644 --- a/frontend/src/modules/homeMgt/views/faq.vue +++ b/frontend/src/modules/homeMgt/views/faq.vue @@ -118,10 +118,10 @@ export default { ], grid: { url: '/api/v1/bo/homeMgt/faqList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: true, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 - initialRequest: true, + initialRequest: false, addCls: 'box_OFvis', columns: [ @@ -171,12 +171,15 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; - // page = getCondition.page; + page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/homeMgt/views/notice.vue b/frontend/src/modules/homeMgt/views/notice.vue index 55caab3..119c456 100644 --- a/frontend/src/modules/homeMgt/views/notice.vue +++ b/frontend/src/modules/homeMgt/views/notice.vue @@ -117,10 +117,10 @@ export default { ], grid: { url: '/api/v1/bo/homeMgt/noticeList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: true, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 - initialRequest: true, + initialRequest: false, addCls: 'box_OFvis', columns: [ @@ -180,12 +180,15 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; // page = getCondition.page; - isKeep = true; + //isKeep = true; } + */ + this.grid.pagePerRows = 50; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/mntrng/views/SendList.vue b/frontend/src/modules/mntrng/views/SendList.vue index a209cca..1751285 100644 --- a/frontend/src/modules/mntrng/views/SendList.vue +++ b/frontend/src/modules/mntrng/views/SendList.vue @@ -146,7 +146,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/mntrng/sendList', - perPage: 20, + perPage: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -226,12 +226,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; - isKeep = true; + //isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/riskMgt/components/InsertIntrcpPop.vue b/frontend/src/modules/riskMgt/components/InsertIntrcpPop.vue index cfc7607..ec887bc 100644 --- a/frontend/src/modules/riskMgt/components/InsertIntrcpPop.vue +++ b/frontend/src/modules/riskMgt/components/InsertIntrcpPop.vue @@ -55,7 +55,7 @@ - + diff --git a/frontend/src/modules/riskMgt/views/All.vue b/frontend/src/modules/riskMgt/views/All.vue index dbd1614..078e295 100644 --- a/frontend/src/modules/riskMgt/views/All.vue +++ b/frontend/src/modules/riskMgt/views/All.vue @@ -85,7 +85,7 @@ :totalItems="'totalItems'" :url="grid.url" :pagePerRows="grid.pagePerRows" - :initialRequest="grid.pagination" + :initialRequest="grid.initialRequest" :pagination="grid.pagination" :isCheckbox="grid.isCheckbox" :columns="grid.columns" @@ -154,8 +154,8 @@ export default { row: {}, grid: { url: '/api/v1/bo/riskMgt/web/intrcpList', - perPage: 20, - pagePerRows: 20, + perPage: 50, + pagePerRows: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -216,7 +216,7 @@ export default { destroyed() { this.$store.commit('searchcondition/updateSearchCondition', { page: 1, - perPage: 20, + perPage: 50, params: { blckDt: '', blckRsnCd: '', @@ -238,12 +238,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; - isKeep = true; + //isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/riskMgt/views/IntrcpList.vue b/frontend/src/modules/riskMgt/views/IntrcpList.vue index 3f2eb03..934ade5 100644 --- a/frontend/src/modules/riskMgt/views/IntrcpList.vue +++ b/frontend/src/modules/riskMgt/views/IntrcpList.vue @@ -138,7 +138,7 @@ export default { ], grid: { url: '/api/v1/bo/riskMgt/sendNum/intrcpList', - pagePerRows: 20, + pagePerRows: 50, //perPage: 50, pagination: true, isCheckbox: false, @@ -206,12 +206,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/riskMgt/views/Msg.vue b/frontend/src/modules/riskMgt/views/Msg.vue index 00141ea..5f4008d 100644 --- a/frontend/src/modules/riskMgt/views/Msg.vue +++ b/frontend/src/modules/riskMgt/views/Msg.vue @@ -115,7 +115,7 @@ export default { blckRsnCd: '', grid: { url: '/api/v1/bo/riskMgt/msg/intrcpList', - perPageRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -175,12 +175,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/riskMgt/views/ZezNum.vue b/frontend/src/modules/riskMgt/views/ZezNum.vue index ddf8931..2a38b50 100644 --- a/frontend/src/modules/riskMgt/views/ZezNum.vue +++ b/frontend/src/modules/riskMgt/views/ZezNum.vue @@ -46,7 +46,7 @@ :totalItems="'totalItems'" :url="grid.url" :pagePerRows="grid.pagePerRows" - :initialRequest="grid.pagination" + :initialRequest="grid.initialRequest" :pagination="grid.pagination" :isCheckbox="grid.isCheckbox" :columns="grid.columns" @@ -118,7 +118,7 @@ export default { userType: [], row: {}, perPageCnt: 50, - pagePerRows: 20, + pagePerRows: 50, options: [ {text: '20', value: 20}, {text: '50', value: 50}, @@ -183,12 +183,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/sendNumMgt/views/ApprList.vue b/frontend/src/modules/sendNumMgt/views/ApprList.vue index 5681ea9..df8a852 100644 --- a/frontend/src/modules/sendNumMgt/views/ApprList.vue +++ b/frontend/src/modules/sendNumMgt/views/ApprList.vue @@ -174,12 +174,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/sendNumMgt/views/NumberList.vue b/frontend/src/modules/sendNumMgt/views/NumberList.vue index aaacb18..df23d7c 100644 --- a/frontend/src/modules/sendNumMgt/views/NumberList.vue +++ b/frontend/src/modules/sendNumMgt/views/NumberList.vue @@ -142,7 +142,7 @@ export default { perPageCnt: 50, grid: { url: '/api/v1/bo/sendNumMgt/numberList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: true, initialRequest: false, @@ -232,12 +232,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/servMgt/views/rejectRecvList.vue b/frontend/src/modules/servMgt/views/rejectRecvList.vue index 0dae4d2..cccffb1 100644 --- a/frontend/src/modules/servMgt/views/rejectRecvList.vue +++ b/frontend/src/modules/servMgt/views/rejectRecvList.vue @@ -91,7 +91,7 @@ export default { ], grid: { url: '/api/v1/bo/servMgt/rejectRecvList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, initialRequest: false, @@ -155,12 +155,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/stats/views/BsnmDayList.vue b/frontend/src/modules/stats/views/BsnmDayList.vue index 22945ce..a2e2efb 100644 --- a/frontend/src/modules/stats/views/BsnmDayList.vue +++ b/frontend/src/modules/stats/views/BsnmDayList.vue @@ -139,7 +139,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/stats/bsnmDayList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -411,12 +411,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/stats/views/BsnmMonthList.vue b/frontend/src/modules/stats/views/BsnmMonthList.vue index 7812fae..74fdbe6 100644 --- a/frontend/src/modules/stats/views/BsnmMonthList.vue +++ b/frontend/src/modules/stats/views/BsnmMonthList.vue @@ -139,7 +139,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/stats/bsnmMonthList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: false, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -415,12 +415,16 @@ export default { // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, beforeRouteLeave(to, from, next) { diff --git a/frontend/src/modules/sysMgt/views/AdminList.vue b/frontend/src/modules/sysMgt/views/AdminList.vue index 33fafe6..15a9a86 100644 --- a/frontend/src/modules/sysMgt/views/AdminList.vue +++ b/frontend/src/modules/sysMgt/views/AdminList.vue @@ -128,12 +128,12 @@ export default { cate2Code: '', totalItems: 0, // 테이블 리스트 데이터 - perPageCnt: 20, + perPageCnt: 50, searchType1: '', searchType2: '', grid: { url: '/api/v1/bo/sysMgt/adminList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, isCheckbox: true, // true:첫번째 컬럼 앞에 체크박스 생성 / false:체크박스 제거 initialRequest: false, @@ -188,12 +188,16 @@ export default { const getCondition = this.$store.getters['searchcondition/getSearchCondition']; // store에 저장된 페이지 정보 및 검색 조건을 불러오기 let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); }, methods: { diff --git a/frontend/src/modules/sysMgt/views/BatchDetail.vue b/frontend/src/modules/sysMgt/views/BatchDetail.vue index 14017ba..f9f970c 100644 --- a/frontend/src/modules/sysMgt/views/BatchDetail.vue +++ b/frontend/src/modules/sysMgt/views/BatchDetail.vue @@ -197,7 +197,7 @@ export default { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; - isKeep = true; + //isKeep = true; } this.search(isKeep); }, diff --git a/frontend/src/modules/sysMgt/views/BatchList.vue b/frontend/src/modules/sysMgt/views/BatchList.vue index 729d55f..afcfd74 100644 --- a/frontend/src/modules/sysMgt/views/BatchList.vue +++ b/frontend/src/modules/sysMgt/views/BatchList.vue @@ -96,11 +96,14 @@ export default { let page = 1; const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + page = 1; this.search(isKeep); }, diff --git a/frontend/src/modules/sysMgt/views/NotiList.vue b/frontend/src/modules/sysMgt/views/NotiList.vue index 886d60a..a869622 100644 --- a/frontend/src/modules/sysMgt/views/NotiList.vue +++ b/frontend/src/modules/sysMgt/views/NotiList.vue @@ -86,7 +86,7 @@ :url="grid.url" :columns="grid.columns" :pagePerRows="grid.pagePerRows" - :initialRequest="grid.pagination" + :initialRequest="grid.initialRequest" :pagination="grid.pagination" :noDataStr="grid.noDataStr" :addCls="grid.addCls" @@ -151,7 +151,7 @@ export default { totalItems: 0, grid: { url: '/api/v1/bo/sysMgt/notiList', - pagePerRows: 20, + pagePerRows: 50, pagination: true, addCls: 'box_OFvis', initialRequest: false, @@ -211,12 +211,16 @@ export default { let page = 1; const getCondition = this.$store.getters['searchcondition/getSearchCondition']; let isKeep = false; + /* if (getCondition) { this.grid.pagePerRows = getCondition.perPage; this.grid.params = getCondition.params; page = getCondition.page; isKeep = true; } + */ + this.grid.pagePerRows = 50; + page = 1; this.search(isKeep); },