Feat:接口对接

This commit is contained in:
lifizer
2023-11-20 15:54:00 +08:00
parent 4652b6706a
commit a3ac5a2506
24 changed files with 2305 additions and 152 deletions
+12 -1
View File
@@ -39,6 +39,8 @@
<view class="price bold">¥{{ item.price }}</view>
</view>
</scroll-view>
<image class="img-nodata" :src="webUrl+'/20231023131208675588.png'" mode="scaleToFill" v-if="dataList.length===0"/>
</view>
</view>
</view>
@@ -58,7 +60,7 @@ export default {
dataList: [], // 列表数据
tabList: [],
cityId: null,
cityName: "桂林市",
cityName: "",
page: 1,
listHeight: "auto"
}
@@ -173,5 +175,14 @@ export default {
}
}
}
.img-nodata {
position: relative;
top: 200rpx;
left: 50%;
transform: translate(-50%, 0);
width: 352rpx;
height: 338rpx;
}
}
</style>