This commit is contained in:
花有清香月有阴
2021-12-23 18:52:56 +08:00
parent d45b3eee71
commit 0a5e7d4a2b

View File

@@ -6,7 +6,7 @@
<u-tabs :list="list" :is-scroll="false" :current="currentType" @change="change"></u-tabs>
<template v-if="datas.length > 0">
<template class="datass" v-if="datas.length > 0">
<u-card v-for="(item, index) in datas" :key="index" :foot-border-top="false" :head-border-bottom="false" :show-head="false" @click="goDetail(item, 1)">
<view class="body" slot="body">
<view class="u-body-item">
@@ -56,7 +56,7 @@
<u-loadmore :status="loadmore" color="#999" font-size="24" margin-top="32" margin-bottom="80" />
</template>
<AiEmpty description="没有数据" v-else> </AiEmpty>
<AiEmpty description="没有数据" class="aiemptys" v-else> </AiEmpty>
</div>
</template>
@@ -137,8 +137,12 @@ export default {
</script>
<style scoped lang="scss">
uni-page-body {
background: #f5f5f5;
height: 100%;
}
.workonline {
background: #f3f6f9;
height: 100%;
.search {
.serach_content {
background-color: #fff;
@@ -188,5 +192,9 @@ export default {
}
}
}
.aiemptys {
background: #f5f5f5;
}
}
</style>