|
|
|
@ -1,19 +1,21 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<TitleGroup>
|
|
|
|
|
<template slot="title">DATA ACQUISITION SENSING</template>
|
|
|
|
|
<template slot="subTitle">数采传感硬件系列</template>
|
|
|
|
|
<template slot="title">{{ data.productInfoEtitle }}</template>
|
|
|
|
|
<template slot="subTitle">{{ data.productInfoCtitle }}</template>
|
|
|
|
|
</TitleGroup>
|
|
|
|
|
<div class="list">
|
|
|
|
|
<div class="item" v-for=" i in 8">
|
|
|
|
|
<div class="item" v-for=" i in data.hwProductInfoDetailList">
|
|
|
|
|
<div class="image">
|
|
|
|
|
<el-image
|
|
|
|
|
style="width: 100%; height: 100%;"
|
|
|
|
|
:src="banner"
|
|
|
|
|
:src="i.productInfoDetailPic"
|
|
|
|
|
fit="contain"></el-image>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="info">
|
|
|
|
|
RFID通道门具有窄波束、高增益特点,适用于超高频门禁通道类、物流仓储、人员、图书、档案馆、医疗系统、设备资产等应用。
|
|
|
|
|
<span>
|
|
|
|
|
{{ i.productInfoDetailDesc }}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -26,6 +28,7 @@ import banner from '@/assets/image/banner.png'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: 'HighFrequencyRFID',
|
|
|
|
|
props:['data'],
|
|
|
|
|
components: {
|
|
|
|
|
TitleGroup
|
|
|
|
|
},
|
|
|
|
@ -52,6 +55,7 @@ export default {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
box-shadow: 0 0 3px #0002;
|
|
|
|
|
margin-bottom: 1.4vw;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: 100%;
|
|
|
|
@ -66,6 +70,12 @@ export default {
|
|
|
|
|
line-height: 1.2vw;
|
|
|
|
|
letter-spacing: 0.6px;
|
|
|
|
|
color: #0006;
|
|
|
|
|
span{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: calc(100% );
|
|
|
|
|
height: calc(100% );
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:nth-child(4n) {
|
|
|
|
|