123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <template>
- <div class="insurance">
- <header-nav :id="id"/>
- <div class="w sharonPic">
- <img src="../../assets/image/shalong.jpg">
- </div>
- <!-- 沙龙内容部分 -->
- <div class="w sharoncont">
- <div class="wthree shaIcon">
- <div style="margin: 0 auto;">
- <div style="margin-top: 35px; margin-left: 36%;">
- <a href="newrules">新规新政</a>
- </div>
- <div style="margin-top: 5px; margin-left: 36%;">
- <a href="law" style="font-size: 12px;">法律法规</a>
- </div>
- <div style="margin-top: 5px; margin-left: 36%;">
- <a href="policy" style="font-size: 12px;">政策解析</a>
- </div>
- <div style="margin-top: 5px; margin-left: 36%;">
- <a href="insurance" style="font-size: 12px;">医疗保险</a>
- </div>
- </div>
- </div>
- <img src="../../assets/image/sl.png" class="icon">
- <div class="wseven shamatter">
- <div class="shuIcon"></div>
- <span class="biaoti">医疗保险</span>
- <div class="hengIcon"></div>
- <ul >
- <li v-for="(item, index) in DataList" :key="id" @click="Jump(item.id)">
- <div class="newcont">
- <div style="overflow: hidden;">
- <span class="round left"></span>
- <h5 class="left" style="margin-left: 15px;">{{item.title}}</h5>
- <span class="onlyTime">{{item.publishTime}}</span>
- </div>
- <div class="onlyHeight">
- <p>{{item.newsAbstract}}</p>
- </div>
- </div>
- </li>
- </ul>
- <!-- 分页 -->
- <div class="block">
- <el-pagination
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="current"
- :page-size="pagesize"
- background
- layout="prev, pager, next"
- :total="total">
- </el-pagination>
- </div>
- </div>
- </div>
- <footer-nav/>
- </div>
- </template>
- <script type="text/javascript">
- import headerNav from '@/components/header';
- import footerNav from '@/components/footer';
- export default {
- data() {
- return {
- id: 5,
- current: 1,
- pagesize: 10,
- // 总共有多少条数据
- total: 0,
- DataList: []
- };
- },
- components: {
- headerNav,
- footerNav
- },
- created() {
- this.loadData();
- },
- methods: {
- async loadData() {
- const response = await this.$http.get(`biz/newsArticles/${17}?¤t=${this.current}&size=${this.pagesize}`);
- if (response.data.code === 1) {
- this.DataList = response.data.responseData.records;
- this.total = response.data.responseData.total;
- // console.log(response.data.responseData)
- }
- },
- //跳转
- Jump(id){
- window.open('/newsDetails/'+ id);
- },
- // 分页方法
- handleSizeChange(val) {
- this.pagesize = val;
- this.loadData();
- console.log(`每页 ${val} 条`);
- },
- handleCurrentChange(val) {
- this.current = val;
- this.loadData();
- console.log(`当前页: ${val}`);
- },
- }
- };
- </script>
- <style type="text/css">
- .insurance {
- }
- .insurance .sharonPic {
- overflow: hidden;
- margin-top: 20px;
- height: 300px;
- }
- .insurance .sharonPic img {
- height: 100%;
- width: 100%;
- }
- .insurance .sharoncont {
- position: relative;
- }
- .insurance .sharoncont .icon {
- position: absolute;
- left: -11px;
- top: 13px;
- }
- .insurance .shaIcon {
- position: relative;
- border: 1px solid #cccccc;
- height: 170px;
- margin-top: 20px;
- }
- .insurance .shaIcon a {
- cursor:pointer;
- color: #333333;
- }
- .insurance .shamatter {
- position: relative;
- border: 1px solid #cccccc;
- margin-top: 20px;
- }
- .insurance .shamatter .shuIcon {
- width: 4px;
- background-color: #79c71e;
- height: 15px;
- margin-top: 10px;
- margin-left: 8px;
- }
- .insurance .shamatter .hengIcon {
- width: 100%;
- background-color: #79c71e;
- height: 4px;
- margin-top: 10px;
- }
- .insurance .shamatter li {
- overflow: hidden;
- margin-top: 15px;
- cursor:pointer;
- }
- .insurance .shamatter li .pic {
- overflow: hidden;
- width: 100px;
- height: 80px;
- margin-left: 10px;
- }
- .insurance .shamatter li .pic img{
- width: 100%;
- height: 100%;
- }
- .insurance .shamatter li .newcont {
- overflow: hidden;
- padding-left: 10px;
- }
- .insurance .shamatter li .newcont h5{
- font-size: 14px;
- padding-top: 5px;
- }
- .insurance .shamatter .block {
- text-align: center;
- margin-top: 20px;
- margin-bottom: 20px;
- }
- </style>
|