|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
<div class="title">PRODUCT CENTER</div>
|
|
|
|
|
<div class="subTitle">产品中心</div>
|
|
|
|
|
<div class="productList">
|
|
|
|
|
<div v-for="i in productList" class="productItem">
|
|
|
|
|
<div v-for="i in productList" class="productItem" @click="toLink(i)">
|
|
|
|
|
<div class="imageArea">
|
|
|
|
|
<el-image
|
|
|
|
|
style="width: 100%;height: 100%"
|
|
|
|
@ -40,6 +40,11 @@ export default {
|
|
|
|
|
this.getData()
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
|
|
|
|
|
toLink(e){
|
|
|
|
|
this.$router.push('/productCenter/industrialInternet?portalConfigTypeId='+e.configTypeId)
|
|
|
|
|
console.log(e.configTypeId)
|
|
|
|
|
},
|
|
|
|
|
getData(){
|
|
|
|
|
getPortalConfigTypeList({
|
|
|
|
|
configTypeClassfication:1,
|
|
|
|
@ -47,6 +52,7 @@ export default {
|
|
|
|
|
pageNum:1,
|
|
|
|
|
pageSize:111
|
|
|
|
|
}).then(e=>{
|
|
|
|
|
console.log(e)
|
|
|
|
|
this.productList = e.rows
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|