mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 20:08:41 +09:00
수정건 수정
This commit is contained in:
@@ -15,7 +15,8 @@
|
||||
</select>
|
||||
</div>
|
||||
<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">
|
||||
<option value="custNm">고객사명</option>
|
||||
<option value="bizNo">사업자번호</option>
|
||||
@@ -23,7 +24,7 @@
|
||||
</select>
|
||||
</div>
|
||||
<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"
|
||||
@keyup.enter="search" maxlength="100"/>
|
||||
</div>
|
||||
|
||||
@@ -14,14 +14,16 @@
|
||||
<tr>
|
||||
<th>마당 ID</th>
|
||||
<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>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>비밀번호</th>
|
||||
<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>
|
||||
<th>비밀번호 확인</th>
|
||||
@@ -100,6 +102,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isFocused: false,
|
||||
row: {},
|
||||
authType: [],
|
||||
insertType: 0,
|
||||
|
||||
Reference in New Issue
Block a user