|
@@ -28,8 +28,8 @@
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
|
|
- @media (max-width:600px)
|
|
|
|
- { .tabs-container ul.nav-tabs li {
|
|
|
|
|
|
+ @media (max-width: 600px) {
|
|
|
|
+ .tabs-container ul.nav-tabs li {
|
|
width: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -74,7 +74,7 @@
|
|
background-color: #f5f9fc;
|
|
background-color: #f5f9fc;
|
|
}
|
|
}
|
|
|
|
|
|
- .ibox-content > .col-md-12, .ibox-content > .col-md-12 > .row{
|
|
|
|
|
|
+ .ibox-content > .col-md-12, .ibox-content > .col-md-12 > .row {
|
|
margin: auto;
|
|
margin: auto;
|
|
height: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
@@ -82,7 +82,7 @@
|
|
.ibox-content .panel-body {
|
|
.ibox-content .panel-body {
|
|
background-color: #ffffff;
|
|
background-color: #ffffff;
|
|
height: 100%;
|
|
height: 100%;
|
|
- overflow-y:auto;
|
|
|
|
|
|
+ overflow-y: auto;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
@endsection
|
|
@endsection
|
|
@@ -114,7 +114,7 @@
|
|
|
|
|
|
<div class="col-xl-11 col-lg-10 col-md-9">
|
|
<div class="col-xl-11 col-lg-10 col-md-9">
|
|
<div class="row">
|
|
<div class="row">
|
|
- <div class="col-md-6" >
|
|
|
|
|
|
+ <div class="col-md-6">
|
|
<h3 style="font-weight: 700">{{ $data->companyName }}</h3>
|
|
<h3 style="font-weight: 700">{{ $data->companyName }}</h3>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@@ -126,12 +126,12 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
- <div class="row company_baseinfo" >
|
|
|
|
|
|
+ <div class="row company_baseinfo">
|
|
<div class="col-md-4">
|
|
<div class="col-md-4">
|
|
<h3><label for="">经营状态:</label>{{ $data->openStatus }}</h3>
|
|
<h3><label for="">经营状态:</label>{{ $data->openStatus }}</h3>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="col-sm-4">
|
|
- <h3><label>成立日期:</label>{{ $data->startDate }}</h3>
|
|
|
|
|
|
+ <h3><label>成立日期:</label>{{ $data->startDate }}</h3>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="col-md-4">
|
|
<h3><label for="">公司类型:</label>{{ $data->entType }}</h3>
|
|
<h3><label for="">公司类型:</label>{{ $data->entType }}</h3>
|
|
@@ -256,17 +256,73 @@
|
|
|
|
|
|
<div class="panel-body">
|
|
<div class="panel-body">
|
|
<h3>股东信息</h3>
|
|
<h3>股东信息</h3>
|
|
|
|
+
|
|
|
|
+ <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
|
|
|
|
+ <tr>
|
|
|
|
+ <th>股东姓名</th>
|
|
|
|
+ <th>持股比例</th>
|
|
|
|
+ <th>认缴出资</th>
|
|
|
|
+ <th>实缴出资</th>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ @foreach($data->shareholders() as $item)
|
|
|
|
+ <tr>
|
|
|
|
+ <td>{{ $item->username }}</td>
|
|
|
|
+ <td>{{ $item->insto }}</td>
|
|
|
|
+ <td>{{ $item->amount }}</td>
|
|
|
|
+ <td>{{ $item->amount_paid or '-'}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </table>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="panel-body">
|
|
<div class="panel-body">
|
|
<h3>主要人员</h3>
|
|
<h3>主要人员</h3>
|
|
|
|
+
|
|
|
|
+ <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
|
|
|
|
+ <tr>
|
|
|
|
+ <th>序号</th>
|
|
|
|
+ <th>姓名</th>
|
|
|
|
+ <th>职务</th>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ @foreach($data->mainpersons() as $key => $item)
|
|
|
|
+ <tr>
|
|
|
|
+ <td>{{ $key+1 }}</td>
|
|
|
|
+ <td>{{ $item->username }}</td>
|
|
|
|
+ <td>{{ $item->post }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{-- 变更纪录 --}}
|
|
{{-- 变更纪录 --}}
|
|
<div id="tab-2" class="tab-pane">
|
|
<div id="tab-2" class="tab-pane">
|
|
<div class="panel-body">
|
|
<div class="panel-body">
|
|
- <strong>表更纪录</strong>
|
|
|
|
|
|
+ <h3>变更纪录</h3>
|
|
|
|
+
|
|
|
|
+ <table class="table table-striped table-bordered table-hover dataTables-example dataTable">
|
|
|
|
+ <tr>
|
|
|
|
+ <th>序号</th>
|
|
|
|
+ <th>变更日期</th>
|
|
|
|
+ <th>变更项目</th>
|
|
|
|
+ <th>变更前</th>
|
|
|
|
+ <th>变更后</th>
|
|
|
|
+ </tr>
|
|
|
|
+
|
|
|
|
+ @foreach($data->changeds() as $key =>$item)
|
|
|
|
+ <tr>
|
|
|
|
+ <td>{{ $key+1 }}</td>
|
|
|
|
+ <td>{{ $item->changed_time }}</td>
|
|
|
|
+ <td>{{ $item->changed_name }}</td>
|
|
|
|
+ <td>{{ $item->changed_before }}</td>
|
|
|
|
+ <td>{{ $item->changed_after }}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ @endforeach
|
|
|
|
+ </table>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|