Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix(certification): (#554) 认证页面字数限制不符的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mutoe committed Oct 16, 2018
1 parent 1439dfb commit dbd426b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/components/common/TextareaInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default {
top: 0;
display: block;
font-size: 30px;
padding: 28px 0;
padding-bottom: 28px;
width: calc(~"100% - 20px");
height: 100%;
overflow: hidden;
Expand All @@ -68,8 +68,6 @@ export default {
.word-length {
display: block;
font-size: 22px;
margin-top: -18px;
padding-bottom: 18px;
text-align: right;
}
Expand Down
4 changes: 3 additions & 1 deletion src/page/profile/Certificate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
v-model.trim="orgFields.org_address"
:placeholder="formInfo[type].orgAddress.placeholder"
type="text"
maxlength="8">
maxlength="20">
</div>
<svg
v-show="orgFields.org_address.length > 0"
Expand Down Expand Up @@ -102,6 +102,8 @@
<textarea-input
id="desc"
v-model="fields.desc"
:maxlength="200"
:warnlength="150"
:placeholder="formInfo[type].desc.placeholder"/>
</div>
</div>
Expand Down

0 comments on commit dbd426b

Please sign in to comment.