细节处修改

This commit is contained in:
lqins
2024-12-22 12:37:32 +08:00
parent 0c1f650e9c
commit ab903e3cc1
14 changed files with 111 additions and 65 deletions

View File

@@ -41,7 +41,7 @@
</el-table-column>
</el-table>
</el-row>
<el-empty :image-size="100" v-else />
<el-empty :image-size="100" v-else :image="nodata" description="暂无数据" />
<div class="pagination">
<el-pagination
v-if="total > 0"
@@ -59,6 +59,8 @@
</template>
<script setup>
import nodata from "@/assets/img/no-data.png";
import { onMounted, ref } from "vue";
import { httpGet } from "@/utils/http";
import { ElMessage } from "element-plus";