Commit 1f4fc125 authored by caixingbing's avatar caixingbing

*

parent 27a4117b
...@@ -60,6 +60,11 @@ ...@@ -60,6 +60,11 @@
</el-table-column> </el-table-column>
</template> </template>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
</div> </div>
<div class="pagination-box" v-if="show_page && tableDataTotal>queryParams.pageSize"> <div class="pagination-box" v-if="show_page && tableDataTotal>queryParams.pageSize">
...@@ -69,7 +74,7 @@ ...@@ -69,7 +74,7 @@
</template> </template>
<script> <script>
import { tabFixed } from '@/utils' import NoData from '../component/noData'
export default { export default {
name: "Tables", name: "Tables",
props: { props: {
...@@ -114,6 +119,9 @@ export default { ...@@ -114,6 +119,9 @@ export default {
default: 1000000 default: 1000000
}, },
}, },
components: {
NoData
},
data() { data() {
return { return {
current_page: this.queryParams.pageNum, current_page: this.queryParams.pageNum,
......
...@@ -51,6 +51,7 @@ export default { ...@@ -51,6 +51,7 @@ export default {
} }
div{ div{
font-size: 16px; font-size: 16px;
line-height: 1;
color: #333333; color: #333333;
} }
span{ span{
......
...@@ -30,6 +30,11 @@ ...@@ -30,6 +30,11 @@
align="right" align="right"
label="占比"> label="占比">
</el-table-column> </el-table-column>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
</div> </div>
</div> </div>
......
...@@ -34,6 +34,11 @@ ...@@ -34,6 +34,11 @@
<span>{{scope.row.businessStatus || '--'}}</span> <span>{{scope.row.businessStatus || '--'}}</span>
</template> </template>
</el-table-column> </el-table-column>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
<el-table :data="shipData" border style="width: 100%" v-show="activeName=='second'"> <el-table :data="shipData" border style="width: 100%" v-show="activeName=='second'">
<el-table-column label="序号" width="55" align="left" fixed> <el-table-column label="序号" width="55" align="left" fixed>
...@@ -58,6 +63,11 @@ ...@@ -58,6 +63,11 @@
<el-table-column prop="investStartDate" label="成立日期"></el-table-column> <el-table-column prop="investStartDate" label="成立日期"></el-table-column>
<el-table-column prop="stockPercentage" label="股权占比"></el-table-column> <el-table-column prop="stockPercentage" label="股权占比"></el-table-column>
<el-table-column prop="shouldCapi" label="认缴出资额(万元)"></el-table-column> <el-table-column prop="shouldCapi" label="认缴出资额(万元)"></el-table-column>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
<div class="rela-more" v-show="activeName=='second'&& shipTotal>shipParams.pageSize"><span class="a-link" @click="handlePath">查看更多数据 ></span></div> <div class="rela-more" v-show="activeName=='second'&& shipTotal>shipParams.pageSize"><span class="a-link" @click="handlePath">查看更多数据 ></span></div>
</div> </div>
...@@ -67,9 +77,13 @@ ...@@ -67,9 +77,13 @@
<script> <script>
import {encodeStr, changePath} from "@/assets/js/common" import {encodeStr, changePath} from "@/assets/js/common"
import {bestStockPage, investment} from '@/api/detail/party-a/overview' import {bestStockPage, investment} from '@/api/detail/party-a/overview'
import NoData from '../../component/noData'
export default { export default {
name: 'Relationship', name: 'Relationship',
props: ['companyId', 'financial'], props: ['companyId', 'financial'],
components: {
NoData
},
data() { data() {
return { return {
encodeStr, encodeStr,
......
...@@ -28,6 +28,11 @@ ...@@ -28,6 +28,11 @@
<span>{{ scope.row.bl }}</span> <span>{{ scope.row.bl }}</span>
</template> </template>
</el-table-column> </el-table-column>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -36,9 +41,13 @@ ...@@ -36,9 +41,13 @@
<script> <script>
import * as echarts from 'echarts' import * as echarts from 'echarts'
import NoData from '../../component/noData'
export default { export default {
name: 'Risk', name: 'Risk',
props: ['statistic'], props: ['statistic'],
components: {
NoData
},
data() { data() {
return { return {
viewData:[ viewData:[
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment