38 lines
585 B
Vue
38 lines
585 B
Vue
<template>
|
|
<view class="home-base-bg">
|
|
<InputAndSwiper></InputAndSwiper>
|
|
<TabBar :current-page="0"></TabBar>
|
|
<HomeNavCard></HomeNavCard>
|
|
<view class="news-box">
|
|
<u-notice-bar :text="newsText" bg-color="#ffffff"></u-notice-bar>
|
|
</view>
|
|
|
|
<ShowShopList></ShowShopList>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
newsText: '寒雨连江夜入吴'
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.home-base-bg {
|
|
background-color: $uni-bg-color-grey;
|
|
width: 100%;
|
|
}
|
|
</style> |