|
@@ -416,8 +416,15 @@
|
|
|
:More="true"
|
|
|
>
|
|
|
<div slot="content" style="height: 312px">
|
|
|
- <div style="padding: 5px 5px 0 5px; font-size: 16px" v-for="(item,index) in tableDataTwo" :key="index">
|
|
|
- {{item.noticeTitle}}
|
|
|
+ <div
|
|
|
+ style="padding: 5px 5px 0 5px; font-size: 14px"
|
|
|
+ v-for="(item, index) in tableDataTwo"
|
|
|
+ :key="index"
|
|
|
+ :style="{
|
|
|
+ backgroundColor: index % 2 == 0 ? '#fafbfd' : '#FFFFFF',
|
|
|
+ }"
|
|
|
+ >
|
|
|
+ {{ item.noticeTitle }}
|
|
|
</div>
|
|
|
</div>
|
|
|
</chi-card>
|