Commit 718a1f4f authored by caixingbing's avatar caixingbing

*

parent cee03391
...@@ -80,6 +80,11 @@ ...@@ -80,6 +80,11 @@
<span style="padding-right: 28px;">{{ scope.row.amount }}</span> <span style="padding-right: 28px;">{{ scope.row.amount }}</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>
......
...@@ -26,6 +26,11 @@ ...@@ -26,6 +26,11 @@
<el-table-column <el-table-column
prop="userJobs" prop="userJobs"
label="职务"></el-table-column> label="职务"></el-table-column>
<template slot="empty">
<div style="padding: 30px 0">
<no-data />
</div>
</template>
</el-table> </el-table>
</div> </div>
</div> </div>
...@@ -33,6 +38,7 @@ ...@@ -33,6 +38,7 @@
<script> <script>
import {keymembers} from "@/api/detail/party-a/overview" import {keymembers} from "@/api/detail/party-a/overview"
import NoData from '../../component/noData'
export default { export default {
name: 'Senior', name: 'Senior',
...@@ -48,6 +54,9 @@ export default { ...@@ -48,6 +54,9 @@ export default {
tableData:[] tableData:[]
} }
}, },
components: {
NoData
},
created() { created() {
this.handleQuery() this.handleQuery()
}, },
......
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