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
+5 -5
View File
@@ -1,7 +1,7 @@
<template>
<view
class="Loads acea-row row-center-wrapper"
v-if="loading || !loaded"
v-if="loading || !loadend"
style="margin-top: 20rpx;"
>
<template v-if="loading">
@@ -10,9 +10,9 @@
></view>
正在加载中
</template>
<template v-else>
上拉加载更多
</template>
<!-- <template v-else>-->
<!-- 上拉加载更多-->
<!-- </template>-->
</view>
</template>
@@ -20,7 +20,7 @@
export default {
name: "Loading",
props: {
loaded: Boolean,
loadend: Boolean,
loading: Boolean
}
};