mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 23:04:44 +09:00
수정건 수정
This commit is contained in:
@@ -15,7 +15,8 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="select_box">
|
<div class="select_box">
|
||||||
<label for="searchType" class="label">고객사명</label>
|
<!-- <label for="searchType" class="label">고객사명</label> -->
|
||||||
|
<label for="right" class="label">상세검색</label>
|
||||||
<select name="" id="searchType" v-model="searchType2" @keyup.enter="search">
|
<select name="" id="searchType" v-model="searchType2" @keyup.enter="search">
|
||||||
<option value="custNm">고객사명</option>
|
<option value="custNm">고객사명</option>
|
||||||
<option value="bizNo">사업자번호</option>
|
<option value="bizNo">사업자번호</option>
|
||||||
@@ -23,7 +24,7 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="input_box">
|
<div class="input_box">
|
||||||
<label for="search" class="label">검색어</label>
|
<!-- <label for="search" class="label">검색어</label> -->
|
||||||
<input type="text" id="id1" placeholder="검색어 입력" v-model.trim="grid.params.searchText1"
|
<input type="text" id="id1" placeholder="검색어 입력" v-model.trim="grid.params.searchText1"
|
||||||
@keyup.enter="search" maxlength="100"/>
|
@keyup.enter="search" maxlength="100"/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,14 +14,16 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>마당 ID</th>
|
<th>마당 ID</th>
|
||||||
<td class="input_search">
|
<td class="input_search">
|
||||||
<input type="text" placeholder="아이디 입력" v-model.trim="madangId" ref="madangId">
|
<input type="text" placeholder="아이디 입력" v-model.trim="madangId" ref="madangId"
|
||||||
|
@keyup.enter="search" :readonly="!isFocused" @focus="isFocused = true" @blur="isFocused = false">
|
||||||
<button type="button" class="button grey" @click="searchMadangId()">조회</button>
|
<button type="button" class="button grey" @click="searchMadangId()">조회</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>비밀번호</th>
|
<th>비밀번호</th>
|
||||||
<td><input type="password" @keypress="onlyPassword" @input="onlyPassword" required minlength="8"
|
<td><input type="password" @keypress="onlyPassword" @input="onlyPassword" required minlength="8"
|
||||||
maxlength="16" ref="_pwd1" v-model.trim="userPwd1"></td>
|
maxlength="16" ref="_pwd1" v-model.trim="userPwd1"
|
||||||
|
@keyup.enter="search" :readonly="!isFocused" @focus="isFocused = true" @blur="isFocused = false"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>비밀번호 확인</th>
|
<th>비밀번호 확인</th>
|
||||||
@@ -100,6 +102,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
isFocused: false,
|
||||||
row: {},
|
row: {},
|
||||||
authType: [],
|
authType: [],
|
||||||
insertType: 0,
|
insertType: 0,
|
||||||
|
|||||||
Reference in New Issue
Block a user