12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <template>
- <view>
- <view class="list u-flex u-row-between">
- <view class="item" v-for="(item,index) in list" :key="index" @click="toinfo(item)">
- <view class="img">
- <image :src="item.show_image" mode=""></image>
- </view>
- <view class="title">
- {{item.title}}
- </view>
- <view class="content">
- {{item.subheading}}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list:[],
- page:1
- }
- },
- onReachBottom() {
- this.page++
- this.getList()
- },
- onLoad() {
- this.getList()
- },
- methods: {
- getList(){
- uni.$u.http.post('/api/index/business',{page:this.page}).then(res => {
- this.list=[...this.list,...res.data.data]
- })
- },
- toinfo(item){
-
- uni.setStorageSync('item',item)
- uni.navigateTo({
- url:'./twoHappyInfo'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #F3F3F3;
- padding: 20rpx 0;
- }
- .list{
- margin: 0 30rpx;
- flex-wrap: wrap;
-
- .item{
- width: 336rpx;
- margin-bottom: 20rpx;
- background-color: #fff;
- padding-bottom: 20rpx;
- border-radius: 16rpx;
- overflow: hidden;
- .img{
- image{
- width: 336rpx;
- height: 336rpx;
- border-radius: 16rpx 16rpx 0px 0px;
- }
- }
- .title{
- margin-bottom: 8rpx;
- margin-left: 12rpx;
- font-size: 32rpx;
- color: #000;
- font-weight: 600;
- }
- .content{
- margin-left: 12rpx;
- font-size: 22rpx;
- color: #888888;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- </style>
|