|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<template slot="subTitle">{{ data.productInfoCtitle }}</template>
|
|
|
|
|
</TitleGroup>
|
|
|
|
|
<div class="list">
|
|
|
|
|
<div class="item" v-for="i in data.hwProductInfoDetailList.sort((a,b)=>a.productInfoDetailOrder-b.productInfoDetailOrder)">
|
|
|
|
|
<div class="item" v-for="i in sortedList">
|
|
|
|
|
<div class="icon">
|
|
|
|
|
<el-image
|
|
|
|
|
style="width: 100%;height: 100%"
|
|
|
|
@ -25,11 +25,17 @@ import wlw from "@/assets/icon/wlw.png";
|
|
|
|
|
|
|
|
|
|
let map = null
|
|
|
|
|
export default {
|
|
|
|
|
name: 'PlatformAdvantages',
|
|
|
|
|
name: 'PlatformFeatures',
|
|
|
|
|
props: ['data'],
|
|
|
|
|
components: {
|
|
|
|
|
TitleGroup
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
sortedList() {
|
|
|
|
|
return this.data.hwProductInfoDetailList.slice().sort((a, b) => a.productInfoDetailOrder - b.productInfoDetailOrder);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
wlw
|
|
|
|
|