From ce7eaf97c37e476849c002ed8c720b4615965cda Mon Sep 17 00:00:00 2001
From: 明梦爽 <2972214568@qq.com>
Date: 星期二, 11 十月 2022 12:01:21 +0800
Subject: [PATCH] 更新login
---
src/components/page/introduce.vue | 119 +++++++++++++++++++++++++++++++----------------------------
1 files changed, 62 insertions(+), 57 deletions(-)
diff --git a/src/components/page/introduce.vue b/src/components/page/introduce.vue
index 9fb6ac3..5403c79 100644
--- a/src/components/page/introduce.vue
+++ b/src/components/page/introduce.vue
@@ -8,19 +8,14 @@
<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>
+ <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>
+ <div v-html="this.new.content" class="ql-editor"></div>
</el-col>
</el-card>
</el-row>
@@ -29,7 +24,7 @@
<script>
import globalTitle from '../globalTitle.vue'
-import {getMinTitle,getNewsList,getnew} from '../../api/api'
+import { getMinTitle, getNewsList, getnew } from '../../api/api'
export default {
name: 'introduce',
components: {
@@ -39,66 +34,73 @@
return {
cont: '',
menuList: [],
- newsList:[],
- content:'',
+ newsList: [],
+ new: {} //鏂伴椈瀵硅薄
}
},
- created() {
- },
+ created() {},
mounted() {
- this.getTitle();
+ this.getTitle()
},
watch: {
- menuList(n,o){
- this.cont = this.menuList[0].name;
- this.getnews(this.menuList[0]);
- this.getalone(this.newsList);
+ menuList(n, o) {
+ this.cont = this.menuList[0].name
+ this.getnews(this.menuList[0]) //鏀瑰彉瀵硅薄锛岃彍鍗曟爮鐨勪笢瑗胯鍐欏埌鐩戝惉灞炴�ч噷杈�
}
},
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);
- })
+ //鑾峰彇灏忔爣棰樼殑id
+ 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.cont = val.name
this.getnews(val)
},
- getnews(item){
+ //鑾峰彇鍒颁簡鏂伴椈鍒楄〃锛岄噷杈瑰彧鏈変竴涓璞�
+ 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);
- })
+ current: 1,
+ newsCategoryId: item.id,
+ size: 5
+ }
+ getNewsList(data)
+ .then(res => {
+ // console.log(res);
+ if (res.code == 200) {
+ this.newsList = res.data.records
+ this.getalone(this.newsList[0].id)
+ }
+ })
+ .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;
- })
+ //鑾峰彇鏂伴椈鍐呭,寰楀埌涓�涓柊闂诲璞�
+ getalone(id) {
+ const data = id
+ getnew(data)
+ .then(res => {
+ // console.log(res);
+ if (res.code == 200) {
+ this.new = res.data
+ console.log(this.new.content)
+ }
+ })
+ .catch(error => {
+ console.log(error)
+ })
}
}
}
@@ -119,4 +121,7 @@
.ft-black {
color: #000;
}
-</style>
\ No newline at end of file
+.ql-editor {
+ padding: 12px 0px !important;
+}
+</style>
--
Gitblit v1.8.0