From 4f912f23e61912cb3195ca168f23bb521bf8b309 Mon Sep 17 00:00:00 2001
From: Mr.Shi <1878285526@qq.com>
Date: 星期四, 21 九月 2023 13:37:16 +0800
Subject: [PATCH] 企业端
---
h5/components/noData.vue | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/h5/components/noData.vue b/h5/components/noData.vue
new file mode 100644
index 0000000..35c85b8
--- /dev/null
+++ b/h5/components/noData.vue
@@ -0,0 +1,27 @@
+<template>
+ <view class="no">
+ <image src="@/static/default_nodata@2x.png" mode="widthFix"></image>
+ </view>
+</template>
+
+<script>
+ export default {
+ name:"noData"
+ }
+</script>
+
+<style lang="scss" scoped>
+ .no {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ // margin-top: 36px;
+ padding: 36px 0;
+ box-sizing: border-box;
+ image {
+ width: 268px;
+ height: 268px;
+ }
+ }
+</style>
\ No newline at end of file
--
Gitblit v1.9.3