Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
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
2022-05-20 21:30:28 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
435ec5a115f741702a944342a5a4256ef264c597
435ec5a1
1 parent
331fb889
fix
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
src/views/business/index.vue
src/views/business/login.vue
src/views/business/index.vue
View file @
435ec5a
...
...
@@ -191,9 +191,9 @@ export default {
.bg-gradient {
background: linear-gradient(@base-color, @base-color) no-repeat;
/*调整下划线的宽度占百分之百 高度是3px */
background-size: 100%
3
px;
background-size: 100%
4
px;
/* 调整下划线的起始位置 左侧是0 上边是1.15em */
background-position: 0 1.1
5
em;
background-position: 0 1.1em;
}
.number {
display: block;
...
...
src/views/business/login.vue
View file @
435ec5a
...
...
@@ -19,7 +19,7 @@
@touchstart.stop="showKeyboard" />
<van-field v-else v-model="phone" name="phone" label="手机号" placeholder="手机号"
:rules="[{ validator, message: '请输入正确手机号' }]" />
<van-field v-model="code" center clearable name="code" label="短信验证码" placeholder="请输入短信验证码"
<van-field v-model="code" center clearable name="code"
type="digit"
label="短信验证码" placeholder="请输入短信验证码"
:formatter="formatter" :rules="[{ required: true, message: '请填写验证码' }]">
<template #button>
<van-button @click="sendCode" v-if="countDown.current.value.total === limit" size="small" type="primary" :disabled="disabled">
...
...
Please
register
or
login
to post a comment