mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
暂无数据
This commit is contained in:
parent
130e151a06
commit
6df2b5735b
@ -88,7 +88,7 @@
|
||||
</template>
|
||||
</ItemList>
|
||||
<div v-else style="width: 100%">
|
||||
<el-empty description="暂无数据" />
|
||||
<el-empty description="暂无数据" :image="nodata" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -96,6 +96,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import nodata from "@/assets/img/no-data.png";
|
||||
import { onMounted, ref } from "vue";
|
||||
import { ElMessage } from "element-plus";
|
||||
import { httpGet, httpPost } from "@/utils/http";
|
||||
|
@ -126,7 +126,7 @@
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-empty description="暂无数据" v-else />
|
||||
<el-empty description="暂无数据" v-else :image="nodata" />
|
||||
|
||||
<h2 class="headline">消费账单</h2>
|
||||
|
||||
@ -190,6 +190,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import nodata from "@/assets/img/no-data.png";
|
||||
import { onMounted, ref } from "vue";
|
||||
import { ElMessage } from "element-plus";
|
||||
import { httpGet, httpPost } from "@/utils/http";
|
||||
|
Loading…
Reference in New Issue
Block a user