mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-11 03:46:44 +08:00
修改问题
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 3.3 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 521 KiB After Width: | Height: | Size: 525 KiB |
@@ -42,7 +42,7 @@
|
|||||||
<el-dropdown-item command="four" divided>U选小课堂</el-dropdown-item>
|
<el-dropdown-item command="four" divided>U选小课堂</el-dropdown-item>
|
||||||
<el-dropdown-item command="five" divided>社招新员工</el-dropdown-item>
|
<el-dropdown-item command="five" divided>社招新员工</el-dropdown-item>
|
||||||
<el-dropdown-item command="six" divided>贡献者专区</el-dropdown-item>
|
<el-dropdown-item command="six" divided>贡献者专区</el-dropdown-item>
|
||||||
<el-dropdown-item command="seven" divided>感恩教师节</el-dropdown-item>
|
<el-dropdown-item command="seven" divided>教师专区</el-dropdown-item>
|
||||||
</el-dropdown-menu>
|
</el-dropdown-menu>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
<div class="xcontent2-main">
|
<div class="xcontent2-main">
|
||||||
<div class="modules-list" style="margin-top: 0;">
|
<div class="modules-list" style="margin-top: 0;">
|
||||||
<div class="bgc">
|
<div class="bgc">
|
||||||
<div class="title">教师节活动通知</div>
|
<div class="title">{{ name }}</div>
|
||||||
<!--内容列表内容-->
|
<!--内容列表内容-->
|
||||||
<div class="timeAndAuthor">
|
<div class="timeAndAuthor">
|
||||||
<div class="author">发布人:{{ createName }}</div>
|
<div class="author">发布人:{{ createName }}</div>
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="topTitle">通知内容</div>
|
<div class="topTitle">通知内容</div>
|
||||||
<div class="noticeContent">{{ content }}</div>
|
<div class="noticeContent" style="white-space: pre;">{{ content }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -46,17 +46,19 @@ export default {
|
|||||||
return {
|
return {
|
||||||
content: '',
|
content: '',
|
||||||
createName: '',
|
createName: '',
|
||||||
createTime: ''
|
createTime: '',
|
||||||
|
name: ''
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: { timeShow },
|
components: { timeShow },
|
||||||
mounted() {
|
mounted() {
|
||||||
noticeDataById(this.$route.query.id).then((result) => {
|
noticeDataById(this.$route.query.id).then((result) => {
|
||||||
console.log(result);
|
console.log(result);
|
||||||
const { content, createName, createTime } = result.data
|
const { content, createName, createTime, name } = result.data
|
||||||
this.content = content
|
this.content = content
|
||||||
this.createTime = createTime
|
this.createTime = createTime
|
||||||
this.createName = createName
|
this.createName = createName
|
||||||
|
this.name = name
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -90,7 +92,7 @@ export default {
|
|||||||
content: url(../../assets/images//grateful/logo.png);
|
content: url(../../assets/images//grateful/logo.png);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 40px;
|
left: 40px;
|
||||||
top: 16px;
|
top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -143,4 +145,5 @@ export default {
|
|||||||
.noticeContent {
|
.noticeContent {
|
||||||
padding: 0 80px;
|
padding: 0 80px;
|
||||||
}
|
}
|
||||||
}</style>
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -138,7 +138,7 @@ export default {
|
|||||||
content: url(../../assets/images//grateful/logo.png);
|
content: url(../../assets/images//grateful/logo.png);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 40px;
|
left: 40px;
|
||||||
top: 16px;
|
top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user