|
@@ -214,6 +214,9 @@
|
|
|
#topSearch span{
|
|
#topSearch span{
|
|
|
font-size: 18px;
|
|
font-size: 18px;
|
|
|
}
|
|
}
|
|
|
|
|
+ .tab01.active,.tab02.active{
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|
|
|
<div class="block" style="margin-left: -240px; width: 1170px;">
|
|
<div class="block" style="margin-left: -240px; width: 1170px;">
|
|
|
<div class="tip-body">
|
|
<div class="tip-body">
|
|
@@ -228,9 +231,9 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="condition block open01" id="resultTop">
|
|
<div class="condition block open01" id="resultTop">
|
|
|
<strong class="f14" style="font-weight: bold;">| 企业信息 (<span class="f14 text-inverse" ng-bind="total"></span>)</strong>
|
|
<strong class="f14" style="font-weight: bold;">| 企业信息 (<span class="f14 text-inverse" ng-bind="total"></span>)</strong>
|
|
|
- <a href="javascript:void(0);" class="open">收起<i class="fa fa-angle-up"></i></a>
|
|
|
|
|
|
|
+ <a href="javascript:void(0);" ng-click="$open01 = !$open01"><span ng-bind="$open01 ? '展开':'收起'"></span><i class="fa fa-angle-down" ng-class="{'fa-angle-down':$open01, 'fa-angle-up': !$open01}"></i></a>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="tab01">
|
|
|
|
|
|
|
+ <div class="tab01" ng-class="{'active': $open01}">
|
|
|
<table class="enterprise-table block" ng-table="tableParams">
|
|
<table class="enterprise-table block" ng-table="tableParams">
|
|
|
<thead>
|
|
<thead>
|
|
|
<tr class="sep-row">
|
|
<tr class="sep-row">
|
|
@@ -294,9 +297,9 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div class="condition block open02" id="resultTop">
|
|
<div class="condition block open02" id="resultTop">
|
|
|
<strong>| 产品信息 (<span class="text-inverse" ng-bind="prodtotal"></span>)</strong>
|
|
<strong>| 产品信息 (<span class="text-inverse" ng-bind="prodtotal"></span>)</strong>
|
|
|
- <a href="javascript:void(0);" class="open">收起<i class="fa fa-angle-up"></i></a>
|
|
|
|
|
|
|
+ <a href="javascript:void(0);" ng-click="$open02 = !$open02"><span ng-bind="$open02 ? '展开':'收起'"></span><i class="fa fa-angle-down" ng-class="{'fa-angle-down':$open02, 'fa-angle-up': !$open02}"></i></a>
|
|
|
</div>
|
|
</div>
|
|
|
- <div class="tab02">
|
|
|
|
|
|
|
+ <div class="tab02" ng-class="{'active': $open02}">
|
|
|
<table class="enterprise-table block" ng-table="prodTableParams">
|
|
<table class="enterprise-table block" ng-table="prodTableParams">
|
|
|
<tbody ng-if="prodTableParams.total() == 0">
|
|
<tbody ng-if="prodTableParams.total() == 0">
|
|
|
<tr>
|
|
<tr>
|
|
@@ -350,7 +353,7 @@
|
|
|
</table>
|
|
</table>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
-<script>
|
|
|
|
|
|
|
+<!--<script>
|
|
|
$(function() {
|
|
$(function() {
|
|
|
//展开收缩功能
|
|
//展开收缩功能
|
|
|
$('.open01 .open').click(function () {
|
|
$('.open01 .open').click(function () {
|
|
@@ -374,4 +377,4 @@
|
|
|
}
|
|
}
|
|
|
});
|
|
});
|
|
|
})
|
|
})
|
|
|
-</script>
|
|
|
|
|
|
|
+</script>-->
|