mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-13 21:06:42 +08:00
修改
This commit is contained in:
@@ -1079,15 +1079,16 @@
|
|||||||
|
|
||||||
.course-type {
|
.course-type {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
// left: 0;
|
||||||
bottom: 0;
|
top: 0;
|
||||||
|
right: 0;
|
||||||
height: 20;
|
height: 20;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
padding: 0px 8px;
|
padding: 0px 8px;
|
||||||
background: #f99000;
|
background: #f99000;
|
||||||
border-radius: 0px 12px 0px 0px;
|
border-radius: 0px 0px 0px 10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<div class="xcontent portal-content">
|
<div class="xcontent portal-content">
|
||||||
<div class="msg-nav">
|
<div class="msg-nav">
|
||||||
<div style="display: flex;align-items: center;">
|
<div style="display: flex;align-items: center;">
|
||||||
<div><el-checkbox v-model="checkAll" :indeterminate="isIndeterminate">全选</el-checkbox></div>
|
<div><el-checkbox v-model="checkAll" :indeterminate="isIndeterminate">多选</el-checkbox></div>
|
||||||
<!-- <el-radio-group style="padding-left: 20px;" @change="queryMessage(true)" v-model="queryData.isRead">
|
<!-- <el-radio-group style="padding-left: 20px;" @change="queryMessage(true)" v-model="queryData.isRead">
|
||||||
<el-radio :label="null">全部</el-radio>
|
<el-radio :label="null">全部</el-radio>
|
||||||
<el-radio :label="false">未读</el-radio>
|
<el-radio :label="false">未读</el-radio>
|
||||||
@@ -17,8 +17,8 @@
|
|||||||
</el-radio-group> -->
|
</el-radio-group> -->
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- <el-button type="text" icon="el-icon-remove" @click="isReadChooseList">设置已读</el-button> -->
|
<el-button class="navbut" type="text" @click="isReadChooseList">设置已读</el-button>
|
||||||
<el-button type="text" icon="el-icon-remove" @click="delChooseList">删除所选</el-button>
|
<el-button class="navbut" type="text" @click="delChooseList">删除所选</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="background-color: #FFFFFF;min-height: 600px;">
|
<div style="background-color: #FFFFFF;min-height: 600px;">
|
||||||
@@ -27,8 +27,8 @@
|
|||||||
<div class="msg-top">
|
<div class="msg-top">
|
||||||
<div>
|
<div>
|
||||||
<span style="padding-right: 10px;"><el-checkbox v-model="item.checked" @change="setCheckAll"></el-checkbox></span>
|
<span style="padding-right: 10px;"><el-checkbox v-model="item.checked" @change="setCheckAll"></el-checkbox></span>
|
||||||
<span v-if="!item.isRead" style="font-size:14px;padding:2px;border: 1px dotted #ff0000;color: #ff0000;margin-right: 5px">未读</span>
|
<span v-if="!item.isRead" style="font-size:12px;padding:5px 7px; border-radius: 2px;background: #FF6562;color: #fff;margin-right: 5px">未读</span>
|
||||||
<span v-else style="font-size:14px;padding:2px;border: 1px dotted #1EA0FA;color: #1EA0FA;margin-right: 5px">已读</span>
|
<span v-else style="font-size:14px;padding:5px 7px; background: #eee; border-radius: 2px; color: #666666;margin-right: 5px">已读</span>
|
||||||
<span>{{ item.title }}</span>
|
<span>{{ item.title }}</span>
|
||||||
<!-- <span class="msg-time"></span> -->
|
<!-- <span class="msg-time"></span> -->
|
||||||
</div>
|
</div>
|
||||||
@@ -241,9 +241,19 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
.navbut{
|
||||||
|
width: 110px;
|
||||||
|
height: 30px;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-left: 25px;
|
||||||
|
text-align: center;
|
||||||
|
border: 1px solid #0078FC;
|
||||||
|
padding: 0;
|
||||||
|
color: #0078FC ;
|
||||||
|
}
|
||||||
.msg-nav {
|
.msg-nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
// justify-content: space-between;
|
||||||
border-bottom: 1px solid #f5f5f5;
|
border-bottom: 1px solid #f5f5f5;
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
|
|||||||
Reference in New Issue
Block a user