Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
hager
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-12-16 10:34:10 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
0da0343f0bd3e4e1c5bdc6d31e36fcef19d865b0
0da0343f
1 parent
bdbc540e
fix 失焦时也要获取输入框数据
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/components/common/hagerInput.vue
src/components/common/hagerInput.vue
View file @
0da0343
<!--
* @Date: 2024-10-20 09:59:52
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-1
0-28 15:57:50
* @LastEditTime: 2024-1
2-16 10:33:09
* @FilePath: /hager/src/components/common/hagerInput.vue
* @Description: 文件描述
-->
...
...
@@ -9,7 +9,7 @@
<div :class="['hager-input-page', required ? 'required': 'normal']">
<div :class="['input-box', disable ? 'disable': '']">
<div class="typeIcon" :style="{backgroundImage: 'url('+typeIcon+')'}"></div>
<input class="input" :value="value" @input="onInput" :type="type === 'pwd' ? 'password': 'text'" :disabled="disable" :placeholder="placeholder" />
<input class="input" :value="value" @input="onInput"
@blur="onInput"
:type="type === 'pwd' ? 'password': 'text'" :disabled="disable" :placeholder="placeholder" />
<div v-if="reset" class="send" @click="resetPwd">发送验证码</div>
</div>
</div>
...
...
Please
register
or
login
to post a comment