在一个页面想要复用表单弹出窗,第一次是正常的,第二次打开弹窗还没输入数据却带上了验证状态,怎么去掉这个验证状态
<div id="compAdd" class="fade modal company-add popup" tabindex="-1" role="dialog" aria-labelledby="gridSystemModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4>公司信息</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<form name="compForm" novalidate ng-submit="saveComp()">
<div class="popup-content" id="companypopupcontent">
<label for="">
<span class="companyspan"><i>*</i>公司名称 :</span>
<input type="text" class="js_compName" name="name" ng-model="name" ng-maxlength="50" ng-pattern="user_name" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="nameFlag" id="companyerror">公司名称是必填项</span>
<span class="error" ng-show="compForm.name.$error.maxlength && focused">最多输入50个字符</span>
<span class="error" ng-show="compForm.name.$error.pattern && focused">
不能包含特殊字符</span>
</label>
<label for="">
<span class="companyspan">公司简称 :</span>
<input type="text" class="js_compAbbreviation" name="compAbbreviation" ng-model="compAbbreviation" ng-maxlength="50" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.compAbbreviation.$error.maxlength && focused">最多输入50个字符</span>
</label>
<label for="">
<span class="companyspan">公司类型 :</span>
<select name="key" class="js_comptype">
<option value="">请选择</option>
<option value="{{type.code}}"
ng-repeat="type in companytype">{{type.codeName}}
</option>
</select>
</label>
<label for="">
<span class="companyspan">上级公司 :</span>
<select name="parentId" class="js_parentid"">
<option value="">请选择</option>
<option value="{{p.id}}"
ng-repeat="p in compParentLists">
{{p.compName}}
</option>
</select>
</label>
<label for="">
<span class="companyspan">公司地址 :</span>
<input type="text" class="js_compaddress" name="compaddress" ng-model="compaddress" ng-maxlength="50" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.compaddress!='' && compForm.compaddress.$error.maxlength && focused">最多输入50个字符</span>
</label>
<label for="">
<span class="companyspan">联系电话 :</span>
<input type="text" class="js_compphoneNo" name="phoneNo" ng-model="phoneNo" ng-pattern="cell" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.phoneNo!='' && compForm.phoneNo.$error.pattern && focused">联系电话格式不正确</span>
</label>
<label for="">
<span class="companyspan">邮箱 :</span>
<input type="text" class="js_compemail" name="email" ng-model="email" ng-maxlength="50" ng-pattern="user_email" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.email.$error.maxlength && focused">最多输入50个字符</span>
<span class="error" ng-show="compForm.email!='' && compForm.email.$error.pattern && focused">邮箱格式不正确</span>
</label>
<label for="">
<span class="companyspan">传真 :</span>
<input type="text" class="js_compfaxNo" name="faxNo" ng-model="faxNo" ng-pattern="tel_fax" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.faxNo!='' && compForm.faxNo.$error.pattern && focused">传真格式不正确</span>
</label>
<label for="">
<span class="companyspan">邮政编码 :</span>
<input type="text" class="js_comppostcode" name="postcode" ng-model="postcode" ng-pattern="pos_number" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.postcode!='' && compForm.postcode.$error.pattern && focused">邮政编码格式不正确</span>
</label>
<label for="">
<span class="companyspan">拥有者 :</span>
<input class="js_compowner" name="compowner" ng-model="compowner" ng-maxlength="50" ng-blur="focused=true" ng-focus="focused=false">
<span class="error" ng-show="compForm.compowner!='' && compForm.compowner.$error.maxlength && focused">最多输入50个字符</span>
</label>
</div>
<div class="popup-footer">
<span ng-show="satus">{{msg}}</span>
<button type="button" class="btn btn-default"
data-dismiss="modal"
aria-label="Close">取消</button>
<button type="submit" class="btn btn-primary" ng-disabled="compForm.$invalid">保存</button>
</div>
</form>
</div>
</div>
</div>
</div>