|
@@ -22,8 +22,9 @@
|
|
|
></text>
|
|
></text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="no-data" v-if="isNoDataState">
|
|
<view class="no-data" v-if="isNoDataState">
|
|
|
- <image
|
|
|
|
|
- src="https://my-go-easy-im.oss-cn-shenzhen.aliyuncs.com/goeasy-im-%E6%B0%B4%E8%B4%9D%E5%95%86%E5%9F%8E/zhanwu_20250827104005_1720_6.png"
|
|
|
|
|
|
|
+ <image class="img"
|
|
|
|
|
+ :src="HTTP_REQUEST_URL_IMG+'noData.png'"
|
|
|
|
|
+ mode="widthFix"
|
|
|
/>
|
|
/>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="mores-txt flex" v-if="!goodScroll && !isNoDataState">
|
|
<view class="mores-txt flex" v-if="!goodScroll && !isNoDataState">
|
|
@@ -37,7 +38,7 @@
|
|
|
import {computed, ref} from 'vue';
|
|
import {computed, ref} from 'vue';
|
|
|
import { onLoad, onShow, onReachBottom } from "@dcloudio/uni-app";
|
|
import { onLoad, onShow, onReachBottom } from "@dcloudio/uni-app";
|
|
|
import { footprintList } from "@/api/merchant.js";
|
|
import { footprintList } from "@/api/merchant.js";
|
|
|
-
|
|
|
|
|
|
|
+import { HTTP_REQUEST_URL_IMG } from "@/config/app";
|
|
|
const records = ref([]);
|
|
const records = ref([]);
|
|
|
const loading = ref(false);
|
|
const loading = ref(false);
|
|
|
const goodScroll = ref(true);
|
|
const goodScroll = ref(true);
|
|
@@ -147,8 +148,11 @@ const toMerchant = (obj) => {
|
|
|
.no-data {
|
|
.no-data {
|
|
|
margin: 150rpx auto 0;
|
|
margin: 150rpx auto 0;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ min-height: 300rpx;
|
|
|
|
|
|
|
|
- img {
|
|
|
|
|
|
|
+ .img {
|
|
|
width: 65%;
|
|
width: 65%;
|
|
|
height: auto;
|
|
height: auto;
|
|
|
}
|
|
}
|