修改图片画质,已上传体验版成功

This commit is contained in:
clay
2022-12-18 23:06:32 +08:00
parent 202da2a061
commit e073739ee5
17 changed files with 193 additions and 174 deletions

View File

@@ -1,5 +1,5 @@
<template>
<view style="margin-top: 20rpx; height: 1176rpx;background: #FFFFFF;">
<view>
<certifiedCj></certifiedCj>
<view v-if="cjsShow" class="no-data">已经到底啦</view>
</view>
@@ -19,6 +19,10 @@
</script>
<style lang="scss">
page {
background: #FFFFFF;
}
.no-data {
text-align: center;
margin-top: 29rpx;

View File

@@ -1,7 +1,7 @@
<template>
<view>
<u--image :src="src" width="750rpx" height="290rpx" :lazy-load="true">
</u--image>
<u-swiper :list="swiperList" indicatorMode="line " width="750rpx" height="290rpx" radius="0" circular>
</u-swiper>
<view class="feature">
<text class="one_title">经营范围及特色</text>
<view class="green_block">
@@ -32,7 +32,7 @@
export default {
data() {
return {
src: '/static/detail/cj_bg.png',
// src: '/static/detail/cj_bg.png',
features: '活冻鲍鱼,冻煮鲍鱼,鲍鱼罐头 佛跳墙,海螺片',
business_introduce: '福建省海纳川食品有限公司是一家从事水产养殖,加工与销售为一体的现代化企业,公司主要加工:活冻鲍鱼,溏心皇金鲍,兰花蟹,黄金鲍片,佛跳墙,大盆菜,火锅小章鱼,鲨鱼礼盒等系列产品。公司位于福建省自由贸易试验区马尾片区,离全国大的水产交易市场--马尾名成水产市场不到一公里,这里交通方便,商贾云集,冷链物流通达全国。',
showList: [{
@@ -45,6 +45,10 @@
{
src: '/static/report/zhanwei_xf(1).png'
},
],
swiperList: [
'/static/detail/cj_bg.png',
'/static/detail/cj_bg.png'
]
}

View File

@@ -1,5 +1,5 @@
<template>
<view style="margin-top: 20rpx; height: 1176rpx;background: #FFFFFF;">
<view>
<news></news>
<view v-if="newsShow" class="no-data">已经到底啦</view>
</view>
@@ -22,6 +22,12 @@
</script>
<style lang="scss">
page {
background: #FFFFFF;
}
.no-data {
text-align: center;
margin-top: 29rpx;

View File

@@ -1,17 +1,17 @@
<template>
<view>
<view class="xw_title">
<view style="padding: 12rpx 16rpx;">
<view class="xwD_title">
{{title}}
</view>
<view style="display: flex;">
<text class="xw_time">
<text class="xwD_time">
{{time}}
</text>
<text class="xw_time xw_place">
<text class="xwD_time xwD_place">
{{place}}
</text>
</view>
<view class="xw_content">
<view class="xwD_content">
<u-parse :content="news" @preview="preview" @navigate="navigate"></u-parse>
</view>
</view>
@@ -36,10 +36,9 @@
<style lang="scss">
page {
background-color: #fff;
padding: 12rpx 16rpx;
}
.xw_title {
.xwD_title {
font-size: 38rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: bold;
@@ -48,7 +47,7 @@
letter-spacing: 1rpx;
}
.xw_time {
.xwD_time {
font-size: 24rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
@@ -57,11 +56,12 @@
margin-top: 6rpx;
}
.xw_place {
.xwD_place {
padding-left: 20rpx;
}
.xw_content {
.xwD_content {
margin-top: 38rpx;
// border: none;
}
</style>