| | |
| | | <span class="textColor">+{{ dialCode }}</span> |
| | | <img src="../../assets/image/login/more.png" alt=""> |
| | | </div> |
| | | <input autocomplete="new-password" class="inputBackground" v-if="typeText == 'password'" :type="passwordType" |
| | | :placeholder="placeholderText" :value="value" @input="onInput" :disabled="disabled"> |
| | | <input autocomplete="new-password" class="inputBackground" v-if="typeText == 'password'" |
| | | :type="passwordType" :placeholder="placeholderText" :value="value" @input="onInput" |
| | | :disabled="disabled"> |
| | | <input class="inputBackground" v-else type="text" :disabled="disabled" :placeholder="placeholderText" |
| | | :value="value" @input="onInput"> |
| | | <div class="rightCon"> |
| | | <div class="closeBox" v-if="clearBtn" @click="clear"><img src="../../assets/image/login/clear.png" alt=""> |
| | | <div class="closeBox" v-if="clearBtn" @click="clear"><img src="../../assets/image/login/clear.png" |
| | | alt=""> |
| | | </div> |
| | | <div class="eyeBox" v-if="typeText == 'password'" @click="changeType"> |
| | | <img v-if="passwordType == 'password'" src="../../assets/image/login/_close.png" alt=""> |
| | |
| | | </script> |
| | | |
| | | <style lang="scss" scoped> |
| | | @import "@/assets/theme/index.scss"; |
| | | |
| | | .inputCom { |
| | | color: $text_color4; |
| | | padding-bottom: 44px; |
| | | |
| | | @include themify() { |
| | | color: themed("text_color4"); |
| | | } |
| | | |
| | | .iptbox { |
| | | height: 88px; |
| | |
| | | height: 100%; |
| | | border: none; |
| | | padding-left: 20px; |
| | | color: $text_color; |
| | | |
| | | @include themify() { |
| | | color: themed("text_color"); |
| | | } |
| | | } |
| | | |
| | | .rightCon { |
| | |
| | | |
| | | .tips { |
| | | font-size: 26px; |
| | | color: $text_color1; |
| | | margin-top: 18px; |
| | | |
| | | @include themify() { |
| | | color: themed("text_color1"); |
| | | } |
| | | } |
| | | |
| | | input:-webkit-autofill { |
| | |
| | | } |
| | | |
| | | input::-webkit-input-placeholder { |
| | | color: $text_color1; |
| | | @include themify() { |
| | | color: themed("text_color1"); |
| | | } |
| | | } |
| | | |
| | | .icon { |
| | | transform: scale(2); |
| | | display: inline-block; |
| | | }</style> |
| | | } |
| | | </style> |