123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <template>
- <view class="box">
- <u-navbar :autoBack="true" title="成果展示" bgColor="rgba(255,255,255,0)" :placeholder="true" titleStyle="font-weight:bold;color:#000000"></u-navbar>
- <view @click="$common.navigateTo('/index_fenbao/HuoHuaLiYong/chanPin/chengGuo?id=' + item.id)" v-for="item in achievement" :key="item.id" class="yx_box">
- <view style="position: absolute; left: 6rpx; top: 6rpx">
- <image style="width: 160rpx; height: 240rpx" :src="item.image"></image>
- </view>
- <view style="margin-left: 200rpx">
- <view class="wwd">{{ item.title }}</view>
- </view>
- <view class="baoming">
- <text>查看</text>
- <image style="margin-left: 10rpx; width: 32rpx; height: 32rpx" src="/static/img/arrow-right-line.png"></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- let that;
- export default {
- data() {
- return {
- achievement: []
- };
- },
- onLoad(o) {
- that = this;
- this.travelPath();
- },
- methods: {
- travelPath() {
- this.$api.getContentList({ main_body_id: 1, model_id: 11, main_body_column_id: 84 }, function (res) {
- that.achievement = res.data;
- console.log(that.achievement, '活化利用成果');
- });
- }
- }
- };
- </script>
- <style>
- .box {
- width: 100%;
- padding-bottom: 50rpx;
- background-image: url('https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/xbg_2.png');
- background-size: 100% 100%;
- background-attachment: fixed;
- background-repeat: repeat-y;
- height: 100%;
- }
- .img {
- width: 100%;
- height: 100%;
- }
- .xq {
- width: 55rpx;
- height: 180rpx;
- text-align: center;
- line-height: 50rpx;
- font-size: 30rpx;
- margin-left: 50rpx;
- margin-top: 80rpx;
- color: #ffffff;
- background-image: url('/static/img/wc_tit_bg.png');
- background-size: 100% 100%;
- }
- .right_box {
- writing-mode: vertical-lr;
- writing-mode: tb-lr;
- letter-spacing: 6rpx;
- }
- .tit {
- font-size: 28rpx;
- font-weight: 600;
- background: linear-gradient(180deg, #af7e44 0%, #934b36 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .fenge {
- width: 2rpx;
- height: 200rpx;
- background-color: #934b36;
- margin-top: 55rpx;
- margin-left: 10rpx;
- background-image: linear-gradient(to bottom right, #ecd9c3, #934b36);
- }
- .kc_box {
- width: 92%;
- margin: auto;
- padding: 30upx;
- display: flex;
- align-items: center;
- margin-top: 30rpx;
- }
- .b-cover {
- width: 225rpx;
- height: 125rpx;
- }
- .b-main {
- flex: 1;
- margin-left: 20upx;
- }
- .text_23 {
- color: #272727;
- font-size: 28rpx;
- margin-top: 10rpx;
- font-weight: 600;
- }
- .text_25 {
- font-size: 26rpx;
- color: #727070;
- margin-top: 10rpx;
- font-weight: 400;
- }
- .text_23 {
- color: #272727;
- font-size: 28rpx;
- margin-top: 10rpx;
- font-weight: 600;
- }
- .text_25 {
- font-size: 26rpx;
- color: #727070;
- margin-top: 10rpx;
- font-weight: 400;
- }
- .yx_box {
- position: relative;
- width: 670rpx;
- height: 252rpx;
- display: flex;
- align-items: center;
- margin: auto;
- margin-top: 34rpx;
- background-image: url('https://huli-app.wenlvti.net/app_static/WenWuGuanJia/image/hh_item_bg.png');
- background-size: 100% 100%;
- }
- .wwd {
- width: 300rpx;
- font-size: 36rpx;
- font-weight: 400;
- color: #444444;
- line-height: 52rpx;
- }
- .time {
- font-size: 28rpx;
- color: rgba(68, 68, 68, 0.6);
- line-height: 44rpx;
- margin-top: 12rpx;
- }
- .baoming {
- display: flex;
- width: 116rpx;
- height: 56rpx;
- line-height: 56rpx;
- justify-content: center;
- align-items: center;
- margin-left: 32rpx;
- font-size: 28rpx;
- color: #eba869;
- border: 2rpx solid #eba869;
- }
- </style>
|