You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

168 lines
3.7 KiB

<template>
<view class="InvestmenTadvantage">
<!-- 顶部 -->
<view class="contentHeader" @click="StrateGicgoals">
<view class="headText">
<!-- 标题 -->
<view class="textone">
<text>战略地位</text>
</view>
<!-- -->
<!-- <view class="texttwo">
<text>打造有温暖的智慧园区平台</text>
</view> -->
</view>
</view>
<view class="contentMedel">
<!-- 模块一 -->
<view class="contentMedelItem itemONe" @click="DevelopmentGoals">
<!-- 文本 -->
<view class="contentMedelItemText">
<view class="ItemTextOne">
<text>发展目标</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
<!-- 模块二 -->
<view class="contentMedelItem itemTwo" @click="EducationInnovation">
<!-- 文本 -->
<view class="contentMedelItemText">
<view class="ItemTextOne">
<text>科技创新</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
<!-- 模块三 -->
<view class="contentMedelItem itemThree" @click="IndustrialBase">
<!-- 文本 -->
<view class="contentMedelItemText">
<view class="ItemTextOne">
<text>产业基础</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
<!-- 模块四 -->
<view class="contentMedelItem itemFour" @click="Trafficlocation">
<!-- 文本 -->
<view class="contentMedelItemText">
<view class="ItemTextOne">
<text>交通区位</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
<!-- -->
<view class="contentMedelItem itemFive" @click="capitalizedCost">
<!-- 文本 -->
<view class="contentMedelItemText" >
<view class="ItemTextOne">
<text>投资成本</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
<!-- -->
<view class="contentMedelItem itemSix" @click="Lifelivable">
<!-- 文本 -->
<view class="contentMedelItemText">
<view class="ItemTextOne">
<text>生活宜居</text>
</view>
<!-- <view class="ItemTextwo">
<text>智慧园区平台</text>
</view> -->
</view>
</view>
</view>
</view>
</template>
<script>
import urlimg from "../../http/urlimg.js"
export default{
data(){
return{
}
},
onLoad() {
},
onShareAppMessage() {
return {
title: "", // 默认是小程序的名称(可以写slogan等)
path: '/pages/InvestmenTadvantage/InvestmenTadvantage',
}
},
methods:{
// 跳转战略目标
StrateGicgoals(){
uni.navigateTo({
url: '../StrateGicgoals/StrateGicgoals?id=1',
});
},
// 跳转发展目标
DevelopmentGoals(){
uni.navigateTo({
url: '../DevelopmentGoals/DevelopmentGoals?id=2',
});
},
// 科教创新
EducationInnovation(){
uni.navigateTo({
url: '../EducationInnovation/EducationInnovation?id=3',
});
},
// 产业基础
IndustrialBase(){
uni.navigateTo({
url: '../IndustrialBase/IndustrialBase?id=4',
});
},
// 交通区位
Trafficlocation(){
uni.navigateTo({
url: '../Trafficlocation/Trafficlocation?id=5',
});
},
// 跳转投资成本
capitalizedCost(){
uni.navigateTo({
url: '../capitalizedCost/capitalizedCost?id=6',
});
},
// 生活宜居
Lifelivable(){
uni.navigateTo({
url: '../Lifelivable/Lifelivable?id=7',
});
}
}
}
</script>
<style lang="scss">
@import "./InvestmenTadvantage.scss"
</style>