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
}
};
+1 -1
View File
@@ -17,7 +17,7 @@
</view>
<view class="productWinList">
<view class="item" v-for="(item, indexw) in attr.productAttr" :key="indexw">
<view class="title">{{ item.attrName }} 438</view>
<view class="title">{{ item.attrName }}</view>
<view class="listn acea-row row-middle">
<view
class="itemn"
+1 -1
View File
@@ -21,7 +21,7 @@
</view>
</view>
</view>
<Loading :loaded="loadend" :loading="loading"></Loading>
<Loading :loadend="loadend" :loading="loading"></Loading>
</view>
</template>
<script>