guhongwei il y a 5 ans
Parent
commit
ed5c7af270
1 fichiers modifiés avec 31 ajouts et 0 suppressions
  1. 31 0
      src/layout/noList.vue

+ 31 - 0
src/layout/noList.vue

@@ -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>