|
|
@@ -3,6 +3,8 @@
|
|
|
<top-title
|
|
|
:titleValue="title"
|
|
|
:pageScroll="scrollVal"
|
|
|
+ :btnTop="btnPos"
|
|
|
+ :androidFlag="isAndroidFlag"
|
|
|
style="width: 100%"
|
|
|
></top-title>
|
|
|
<view class="page-section-spacing" style="width: 100%; position: relative">
|
|
|
@@ -53,23 +55,17 @@
|
|
|
</navigator>
|
|
|
</view>
|
|
|
|
|
|
- <view class="notice-box">
|
|
|
- <view class="notice-title-box">
|
|
|
+ <view class="notice-box" style="width:90%;">
|
|
|
+ <view class="notice-title-box" style="margin: 0 auto;margin-bottom: 30rpx;">
|
|
|
<view class="notice-font">通知公告</view>
|
|
|
<view class="notice-more-font">
|
|
|
- <view style="margin-right: 8rpx; font-size: 26rpx" @click="goNotice"
|
|
|
- >更多</view
|
|
|
- >
|
|
|
- <image
|
|
|
- src="../../static/right-arrow-blue.png"
|
|
|
- mode="aspectFill"
|
|
|
- style="width: 12rpx; height: 16rpx"
|
|
|
- ></image>
|
|
|
+ <view style="margin-right: 8rpx; font-size: 26rpx" @click="goNotice">更多</view>
|
|
|
+ <image src="../../static/right-arrow-blue.png"mode="aspectFill" style="width: 12rpx; height: 16rpx"></image>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view
|
|
|
class="notice-content-box"
|
|
|
- style="justify-content: flex-start"
|
|
|
+ style="justify-content: flex-start;border-radius: 0;"
|
|
|
v-for="(item, index) in noticeList"
|
|
|
:key="index"
|
|
|
@click="goNoticeDeatil(item.id)"
|
|
|
@@ -90,7 +86,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="notice-box" style="margin-top: 40rpx">
|
|
|
+ <view class="notice-box" style="margin-top: 40rpx;width: 90%;">
|
|
|
<view class="notice-title-box">
|
|
|
<view class="notice-font">推荐园区</view>
|
|
|
<navigator
|
|
|
@@ -187,8 +183,8 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="notice-box" style="margin-top: 20rpx">
|
|
|
- <view class="notice-title-box">
|
|
|
+ <view class="notice-box" style="margin-top: 20rpx;width: 90%;">
|
|
|
+ <view class="notice-title-box" style="margin: 0 auto;margin-bottom: 30rpx;">
|
|
|
<view class="notice-font">招商专区</view>
|
|
|
<view class="notice-more-font">
|
|
|
<view style="margin-right: 8rpx; font-size: 26rpx" @click="goAttract"
|
|
|
@@ -206,7 +202,7 @@
|
|
|
class="notice-content-box"
|
|
|
v-for="(item, index) in attractList"
|
|
|
:key="index"
|
|
|
- style="justify-content: start; position: relative"
|
|
|
+ style="justify-content: start; position: relative;border-radius: 0;"
|
|
|
@click="goAttractDeatil(item.id, item.time_type)"
|
|
|
>
|
|
|
<view class="maskModal" v-if="item.time_type == 0">
|
|
|
@@ -241,8 +237,8 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="notice-box" style="margin-top: 20rpx">
|
|
|
- <view class="notice-title-box">
|
|
|
+ <view class="notice-box" style="margin-top: 40rpx;width:90%;">
|
|
|
+ <view class="notice-title-box" style="margin: 0 auto;margin-bottom: 30rpx;">
|
|
|
<view class="notice-font">区内活动</view>
|
|
|
<view class="notice-more-font">
|
|
|
<view style="margin-right: 8rpx; font-size: 26rpx" @click="goActive"
|
|
|
@@ -260,7 +256,7 @@
|
|
|
class="notice-content-box"
|
|
|
v-for="(item, index) in activityList"
|
|
|
:key="index"
|
|
|
- style="justify-content: start; padding: 30rpx 0 30rpx 30rpx"
|
|
|
+ style="justify-content: start; padding: 30rpx 0 30rpx 30rpx;border-radius: 0;"
|
|
|
@click="goActiveDeatil(item.id)"
|
|
|
>
|
|
|
<image
|
|
|
@@ -319,6 +315,8 @@ export default {
|
|
|
title: "Air企通",
|
|
|
scrollVal: Number,
|
|
|
footFlag: true,
|
|
|
+ btnPos:uni.getMenuButtonBoundingClientRect().top + 6,
|
|
|
+ isAndroidFlag:getApp().globalData.isAndroid,
|
|
|
swiperList: [
|
|
|
{
|
|
|
img: "/static/swiper/swiper1.jpg",
|
|
|
@@ -449,6 +447,7 @@ export default {
|
|
|
this.getActive();
|
|
|
},
|
|
|
onLoad() {
|
|
|
+
|
|
|
uni.showLoading({
|
|
|
title: "加载中",
|
|
|
mask: true,
|
|
|
@@ -766,7 +765,7 @@ export default {
|
|
|
this.footFlag = true;
|
|
|
}
|
|
|
},
|
|
|
- onReachBottom() {
|
|
|
+ onReachBottom(e) {
|
|
|
this.footFlag = false;
|
|
|
},
|
|
|
};
|
|
|
@@ -835,13 +834,13 @@ export default {
|
|
|
/* border-radius: 0 0 10% 10%; */
|
|
|
/* } */
|
|
|
.page-nav-box {
|
|
|
- width: 80%;
|
|
|
+ width: 88%;
|
|
|
/* height: 320rpx; */
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
padding: 20rpx 10rpx 30rpx 10rpx;
|
|
|
box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
|
|
|
- border-radius: 32rpx;
|
|
|
+ border-radius: 16rpx;
|
|
|
position: absolute;
|
|
|
top: 360rpx;
|
|
|
background-color: #fff;
|
|
|
@@ -876,8 +875,8 @@ export default {
|
|
|
.notice-font {
|
|
|
font-family: PingFang SC;
|
|
|
font-style: normal;
|
|
|
- font-weight: 600;
|
|
|
- font-size: 36rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ font-size: 38rpx;
|
|
|
letter-spacing: 0.02em;
|
|
|
color: #0d1937;
|
|
|
}
|
|
|
@@ -890,7 +889,7 @@ export default {
|
|
|
|
|
|
.notice-content-box {
|
|
|
display: flex;
|
|
|
- padding: 30rpx;
|
|
|
+ padding: 30rpx 20rpx 30rpx 20rpx;
|
|
|
background-color: #ffffff;
|
|
|
box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
|
|
|
border-radius: 32rpx;
|