Commit 1f4fc125 authored by caixingbing's avatar caixingbing

*

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