|
|
|
<div ng-controller="System.SystemVerificationController">
|
|
|
|
<div hawtio-tabs></div>
|
|
|
|
<div class="container-content ">
|
|
|
|
<div class="container-fluid sj_fluid">
|
|
|
|
<div class="row clear fl">
|
|
|
|
<label>行政区划代码</label>
|
|
|
|
</div>
|
|
|
|
<div class="row clear fl">
|
|
|
|
<select class="form-control" ng-change="citySelect(x)" ng-model="x" ng-init="x='all'">
|
|
|
|
<option value="all">全部</option>
|
|
|
|
<option ng-repeat="city in cities">{{city}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="row clear fl">
|
|
|
|
<select class="form-control" ng-change="countrySelect(y)" ng-model="y" ng-init="y='all'">
|
|
|
|
<option value="all">全部</option>
|
|
|
|
<option ng-repeat="country in countries">{{country.name}}</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<div class="row clear fl">
|
|
|
|
<button class="btn pull-right sj_btn_grey " ng-disabled="!checkable" ng-click="check()">
|
|
|
|
<i class="glyphicon glyphicon-save"></i> 校验
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-12">
|
|
|
|
<table ng-show="tableData.length > 0" ng-table="tableParams" class="table table-condensed table-bordered table-striped">
|
|
|
|
<colgroup>
|
|
|
|
<col width="2%" />
|
|
|
|
</colgroup>
|
|
|
|
<tr ng-repeat="row in $data" ng-class="{'danger': row.checkResult == '否', 'success': row.checkResult == '是'}">
|
|
|
|
<td header="'headerCheckbox.html'">
|
|
|
|
<input type="checkbox" ng-model="checkboxes.items[row.id]" />
|
|
|
|
</td>
|
|
|
|
<td title="'验证结果'">{{row.checkResult}}</td>
|
|
|
|
<td title="'采集'">{{row.collection}}</td>
|
|
|
|
<td title="'支付信息标准表'">{{row.payResultLast}}</td>
|
|
|
|
<td title="'可执行标准表'">{{row.execResultLast}}</td>
|
|
|
|
<td title="'市'">{{row.cityName}}</td>
|
|
|
|
<td title="'区/县'">{{row.districtName}}</td>
|
|
|
|
<td title="'行政区划代码'">{{row.areaCode}}</td>
|
|
|
|
<td title="'更新'">
|
|
|
|
<button ng-show="row.collUpdate == '是'" class="btn sj_btn" ng-click="update(row)"> 是</button>
|
|
|
|
<span ng-hide="row.collUpdate == '是'">否</span>
|
|
|
|
</td>
|
|
|
|
<td title="'系统名称'">{{row.sysName}}</td>
|
|
|
|
<td title="'版本号'">{{row.dataVersion}}</td>
|
|
|
|
<td title="'联系人'">{{row.departmentManager}}</td>
|
|
|
|
<td title="'联系方式'">{{row.managerContacts}}</td>
|
|
|
|
<td title="'数据库类型'">{{row.dataBaseType}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div ng-hide="tableData.length > 0" class="col-sm-12 alert alert-warning sj_alert-warning">
|
|
|
|
<span class="help-block" >
|
|
|
|
当前没有汇总数据库可以选择,请先创建,可以点击创建汇总数据库按钮进行创建或从汇总页面中的服务器数据列表中启动已创建的汇总数据库!
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|