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> <template>
<div> <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="popup insertChrgModal popup_form register w700">
<div class="pop-head"> <div class="pop-head">
@@ -98,8 +98,8 @@
<button class="btn-pcolor" @click="saveChrg()">저장</button> <button class="btn-pcolor" @click="saveChrg()">저장</button>
<button class="btn-default" @click="insertChrgClose()">취소</button> <button class="btn-default" @click="insertChrgClose()">취소</button>
</div> </div>
<user-list-pop ref="userListPop" :send-data="childData" @event-data="setChildData" />
</div> </div>
<user-list-pop ref="userListPop" :send-data="childData" @event-data="setChildData" />
</div> </div>
</template> </template>

View File

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