master
yuan 7 years ago
parent 455eedbcd5
commit 40d2e729a1

@ -284,9 +284,9 @@
ng-class="{'has-error':accountForm.contact_phone.$invalid && accountForm.contact_phone.$dirty || name_exist}">
<div class="input-group">
<span class="input-group-addon">+61</span>
<input type="number" name="contact_phone" required ng-model="partner.contact_phone"
class="form-control" style="display: inline"
placeholder="Your Phone" maxlength="15" ng-mouseleave="checkParams()" ng-mousedown="name_exist =false">
<input type="text" name="contact_phone" required ng-model="partner.contact_phone"
class="form-control" style="display: inline" onKeypress="return (/[\d.]/.test(String.fromCharCode(event.keyCode)))"
placeholder="Your Phone" maxlength="11" ng-mouseleave="checkParams()" ng-mousedown="name_exist =false">
<button type="button" class="btn btn-success button_width" style="display:inline;height: 34px;float: right;border-radius: 0px"
title="发送验证码" ng-click="sendVerificationCode()"
ng-bind="description" ng-disabled="canClick"></button>
@ -302,8 +302,9 @@
<div class="form-group has-feedback"
ng-class="{'has-error':accountForm.code.$invalid && accountForm.code.$dirty}">
<input class="form-control" type="number" ng-model="partner.phoneCodeKey" placeholder="Verification Code"
required maxlength="10" name="code" ng-click="checkParams()">
<input class="form-control" type="text" ng-model="partner.phoneCodeKey" placeholder="Verification Code"
onKeypress="return (/[\d.]/.test(String.fromCharCode(event.keyCode)))"
required maxlength="6" name="code" ng-click="checkParams()">
</div>
<div class="form-group has-feedback"
@ -423,8 +424,8 @@
<form novalidate name="bankForm" action="" method="post" ng-show="chooseArray[2]">
<div class="form-group has-feedback"
ng-class="{'has-error':bankForm.account_no.$invalid && bankForm.account_no.$dirty}">
<input type="number" class="form-control" ng-model="partner.bank_no" placeholder="Account No"
required maxlength="20"
<input type="text" class="form-control" ng-model="partner.bank_no" placeholder="Account No"
required maxlength="20" onKeypress="return (/[\d.]/.test(String.fromCharCode(event.keyCode)))"
name="account_no">
</div>

@ -488,12 +488,3 @@ body .dis_before:nth-child(5):before {
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="number"]{
-moz-appearance: textfield;
}

Loading…
Cancel
Save