|
|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<div class="div-box-new-margin">
|
|
|
- <div class="div-box-new">
|
|
|
+ <div class="div-box-new" :style="{height:heightNew}">
|
|
|
<div style="font-size: 16px;color: #333333;margin-bottom: 20px">{{$t(title)}}</div>
|
|
|
- <div class="div-border-new">
|
|
|
+ <div class="div-border-new" :style="{height:heightNew}">
|
|
|
<div class="item div-click" v-for="item in mainData">
|
|
|
<p class="title">{{$t(item.value)}}</p>
|
|
|
<span class="content-font-new">{{$t(item.label)}}</span>
|
|
|
@@ -21,7 +21,7 @@
|
|
|
<script>
|
|
|
export default {
|
|
|
name: "index",
|
|
|
- props:['title','mainData']
|
|
|
+ props:['title','mainData','heightNew']
|
|
|
}
|
|
|
</script>
|
|
|
|