수정건 수정

This commit is contained in:
USER
2022-09-05 16:09:25 +09:00
parent 5591a1a1aa
commit 3f904ba38c
2 changed files with 8 additions and 4 deletions

View File

@@ -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,