|
@@ -14,7 +14,7 @@
|
|
|
<van-password-input :value="password" :focused="showKeyboard" @focus="showKeyboard = true" />
|
|
<van-password-input :value="password" :focused="showKeyboard" @focus="showKeyboard = true" />
|
|
|
<!-- 数字键盘 -->
|
|
<!-- 数字键盘 -->
|
|
|
<van-number-keyboard v-model="password" :show="showKeyboard" @blur="showKeyboard = false" maxlength="6" />
|
|
<van-number-keyboard v-model="password" :show="showKeyboard" @blur="showKeyboard = false" maxlength="6" />
|
|
|
- <div class="text2">忘记密码?</div>
|
|
|
|
|
|
|
+ <div class="text2" @click="$router.push('/tradingPassword')">忘记密码?</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="bottom van-safe-area-bottom" ref="bottom">
|
|
<div class="bottom van-safe-area-bottom" ref="bottom">
|
|
|
<van-notice-bar
|
|
<van-notice-bar
|
|
@@ -35,6 +35,8 @@ export default {
|
|
|
name: 'Top',
|
|
name: 'Top',
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
|
|
+ password: '',
|
|
|
|
|
+ showKeyboard: false,
|
|
|
list: [
|
|
list: [
|
|
|
{
|
|
{
|
|
|
title: '1. 作品寄售为单个作品价格?'
|
|
title: '1. 作品寄售为单个作品价格?'
|
|
@@ -59,6 +61,42 @@ export default {
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
|
|
+/deep/ .van-password-input {
|
|
|
|
|
+ margin: 0 0;
|
|
|
|
|
+ .van-password-input__security {
|
|
|
|
|
+ border: 1px solid #939599;
|
|
|
|
|
+ height: 42px;
|
|
|
|
|
+ border-radius: 2px;
|
|
|
|
|
+ li {
|
|
|
|
|
+ background-color: transparent;
|
|
|
|
|
+ &:not(:last-child) {
|
|
|
|
|
+ border-right: 1px solid #939599;
|
|
|
|
|
+ }
|
|
|
|
|
+ i {
|
|
|
|
|
+ background-color: #fff;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+/deep/.van-number-keyboard__body {
|
|
|
|
|
+ background-color: #4a4a4a;
|
|
|
|
|
+ .van-key {
|
|
|
|
|
+ background-color: @bg;
|
|
|
|
|
+ &:active {
|
|
|
|
|
+ background-color: @bg3;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.input {
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ .text1 {
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ line-height: 24px;
|
|
|
|
|
+ margin-bottom: 6px;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
.top {
|
|
.top {
|
|
|
/deep/ .van-password-input {
|
|
/deep/ .van-password-input {
|
|
|
margin: 10px 0;
|
|
margin: 10px 0;
|