@@ -0,0 +1,31 @@
+<template>
+ <div id="noList">
+ <el-row>
+ <el-col :span="24" class="noList">暂无数据</el-col>
+ </el-row>
+ </div>
+</template>
+
+<script>
+export default {
+ name: 'noList',
+ props: {},
+ components: {},
+ data: () => ({}),
+ created() {},
+ computed: {},
+ methods: {},
+};
+</script>
+<style lang="less" scoped>
+.noList {
+ height: 100px;
+ line-height: 100px;
+ padding: 5px 0;
+ text-align: center;
+ border-bottom: 1px dashed #ccc;
+ font-size: 30px;
+ color: #850000;
+}
+</style>