Commit 9d2ea74e authored by shilei's avatar shilei

载体跳转

parent 757f2410
......@@ -9,16 +9,16 @@
<view>
<div class="flex right-media f18">
<div style="width: 180rpx" class="ell">
<span class="c80">面积:</span>{{ areaInfo.planArea || "--" }}k
<span class="c80">面积:</span>{{ areaInfo.area || "--" }}
</div>
</div>
<div class="f18 flex right-footer">
<div style="width: 180rpx" class="ell">
<span class="c80">载体类型:</span>
<span>{{ areaInfo.levelName || "--" }}</span>
<span>{{ areaInfo.type || "--" }}</span>
</div>
<div style="margin-left: 18rpx; width: 180rpx" class="ell">
<span class="c80">建筑结构:</span>{{ areaInfo.type || "--" }}
<span class="c80">建筑结构:</span>{{ areaInfo.structure || "--" }}
</div>
</div>
</view>
......@@ -51,6 +51,7 @@ export default {
},
methods: {
toDetail() {
console.log('载体toDetail', this.detail)
uni.navigateTo({
url: "/pages/detail/carrierDetail?id" + this.detail.id,
});
......
......@@ -4,14 +4,22 @@
<section-title title="产业概况"></section-title>
<p style="font-size: 22rpx;color: #606266;padding-left: 6rpx;">{{primaryIndustryList[pageId].titleIntroduce}}</p>
</div>
<div>
<section-title title="相关载体">
</section-title>
<div v-for="carrier in primaryIndustryList[pageId].carrirList" :key="carrier.id" style="margin-bottom: 20rpx;">
<carrier-card :detail="carrier"></carrier-card>
</div>
</div>
</div>
</template>
<script>
import store from '@/store'
import sectionTitle from '../../components/section-title/section-title.vue'
import CarrierCard from '../../components/media/carrier-card.vue'
export default {
components: { sectionTitle },
components: { sectionTitle, CarrierCard },
data() {
return {
pageId: 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment