123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <template>
- <view class="main">
- <view class="indexswiper" style="margin-top: 10rpx;">
- <u-swiper :list="configInfo.banners" mode="none"></u-swiper>
- </view>
- <view class="tltleStyle">
- 推荐文章
- </view>
- <u-card :show-head="false" :show-foot="false" :border="false">
- <view class="" slot="body" v-for="(item,index) in list" :key="index" @click="bookinfo(item.id,item.title)">
- <view class="u-border-bottom padding-bottom-sm">
- <view class="u-body-item u-flex u-col-between u-p-t-0 justify-between">
- <view class="u-body-item-title u-line-2">{{item.title}}</view>
- <image :src="item.banner_url"></image>
- </view>
- <!-- <u-tag text="情感咨询" size="mini" shape="circle" mode="dark" type="info" /> -->
- </view>
- </view>
- </u-card>
- <view class="margin-tb padding-tb-xs">
- <u-loadmore :status="nomore" :icon-type="flower" />
- </view>
- <u-no-network></u-no-network>
- </view>
- </template>
- <script>
- var user = require('../../common/user.js');
- export default {
- onLoad(options) {
- },
- onShow() {
- this.getbook()
- this.getconfigLsit()
- },
- mounted() {
- },
- data() {
- return {
- list: [],
- lunbolist: [{
- image: 'https://cdn.uviewui.com/uview/swiper/1.jpg',
- title: '昨夜星辰昨夜风,画楼西畔桂堂东'
- },
- {
- image: 'https://cdn.uviewui.com/uview/swiper/2.jpg',
- title: '身无彩凤双飞翼,心有灵犀一点通'
- },
- {
- image: 'https://cdn.uviewui.com/uview/swiper/3.jpg',
- title: '谁念西风独自凉,萧萧黄叶闭疏窗,沉思往事立残阳'
- }
- ],
- configInfo: {}
- }
- },
- methods: {
- getbook: async function() {
- let res = await this.$request.post("/api/v1/article/articleList", {}, false)
- let status = user.islogin(res)
- if (status) {
- this.list = res.data.data
- }
- },
- bookinfo(id, title) {
- uni.navigateTo({
- url: "../common_tools/collection/collection_details?id=" + id + "&title=" + title
- })
- },
- getconfigLsit: async function() {
- let res = await this.$request.post("/api/v1/common/configList", {}, false)
- console.log(res)
- if (res.status == 0) {
- this.configInfo = res.data
- }
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .main {
- padding-top: 10rpx;
- padding-left: 20rpx;
- padding-right: 20rpx;
- }
- .tltleStyle {
- padding: 30rpx 30rpx 15rpx 15rpx;
- font-weight: bold;
- font-size: 40rpx;
- background-color: #fff;
- }
- .u-card-wrap {
- background-color: $u-bg-color;
- padding: 1px;
- }
- .u-body-item {
- font-size: 32rpx;
- color: #333;
- padding: 20rpx 10rpx;
- }
- .u-body-item image {
- width: 120rpx;
- flex: 0 0 120rpx;
- height: 120rpx;
- border-radius: 8rpx;
- margin-left: 12rpx;
- }
- </style>
|