mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 05:12:34 +09:00
226 lines
7.4 KiB
Vue
226 lines
7.4 KiB
Vue
<template>
|
|
|
|
<div class="contents">
|
|
<div class="contents_wrap">
|
|
<div class="top_wrap">
|
|
<h3 class="title">발신번호 승인</h3>
|
|
<p class="breadcrumb">발신번호관리 > 발신번호 승인</p>
|
|
</div>
|
|
<div class="search_wrap">
|
|
<div class="group">
|
|
<div class="select_box">
|
|
<label for="right" class="label">상태</label>
|
|
<select name="" id="" v-model="searchType1" @keyup.enter="search">
|
|
<option value="">전체</option>
|
|
<option value="01">승인대기</option>
|
|
<option value="02">처리완료</option>
|
|
</select>
|
|
</div>
|
|
<div class="input_box">
|
|
<label for="right" class="label">사업자번호</label>
|
|
<input class="search-box" type="text" id="search" placeholder="검색어 입력" v-model.trim="grid.params.searchText1"
|
|
@keypress="onlyNum" @input="onlyNum" maxlength="10" @keyup.enter="search"/>
|
|
</div>
|
|
<div class="select_box id">
|
|
<label for="right" class="label">명의자 구분</label>
|
|
<select name="" id="" v-model="searchType2" @keyup.enter="search">
|
|
<option value="">전체</option>
|
|
<option value="01">사업자</option>
|
|
<option value="02">타사업자</option>
|
|
</select>
|
|
</div>
|
|
<div class="input_box">
|
|
<label for="right" class="label">고객사명</label>
|
|
<input class="search-box" type="text" id="search" placeholder="검색어 입력"
|
|
v-model.trim="grid.params.searchText2"
|
|
@keyup.enter="search" maxlength="100"/>
|
|
</div>
|
|
<button type="button" class="button grey" @click="search">조회</button>
|
|
</div>
|
|
</div>
|
|
<div class="info">
|
|
<div class="count">총 <span>{{ totalItems.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') }}</span>건
|
|
<div class="select_box NumberSe">
|
|
<select name="" id="" v-model="perPageCnt" @change="changePerPage()">
|
|
<option value="20">20</option>
|
|
<option value="50" selected>50</option>
|
|
<option value="100">100</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="table">
|
|
<custom-grid
|
|
ref="table"
|
|
:totalItems="'totalItems'"
|
|
:url="grid.url"
|
|
:pagePerRows="grid.pagePerRows"
|
|
:initialRequest="grid.initialRequest"
|
|
:pagination="grid.pagination"
|
|
:isCheckbox="grid.isCheckbox"
|
|
:columns="grid.columns"
|
|
:noDataStr="grid.noDataStr"
|
|
:addCls="grid.addCls"
|
|
:header="grid.headder"
|
|
></custom-grid>
|
|
</div>
|
|
|
|
<appr-detail-pop ref="apprDetailPop"/>
|
|
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import customGrid from '@/components/CustomGrid';
|
|
import ApprDetailPop from "@/modules/sendNumMgt/components/ApprDetailPop";
|
|
import {utils_mixin, chkPattern2} from '../service/mixins';
|
|
|
|
class CustomATagRenderer {
|
|
constructor(props) {
|
|
this.props = props;
|
|
const el = document.createElement('a');
|
|
el.href = 'javascript:void(0);';
|
|
el.className = 'btn_text';
|
|
el.innerText = String(props.colValue)
|
|
this.el = el;
|
|
}
|
|
|
|
getElement() {
|
|
return this.el;
|
|
}
|
|
|
|
addEvent(selEl) {
|
|
selEl.addEventListener("click", () => {
|
|
const {callback} = this.props["cgrido" + this.props.colName].options;
|
|
callback(this.props);
|
|
});
|
|
}
|
|
}
|
|
|
|
export default {
|
|
name: 'apprList',
|
|
mixins: [utils_mixin, chkPattern2],
|
|
data() {
|
|
return {
|
|
row: {},
|
|
authType: [],
|
|
statType: [],
|
|
cate2Code: "",
|
|
totalItems: 0,
|
|
// 테이블 리스트 데이터
|
|
perPageCnt: 50,
|
|
searchType1: '',
|
|
searchType2: '',
|
|
grid: {
|
|
url: '/api/v1/bo/sendNumMgt/apprList',
|
|
perPage: 50,
|
|
pagination: true,
|
|
isCheckbox: false,
|
|
initialRequest: false,
|
|
addCls: 'box_OFvis',
|
|
columns: [
|
|
{name: 'no', header: 'NO', align: 'center', width: '5%'},
|
|
{name: 'regReqNo', hidden: true},
|
|
{name: 'regDt', header: '요청일', align: 'center', width: '12%'},
|
|
{name: 'adminId', header: '관리자ID', align: 'center', width: '10%'},
|
|
{name: 'bizrno', header: '사업자번호', align: 'center', width: '13%'},
|
|
{name: 'nmineeDivCd', header: '명의자 구분', align: 'center', width: '10%'},
|
|
{name: 'custNm', header: '고객사명', align: 'center', width: '10%'},
|
|
{
|
|
name: 'reqCnt', header: '요청건수', align: 'center', width: '6%', renderer: {
|
|
type: CustomATagRenderer
|
|
, options: {
|
|
callback: this.apprDetail,
|
|
}
|
|
}
|
|
},
|
|
{name: 'apvCnt', header: '승인건수', align: 'center', width: '6%'},
|
|
{name: 'rejtCnt', header: '반려건수', align: 'center', width: '6%'},
|
|
{name: 'reqSttusCd', header: '상태', align: 'center', width: '10%'},
|
|
{name: 'cmpltDt', header: '완료일', width: '12%'}
|
|
],
|
|
noDataStr: '검색 결과가 없습니다.',
|
|
params: {
|
|
searchType1: '',
|
|
searchType2: '',
|
|
searchText1: '',
|
|
searchText2: '',
|
|
},
|
|
excelHeader: []
|
|
}
|
|
};
|
|
},
|
|
components: {
|
|
customGrid: customGrid,
|
|
ApprDetailPop
|
|
},
|
|
created() {
|
|
},
|
|
destroyed() {
|
|
this.$store.commit('searchcondition/updateSearchCondition', {
|
|
page: 1,
|
|
perPage: 50,
|
|
params: {
|
|
searchType1: '',
|
|
searchType2: '',
|
|
searchText1: '',
|
|
searchText2: ''
|
|
}
|
|
});
|
|
},
|
|
mounted() {
|
|
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.search(isKeep);
|
|
},
|
|
methods: {
|
|
search: function (isKeep) {
|
|
this.grid.params.searchType1 = this.searchType1
|
|
this.grid.params.searchType2 = this.searchType2
|
|
this.grid.perPage = this.perPageCnt
|
|
this.$refs.table.search(this.grid.params, isKeep);
|
|
this.sendStoreData();
|
|
},
|
|
sendStoreData: function () {
|
|
const getP = this.$refs.table.getPagination();
|
|
this.$store.commit('searchcondition/updateSearchCondition', {
|
|
page: getP._currentPage,
|
|
perPage: this.perPageCnt,
|
|
params: {
|
|
searchType1: '',
|
|
searchType2: '',
|
|
searchText1: ''
|
|
}
|
|
});
|
|
|
|
const getCondition = this.$store.getters['searchcondition/getSearchCondition'];
|
|
},
|
|
apprDetail(props) {
|
|
this.$refs.apprDetailPop.apprDetailPopOpen(props)
|
|
},
|
|
changePerPage: function () { // 페이지당 조회할 개수
|
|
this.grid.pagePerRows = this.perPageCnt;
|
|
},
|
|
},
|
|
beforeRouteLeave(to, from, next) {
|
|
|
|
const getP = this.$refs.table.getPagination();
|
|
this.$store.commit('searchcondition/updateSearchCondition', {
|
|
page: getP._currentPage,
|
|
perPage: this.perPageCnt,
|
|
params: this.grid.params
|
|
});
|
|
// 라우트 하기전 실행
|
|
next();
|
|
}
|
|
};
|
|
</script> |