1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
| <template>
| <div>
| <el-row>
| <globalTitle />
| </el-row>
| <el-row class="mart10">
| <!-- 小标题 -->
| <el-col :span="4" class="marr10">
| <ul>
| <li v-for="(item, index) in menuList" :key="index" class="liStylenone liPointer marb10" @click="changeMenu(item)">
| <b :class="cont == item.name ? 'ft-blue' : 'ft-black'">{{item.name}}</b>
| </li>
| </ul>
| </el-col>
| <!-- 新闻内容 -->
| <el-card class="box-card">
| <el-col :span="18">
| <!-- <div v-if="newsList.length > 0">
| <el-row class="marb10" :key="index" v-for="(item, index) in newsList">
| {{ item.title }}
| </el-row>
| </div> -->
| <div>{{ content }}</div>
| </el-col>
| </el-card>
| </el-row>
| </div>
| </template>
|
| <script>
| import globalTitle from '../globalTitle.vue'
| import {getMinTitle,getNewsList,getnew} from '../../api/api'
| export default {
| name: 'introduce',
| components: {
| globalTitle
| },
| data() {
| return {
| cont: '',
| menuList: [],
| newsList:[],
| content:'',
| }
| },
| created() {
| },
| mounted() {
| this.getTitle();
| },
| watch: {
| menuList(n,o){
| this.cont = this.menuList[0].name;
| this.getnews(this.menuList[0]);
| this.getalone(this.newsList);
| }
| },
| methods: {
| getTitle(){
| const data = Number(this.$route.query.id);
| getMinTitle(data).then(res => {
| console.log(res);
| if(res.code == 200){
| this.menuList = res.data
| }
| }).catch(err => {
| console.log(err);
| })
| },
| changeMenu(val) {
| this.cont = val.name;
| this.getnews(val)
| },
| getnews(item){
| const data = {
| current:1,
| newsCategoryId:item.id,
| size:5
| };
| getNewsList(data).then(res => {
| console.log(res);
| if(res.code == 200){
| // if(res.data.records.length == 1){
| this.newsList = [];
| this.getalone(res.data.records[0]);
| // }else{
| // this.content = '';
| // this.newsList = res.data.records
| // }
| }
| }).catch(error => {
| console.log(error);
| })
| },
| getalone(item){
| const data = item.id;
| getnew(data).then(res => {
| console.log(">>>>",res);
| this.content = res.data.content;
| this.data = res.data;
| })
| }
| }
| }
| </script>
| <style lang="less" scoped>
| ul {
| width: 200px;
| li {
| background-color: rgb(242, 243, 245);
| height: 50px;
| line-height: 50px;
| text-align: center;
| }
| }
| .ft-blue {
| color: rgb(9, 143, 252);
| }
| .ft-black {
| color: #000;
| }
| </style>
|
|