|
|
|
@ -284,7 +284,7 @@
|
|
|
|
|
class="form-control" style="width: 80%;display: inline"
|
|
|
|
|
placeholder="Your Phone">
|
|
|
|
|
<button type="button" class="btn btn-success" style="width:20%;display:inline;height: 34px;float: right;border-radius: 0px"
|
|
|
|
|
title="发送验证码" ng-click="sendVerificationCode(partner.contact_phone)"
|
|
|
|
|
title="发送验证码" ng-click="sendVerificationCode()"
|
|
|
|
|
ng-bind="description" ng-disabled="canClick"></button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
@ -355,15 +355,33 @@
|
|
|
|
|
<input class="form-control" ng-model="partner.postcode" placeholder="Postcode" required
|
|
|
|
|
maxlength="50" name="postcode">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group has-feedback"
|
|
|
|
|
ng-class="{'has-error':companyForm.industry.$invalid && companyForm.industry.$dirty}">
|
|
|
|
|
<select class="form-control" name="industry"
|
|
|
|
|
ng-model="partner.industry"
|
|
|
|
|
id="industry-input" required
|
|
|
|
|
ng-options="industry.value as industry.label for industry in industries">
|
|
|
|
|
<option value="">Industry</option>
|
|
|
|
|
</select>
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-xs-12 margin-bottom">
|
|
|
|
|
<div class="form-group has-feedback" ng-class="{'has-error':companyForm.royalpayindustry.$invalid && companyForm.royalpayindustry.$dirty}">
|
|
|
|
|
<div class="dropdown">
|
|
|
|
|
<input id="dLabel" data-toggle="dropdown" data-target="#" class="form-control"
|
|
|
|
|
ng-model="industryLable" placeholder="Industry" required
|
|
|
|
|
maxlength="50" name="royalpayindustry">
|
|
|
|
|
<ul class="dropdown-menu multi-level" role="menu" aria-labelledby="dropdownMenu">
|
|
|
|
|
<li class="dropdown-submenu" ng-repeat="industry in royalpayindustry">
|
|
|
|
|
<a tabindex="-1" ng-model="industry.mccCode">{{industry.label}}</a>
|
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
|
<li><a tabindex="-1" href="javascript:;" ng-repeat="child in industry.children" ng-click="chooseIndustry(child)">{{child.label}}</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="form-group has-feedback"
|
|
|
|
|
ng-class="{'has-error':companyForm.royalpayindustry.$invalid && companyForm.royalpayindustry.$dirty}">
|
|
|
|
|
<input class="form-control" id="royalpayindustry" required
|
|
|
|
|
name="royalpayindustry" readonly
|
|
|
|
|
ng-model="partner.royalpayindustry"
|
|
|
|
|
multi-level-select-popup="royalpayindustry"
|
|
|
|
|
on-select="onRoyalPayIndustrySelect($selected)">
|
|
|
|
|
</div>-->
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-xs-12 margin-bottom">
|
|
|
|
|