mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 03:28:39 +09:00
[ publishing ] 전체 화면 검수
This commit is contained in:
@@ -26,12 +26,12 @@
|
||||
</div>
|
||||
<div class="input_box id">
|
||||
<label for="id1" class="label">ID</label>
|
||||
<input type="text" id="id1" placeholder="검색어 입력" v-model.trim="grid.params.searchText1"
|
||||
<input class="search-box" type="text" id="id1" placeholder="검색어 입력" v-model.trim="grid.params.searchText1"
|
||||
@keyup.enter="search" :readonly="!isFocused" @focus="isFocused = true" @blur="isFocused = false"/>
|
||||
</div>
|
||||
<div class="input_box">
|
||||
<label for="name" class="label">이름(대리점명)</label>
|
||||
<input type="text" id="name" placeholder="검색어 입력" v-model.trim="grid.params.searchText2"
|
||||
<input class="search-box" type="text" id="name" placeholder="검색어 입력" v-model.trim="grid.params.searchText2"
|
||||
@keyup.enter="search" :readonly="!isFocused" @focus="isFocused = true" @blur="isFocused = false"/>
|
||||
</div>
|
||||
<button type="button" class="button grey" @click="search">조회</button>
|
||||
@@ -120,19 +120,19 @@ export default {
|
||||
addCls: 'box_OFvis',
|
||||
|
||||
columns: [
|
||||
{name: 'no', header: 'NO', align: 'center', width: '6%'},
|
||||
{name: 'auth', header: '권한', align: 'center', width: '20%'},
|
||||
{name: 'name', header: '이름(대리점명)', align: 'center', width: '15%'},
|
||||
{name: 'no', header: 'No', align: 'center', width: '6%'},
|
||||
{name: 'auth', header: '권한', align: 'center', width: '18%'},
|
||||
{name: 'name', header: '이름(대리점명)', align: 'center', width: '18%'},
|
||||
{
|
||||
name: 'adminId', header: 'ID', align: 'center', width: '20%', renderer: {
|
||||
name: 'adminId', header: 'ID', align: 'center', width: '18%', renderer: {
|
||||
type: CustomATagRenderer
|
||||
, options: {
|
||||
callback: this.detailPop,
|
||||
}
|
||||
}
|
||||
},
|
||||
{name: 'adminStat', header: '상태', align: 'center', width: '15%', cls: 'td_line'},
|
||||
{name: 'regDt', header: '등록일', align: 'center', width: '20%'}
|
||||
{name: 'adminStat', header: '상태', align: 'center', width: '18%', cls: 'td_line'},
|
||||
{name: 'regDt', header: '등록일', align: 'center', width: '18%'}
|
||||
],
|
||||
noDataStr: '검색 결과가 없습니다.',
|
||||
params: {
|
||||
|
||||
Reference in New Issue
Block a user