admin_chrg 등록 조회부분 수정

This commit is contained in:
2023-03-29 11:24:24 +09:00
parent c3421a81ab
commit f1b495d1b1
2 changed files with 21 additions and 17 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div>
<div class="dimmed insertChrgModal" @click="insertChrgClose()"></div>
<div class="dimmed-list insertChrgModal" @click="insertChrgClose()"></div>
<!-- 발신번호 등록 (타사업자)-->
<div class="popup insertChrgModal popup_form register w700">
<div class="pop-head">
@@ -98,8 +98,8 @@
<button class="btn-pcolor" @click="saveChrg()">저장</button>
<button class="btn-default" @click="insertChrgClose()">취소</button>
</div>
<user-list-pop ref="userListPop" :send-data="childData" @event-data="setChildData" />
</div>
<user-list-pop ref="userListPop" :send-data="childData" @event-data="setChildData" />
</div>
</template>

View File

@@ -1,6 +1,6 @@
<template>
<div>
<!-- 관리자ID 조회 -->
<!-- 유저ID 조회 -->
<div class="popup popup_form modal44 popup_inside">
<div class="pop-head">
<h3 class="pop-tit">사용자ID 조회</h3>
@@ -12,20 +12,20 @@
<button type="button" class="button btn-p2color" @click="memberDetail">조회</button>
</div>
</div>
<table class="table-c">
<thead>
<tr>
<th>ID</th>
<th>고객사명</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, idx) in list">
<td>{{ item.userId }}</td>
<td><a href="javascript:void(0)" @click="setUserInfo(item)">{{ item.custNm }}</a></td>
</tr>
</tbody>
</table>
<table class="table-c">
<thead>
<tr>
<th>ID</th>
<th>고객사명</th>
</tr>
</thead>
<tbody>
<tr v-for="(item, idx) in list">
<td>{{ item.userId }}</td>
<td><a href="javascript:void(0)" @click="setUserInfo(item)">{{ item.custNm }}</a></td>
</tr>
</tbody>
</table>
<div class="popup-btn2">
<button class="btn-default" @click="UserListPopClose();">닫기</button>
</div>
@@ -53,6 +53,10 @@ export default {
},
methods : {
search: function(isKeep) {
},
setUserInfo (props){
this.$emit('event-data', props)