Files
city-store-transfer/pages/index/index.vue
2023-11-02 22:49:10 +08:00

50 lines
774 B
Vue

<template>
<view class="home-base-bg">
<view class="search_box">
<TabBar :current-page="0"></TabBar>
<InputAndSwiper></InputAndSwiper>
<HomeNavCard></HomeNavCard>
<view class="news-box">
<u-notice-bar
:text="newsTextLists"
:bg-color="$uni-bg-color"
></u-notice-bar>
</view>
<ShowShopListItem></ShowShopListItem>
</view>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
newsTextLists: [
'寒雨连江夜入吴',
'平明送客楚山孤',
'洛阳亲友如相问',
'一片冰心在玉壶'],
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.home-base-bg {
background-color: $uni-bg-color-grey;
width: 100%;
}
</style>