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.
 
 
 
 

61 lines
1.0 KiB

<template>
<!--顶部导航栏-->
<view class="" >
<image src="https://zsy-m.mianyang.cn/upload/2022/03/28/f7b449a1-71a4-43d6-8997-ece4a1f615fa.jpg" mode=""
style="height: 133vh;width: 100vw;"></image>
</view>
</template>
<script>
// import URLbase from "../../http/baseURL.js"
export default {
components: {
},
data() {
return {
// 当前属于哪一分类
classify:"",
tabIndex: 1, //选中标签栏的序列
tabBars: [{
name: '人力成本',
id: '0'
},
{
name: '土地成本',
id: '1'
},
{
name: '能源成本',
id: '2'
},
],
base:''
}
},
onShareAppMessage() {
return {
title: "", // 默认是小程序的名称(可以写slogan等)
path: '/pages/StrateGicgoals/StrateGicgoals',
}
},
methods: {
toggleTab(index) {
this.tabIndex = index;
},
},
onLoad(options) {
this.classify=options.id
// this.base=URLbase.baseURL
}
}
</script>
<style lang="scss">
@import "./StrateGicgoals.scss"
</style>