productDetail.vue
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
<view>
<view class="bgWrap">
<view class="replyDesc">
<view class="title">
自主研发核心技术
</view>
<view class="subTitle">
产品发布时间:2020/10/1
</view>
<view class="replySmDesc">
目前,飞凡积分联盟很有规模了,跟金融、航空、通讯、互联网、商旅领域中排名前列的多家知名企业建立了战略合作关系,已有6900多家商户签约联盟。 单单是现阶段,这个联盟所覆盖的会员数量已经达到亿级,联盟合作伙伴整体积分存量达到百亿级园区第二届纳米专项科技领军人才黄克宙创业(成长型)项目,注册资金5108万元,拥有独特的“电化学纳米高纯铝粉制备工艺”和“纳米材料分散体系”技术。 专业从事高纯纳米氧化铝材料的研发和中试,产品可作为高端蓝宝石衬底专用原料用于LED等领域。 在苏州纳米城定建8000平方米的研发、中试和总部大楼。
</view>
<view class="imgList">
<image src="../../static/image/del/ic_90@2x.png" mode=""></image>
<image src="../../static/image/del/ic_90@2x.png" mode=""></image>
<image src="../../static/image/del/ic_90@2x.png" mode=""></image>
</view>
</view>
</view>
</view>
</template>
<script>
export default{
data(){
return{
}
}
}
</script>
<style lang="scss">
page{
background-color: $uni-bg-color-hui;
}
.bgWrap{
height: 174rpx;
background: $uni-bg-main-color;
padding: 30rpx 32rpx 0 30rpx;
.replyDesc{
background: #ffffff;
border-radius: 24rpx;
padding: 0 32rpx 40rpx 32rpx;
margin-bottom: 50rpx;
.title{
height: 104rpx;
font-size: $uni-font-size-40;
font-weight: 600;
line-height: 120rpx;
}
.subTitle{
color: #969799;
font-size: $uni-font-size-24;
}
.replySmDesc{
padding-top: 24rpx;
font-size: $uni-font-size-26;
line-height: $uni-font-lh-40;
color: $uni-text-color-hui;
}
.imgList{
image{width: 622rpx;height: 246rpx;margin-top: 32rpx;}
}
}
}
</style>