| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- <template>
- <view class="content">
- <view class="page-section-spacing" style="width: 100%;position: relative;">
- <swiper class="swiper"
- indicator-dots="false"
- autoplay="true"
- duration="500"
- style="height:400rpx"
- @change="swiperChange">
- <swiper-item v-for="(item , index) in swiperList" :key="index" class="swiper-content">
- <image :src="item.pic_path" mode="aspectFill" style="width: 100%;height: 100%;"></image>
- </swiper-item>
- </swiper>
- <image src="../../static/Intersect.svg" class="groove-img"></image>
- <view class="rowDot">
- <view v-for="(item,index) in swiperList" :key="index" class="dots">
- <view :class="['dot',index === swiperCurrent ? 'active' : '']"></view>
- </view>
- </view>
- </view>
-
- <view class="page-nav-box">
- <navigator v-for="(item , index) in navList" :key="index" :url="item.path" open-type="navigate" class="nav-content">
- <image :src="item.url" mode="aspectFit" style="width: 38px;height: 38px;"></image>
- <view>{{item.content}}</view>
- </navigator>
- </view>
-
- <view class="notice-box">
- <view class="notice-title-box">
- <view class="notice-font">通知公告</view>
- <view class="notice-more-font">
- <view style="margin-right: 8rpx;font-size: 22rpx;">更多</view>
- <image src="../../static/right-arrow-blue.png" mode="aspectFill" style="width: 12rpx;height: 16rpx;"></image>
- </view>
- </view>
- <view class="notice-content-box" v-for="(item , index) in noticeList" :key="index">
- <image :src="item.url" mode="aspectFit" style="width:34px;height:34px;"></image>
- <view class="notice-content display-around-column">
- <view class="notice-content-font">{{item.title}}</view>
- <view class="notice-content-time">{{item.time}}</view>
- </view>
- </view>
- </view>
-
- <view class="notice-box" style="margin-top: 40rpx;">
- <view class="notice-title-box">
- <view class="notice-font">推荐园区</view>
- <navigator class="notice-more-font" url="../park/index" open-type="navigate">
- <view style="margin-right: 8rpx;font-size: 22rpx;">更多</view>
- <image src="/static/right-arrow-blue.png" mode="aspectFill" style="width: 12rpx;height: 16rpx;"></image>
- </navigator>
- </view>
- <view class="display-flex-start" style=" overflow:scroll;position:relative">
- <view class="park-box" v-for="(item , index) in parkList" :key="item.id" @click="goParkDetailFn(item.id)">
- <image :src="item.park_pics[0].pic_path" mode="aspectFill" style="width:452rpx;height:250rpx;border-radius:32rpx 32rpx 0 0;"></image>
- <view class="park-content-box">
- <view class="park-title">{{item.name}}</view>
- <view class="park-address display-flex-start">
- <view class="display-flex-start" style="margin-right: 10rpx;"><image src="/static/park/park-time.png" mode="aspectFill" class="park-title-img"></image>{{item.addtime | globalTime}}建成</view>
- <view class="display-flex-start"><image src="/static/park/park-name.png" mode="aspectFill" class="park-title-img"></image>{{item.manager}}</view>
- </view>
- <view class="park-footer-box display-between">
- <view class="display-between-column width-30">
- <view class="display-flex-start"><image src="/static/park/park-num.png" mode="aspectFill" class="park-footer-img"></image>{{item.company_count}}</view>
- <view class="park-footer-font">企业数量</view>
- </view>
- <view class="display-between-column width-30">
- <view class="display-flex-start">
- <image src="/static/park/park-area.png" mode="aspectFill" class="park-footer-img"></image>
- {{item.cover_area}}<text style="font-size: 12rpx;">万㎡</text></view>
- <view class="park-footer-font">占地面积</view>
- </view>
- <view class="display-between-column width-30">
- <view class="display-flex-start">
- <image src="/static/park/park-area2.png" mode="aspectFill" class="park-footer-img"></image>
- {{item.building_area}}<text style="font-size: 12rpx;">万㎡</text></view>
- <view class="park-footer-font">建设面积</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
-
- <view class="notice-box" style="margin-top:20rpx;">
- <view class="notice-title-box">
- <view class="notice-font">招商专区</view>
- <view class="notice-more-font">
- <view style="margin-right: 8rpx;font-size: 22rpx;">更多</view>
- <image src="/static/right-arrow-blue.png" mode="aspectFill" style="width: 12rpx;height: 16rpx;"></image>
- </view>
- </view>
-
- <view class="notice-content-box" v-for="(item , index) in attractList" :key="index" style="justify-content: start;">
- <image :src="item.url" mode="aspectFit" style="width:112rpx;height:112rpx;margin-right: 20rpx;"></image>
- <view class="notice-content">
- <view class="notice-content-font">{{item.title}}</view>
- <view class="attract-content">{{item.subtitle}}</view>
- <view class="notice-content-time" style="margin-top: 20rpx;">{{item.time}}</view>
- </view>
- </view>
- </view>
-
- <view class="notice-box" style="margin-top:20rpx;">
- <view class="notice-title-box">
- <view class="notice-font">区内活动</view>
- <view class="notice-more-font">
- <view style="margin-right: 8rpx;font-size: 22rpx;">更多</view>
- <image src="/static/right-arrow-blue.png" mode="aspectFill" style="width: 12rpx;height: 16rpx;"></image>
- </view>
- </view>
-
- <view class="notice-content-box" v-for="(item , index) in activityList" :key="index" style="justify-content: start;padding: 30rpx 0 30rpx 30rpx;">
- <image :src="item.url" mode="aspectFit" style="width:128rpx;height:128rpx;margin-right: 20rpx;"></image>
- <view class="notice-content" style="width: 70%;">
- <view class="notice-content-font" style="white-space: break-spaces;">{{item.title}}</view>
- <view class="display-flex-start" style="margin-top: 20rpx;">
- <view class="notice-content-time display-flex-start color-a7adba" v-show="item.isOnline"><view class="online-box"></view>线上</view>
- <view class="notice-content-time display-flex-start color-a7adba" v-show="!item.isOnline"><view class="offline-box"></view>线下</view>
- <view class="notice-content-time color-a7adba" >{{item.department}}</view>
- <view class="notice-content-time color-a7adba" >{{item.time}}</view>
- </view>
- <view class="display-flex-end" style="margin-top: 20rpx;">
- <view class="notice-content-time">浏览 {{item.browe}}</view>
- <view class="notice-content-time">分享 {{item.share}}</view>
- </view>
- </view>
- </view>
- </view>
- <foot-tabs></foot-tabs>
- </view>
- </template>
- <script>
- import md5 from '@/common/md5.js';
- export default {
- data() {
- return {
- swiperList:[
- {
- img:'/static/swiper/swiper1.jpg'
- },
- {
- img:'/static/swiper/swiper2.jpg'
- },
- ],
- swiperCurrent:0,
- navList:[
- {
- url:'/static/navList/appeal.png',
- path:'/pages/appeal/index',
- content:'提诉求'
- },
- {
- url:'/static/navList/policy.png',
- path:'/pages/policy/index',
- content:'搜政策'
- },
- {
- url:'/static/navList/park.png',
- path:'/pages/park/index',
- content:'找园区'
- },
- {
- url:'/static/navList/activity.png',
- path:'/pages/activity/index',
- content:'找活动'
- },
- {
- url:'/static/navList/supply.png',
- path:'/pages/supply/index',
- content:'发供需'
- },
- {
- url:'/static/navList/enterprise.png',
- path:'/pages/enterprise/index',
- content:'查企业'
- },
- {
- url:'/static/navList/service.png',
- path:'/pages/service/index',
- content:'找服务'
- },
- ],
- noticeList:[
- {
- url:'/static/navList/policy-icon.png',
- title:'政策速览 | 小微企业、个体工商户税费...',
- time:'2021-08-05'
- },
- {
- url:'/static/navList/activity-icon.png',
- title:'活动预告 | 想了解跨境电商?8月5日带...',
- time:'2021-08-04'
- },
- {
- url:'/static/navList/notice-icon.png',
- title:'通知公告 | 2022年首批次重点新材料扶...',
- time:'2021-08-03'
- },
- ],
- parkList:[
- // {
- // url:'/static/park/1.png',
- // title:'华潮科技产业园',
- // time:'2015-10-25',
- // num:484,
- // area1:1.72,
- // area2:1.01
-
- // },
- // {
- // url:'/static/park/1.png',
- // title:'华潮科技产业园',
- // time:'2015-10-25',
- // num:484,
- // area1:1.72,
- // area2:1.01
- // },
- // {
- // url:'/static/park/1.png',
- // title:'华潮科技产业园',
- // time:'2015-10-25',
- // num:484,
- // area1:1.72,
- // area2:1.01
- // },
- ],
- attractList:[
- {
- url:'/static/attract/1.png',
- title:'工业互联网',
- subtitle:'工业互联网是全球工业系统与高级计算、分析、...',
- time:'2021-09-05'
- },
- {
- url:'/static/attract/2.png',
- title:'生产性服务业',
- subtitle:'生产性服务业是指为保持工业生产过程的连续性...',
- time:'2021-09-05'
- },
- ],
- activityList:[
- {
- url:'/static/activity/2.png',
- title:'400场讲座,200门课程,免费送上门!就等你申请',
- isOnline:1,
- department:'区人力资源局',
- time:'2021-09-05',
- browe:'322',
- share:'2'
- },
- {
- url:'/static/activity/1.png',
- title:'智能制造商标品牌培育系列培训活动',
- isOnline:0,
- department:'市场监督管理局',
- time:'2021-09-05',
- browe:'322',
- share:'2'
- },
- ],
- }
- },
- onLoad() {
- this.getSwiperList();
- this.getPark();
- // this.loginLoad();
- },
- methods: {
- swiperChange(e){
- this.swiperCurrent = e.detail.current
- },
- loginLoad(){
- let that = this;
- uni.login({
- success(res) {
- that.loginRequest(res.code)
- }
- })
- },
- loginRequest(codeRes){
- let md5Sign = md5("method="+'user'+"×tamp="+getApp().globalData.globalTimestamp+"&secret="+getApp().globalData.secret)
- let url = getApp().globalData.shareUrl+'api/api.php'+'?method=user&source=user&action=login×tamp='+getApp().globalData.globalTimestamp +'&sign='+md5Sign
- uni.request({
- url:url,
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- code:codeRes
- },
- success: (res) => {
- console.log(res)
- if(res.data.code === 200){
- }
- },
- fail: () => {
- console.log("连接失败");
- }
- });
- },
- getSwiperList(){
- let md5Sign = md5("method="+'common'+"×tamp="+getApp().globalData.globalTimestamp+"&secret="+getApp().globalData.secret)
- let url = getApp().globalData.shareUrl+'api/api.php'+'?method=common&source=main_pics&action=list×tamp='+getApp().globalData.globalTimestamp +'&sign='+md5Sign
- uni.request({
- url:url,
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- order_by:"weight desc",
- s_status:1,
- page:1,
- page_size:7
- },
- success: (res) => {
- console.log(res)
- if(res.data.code === 200){
- res.data.data.list.forEach((item)=>{item.pic_path = getApp().globalData.shareUrl + item.pic_path})
- this.swiperList = res.data.data.list;
-
- }
- },
- fail: () => {
- console.log("连接失败");
- }
- });
- },
- getPark(){
- let md5Sign = md5("method="+'park'+"×tamp="+getApp().globalData.globalTimestamp+"&secret="+getApp().globalData.secret)
- let url = getApp().globalData.shareUrl+'api/api.php'+'?method=park&source=park&action=list×tamp='+getApp().globalData.globalTimestamp +'&sign='+md5Sign
- uni.request({
- url:url,
- method: 'POST',
- header: {
- 'content-type': 'application/x-www-form-urlencoded'
- },
- data: {
- order_by:"weight desc",
- s_show:1,
- // page:1,
- // page_size:7
- },
- success: (res) => {
- console.log(res)
- if(res.data.code === 200){
- res.data.data.list.forEach((item)=>{item.park_pics[0].pic_path = getApp().globalData.shareUrl + item.park_pics[0].pic_path});
- this.parkList = res.data.data.list;
- }
- },
- fail: () => {
- console.log("连接失败");
- }
- });
- },
- goParkDetailFn(id){
- uni.navigateTo({
- url:'/pages/park/park_deatil?id='+id
- })
- },
- }
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- .groove-img {
- width: 100%;
- height: 100rpx;
- bottom: -22rpx;
- position: absolute;
- }
- .rowDot {
- display: flex;
- position: absolute;
- top: 270rpx;
- left: 80rpx;
- }
- .dots {
- flex-direction: row;
- justify-content: center;
- align-items: center;
- align-content: center;
- }
- .dot {
- margin-right: 8rpx;
- width: 40rpx;
- height: 8rpx;
- opacity: 1;
- border-radius: 6rpx;
- background: #fff5f9;
- }
- .dot.active {
- background: #ff4e54;
- }
- .swiper-content {
- /* border-radius: 0 0 10% 10%; */
- }
- .page-nav-box {
- width: 80%;
- /* 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;
- position: absolute;
- top: 300rpx;
- background-color: #fff;
- }
- .nav-content {
-
- width: 25%;
- height: 130rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 20rpx;
- font-size: 22rpx;
- justify-content: space-around;
- letter-spacing: 0.02em;
- color: #0D1937;
- font-family: PingFang SC;
- font-style: normal;
- font-weight: 600;
- }
- .notice-box{
- width: 83%;
- margin-top: 300rpx;
- margin-bottom:20rpx;
- }
- .notice-title-box{
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom:40rpx;
- }
- .notice-font {
- font-family: PingFang SC;
- font-style: normal;
- font-weight: 600;
- font-size: 32rpx;
- letter-spacing: 0.02em;
- color: #0D1937;
- }
- .notice-more-font {
- font-size: 24rpx;
- color: #146AFB;
- display: flex;
- align-items: center;
- }
-
- .notice-content-box {
- display: flex;
- padding: 30rpx;
- background-color: #FFFFFF;
- box-shadow: 0px 4rpx 32rpx rgba(0, 0, 0, 0.1);
- border-radius: 32rpx;
- margin-top: 20rpx;
- justify-content: space-between;
- }
- .notice-content-font {
- font-size:26rpx;
- color: #0D1937;
- font-weight: 600;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .notice-content-time {
- font-size: 18rpx;
- letter-spacing: 0.02em;
- color: #CFCFCF;
- margin-right: 14rpx;
- }
- .park-box {
- border-radius: 32rpx;
- margin-right: 20rpx;
- position: relative;
- height: 450rpx;
- }
- .park-content-box {
- width: 394rpx;
- background-color: #FFFFFF;
- border-radius: 56rpx 0px 32rpx 32rpx;
- position: absolute;
- top: 210rpx;
- font-size: 24rpx;
- padding: 30rpx;
- box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
- }
- .park-title {
- font-weight: 600;
- line-height: 36rpx;
- letter-spacing: 0.02em;
- color: #0D1937;
- }
- .park-address {
- font-weight: 600;
- font-size: 19rpx;
- letter-spacing: 0.02em;
- color: #CFCFCF;
- margin-top: 10rpx;
- }
- .park-title-img {
- width: 16rpx;
- height: 16rpx;
- margin-right: 4rpx;
- }
- .park-footer-box {
- margin-top: 30rpx;
- }
- .park-footer-img{
- width: 24rpx;
- height: 24rpx;
- margin-right: 6rpx;
- }
- .park-footer-font {
- color: #CFCFCF;
- font-size: 19rpx;
- margin-top: 10rpx;
- }
- .width-30 {
- width: 30%;
- }
- .attract-content {
- color: #697594;
- font-weight: 600;
- font-size: 20rpx;
- margin-top: 8rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .online-box {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color:#589CFF;
- margin-right:5rpx;
- }
- .offline-box {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- background-color:#FFCF86;
- margin-right:5rpx;
- }
- .color-a7adba{
- color: #A7ADBA;
- }
- </style>
|