mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 19:09:49 +09:00
admin_chrg 등록 조회부분 수정
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user