flying-monkey/pagesB/plan-fault-product-detail/detail.vue

43 lines
1.2 KiB
Vue
Raw Normal View History

<template>
<view>
<status-nav :navBarTitle="detailTitle" returnColor="#c2c2c2"></status-nav>
<container-subgroup>
<view slot="content" style="margin: 0 -30rpx;" class="fon28">
<view class="bacf pad-zy30 pad-sx20" style="margin-top: -10rpx;">
<view class="fon38 col0 tcenter">智能会议平板交互电子白板会议一体机 视频会议多媒体教学培训</view>
<view class="col6 fon28 tcenter mar-sx20">2022-01-05 12:59</view>
<view class="fon30 line-h60">
<image src="/static/del/QQ截图20220210213041.png" mode="widthFix" style="width: 100%;"></image>
<view class="tindent">霜降是二十四节气中的第十八个节气秋季的最后一个节气斗指戌太阳黄经为210°于每年公历10月2324日交</view>
</view>
</view>
</view>
</container-subgroup>
</view>
</template>
<script>
export default {
data() {
return {
detailTitle:''
}
},
onLoad(op) {
this.detailTitle = `${['方案详情','详情概述'][op.index*1]}`;
},
methods: {
// 去新产品详情
goDetail(index){
uni.navigateTo({
url:'/pagesB/product-detail/product-detail'
})
}
}
}
</script>
<style>
</style>