|
@@ -10,8 +10,8 @@
|
|
|
</div>
|
|
|
<div v-if="cur" class="NNPE-Book-content-inner">
|
|
|
<div v-for="(item, index) in cur.cur_fn_data" :key="index">
|
|
|
- <h2 v-if="item.title_z">{{ item.title_z }}</h2>
|
|
|
- <h3 v-if="item.title_f">{{ item.title_f }}</h3>
|
|
|
+ <h2 v-if="item.title_z">{{ item.z_title }}</h2>
|
|
|
+ <h3 v-if="item.title_f">{{ item.f_title }}</h3>
|
|
|
<div
|
|
|
:class="['NNPE-tableList', item.is_bg ? 'NNPE-tableList-hasBg' : '']"
|
|
|
>
|
|
@@ -25,7 +25,7 @@
|
|
|
:key="indexss"
|
|
|
:class="[
|
|
|
'NNPE-tableList-item',
|
|
|
- items.length == 1 ? 'NNPE-tableList-item-noMargin' : ''
|
|
|
+ items.length == 1 ? 'NNPE-tableList-item-noMargin' : 'NNPE-tableList-item' + items.length
|
|
|
]"
|
|
|
>
|
|
|
<template v-if="itemss.data">
|
|
@@ -416,7 +416,7 @@ export default {
|
|
|
.NNPE-tableList {
|
|
|
background: #fff;
|
|
|
border-radius: 8px;
|
|
|
- padding: 12px 8px;
|
|
|
+ // padding: 12px 8px;
|
|
|
&.NNPE-tableList-hasBg {
|
|
|
background: #f7f7f7;
|
|
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
@@ -429,7 +429,7 @@ export default {
|
|
|
// flex-flow: wrap;
|
|
|
.NNPE-tableList-item {
|
|
|
width: 100%;
|
|
|
- margin: 12px 16px;
|
|
|
+ // margin: 12px 16px;
|
|
|
// padding: 16px;
|
|
|
// background: #FFFFFF;
|
|
|
// border-radius: 4px;
|
|
@@ -439,6 +439,12 @@ export default {
|
|
|
&.NNPE-tableList-item-noMargin {
|
|
|
margin: 0;
|
|
|
}
|
|
|
+ &.NNPE-tableList-item2 {
|
|
|
+ width: 378px;
|
|
|
+ }
|
|
|
+ &.NNPE-tableList-item3 {
|
|
|
+ width: 244px;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|