This commit is contained in:
kbing1981 2024-08-26 16:38:39 +08:00
parent ab30440d11
commit 6bfa677ac0
2 changed files with 26 additions and 8 deletions

View File

@ -25,7 +25,7 @@
<a-col :span="24">
<a-row>
<a-col :span="24">
<div style="width: 100%; padding: 2px 20px; font-size:12px; color:#18a689; border-left:3px solid #18a689;"
<div style="width: 100%;padding:8px 0px 5px 18px;font-size:12px; color:#666; border-left:3px solid #18a689;"
><span>请选择填写的教学大纲版本</span></div
>
</a-col>
@ -49,7 +49,7 @@
class="borderstyle"
>
<a-row>
<a-col :span="24" style="height: 40px; line-height: 40px; background-color: #f0f7f6">
<a-col :span="24" style="height: 40px; line-height: 40px; background-color: #f7fbfa">
<span class="title">{{ item.title }}</span>
</a-col>
<!-- 单行文本 1 -->

View File

@ -447,7 +447,7 @@
class="cardClass module-bg"
>
<template #extra
><span style="color: #ff8710; font-weight: bold"><Icon icon="ant-design:setting-outlined" /> 待设置</span>
><span class="card-label3"> 待设置</span>
</template>
<p class="sznrClass">尚未布置作业题目及具体要求</p>
<div style="text-align: right">
@ -462,7 +462,7 @@
class="cardClass module-bg"
>
<template #extra
><span style="color: #02aa56; font-weight: bold"><Icon icon="ant-design:check-outlined" />已发布</span>
><span class="card-label">已发布</span>
</template>
<div class="ellip-title">
<span class="ellipsis elli-title" :title="item.title">{{ item.title }}</span>
@ -505,7 +505,7 @@
bodyStyle="background: #fff;"
>
<template #extra
><span style="color: #ff8710; font-weight: bold"><Icon icon="ant-design:send-outlined" />待发布</span>
><span class="card-label2">待发布</span>
</template>
<div class="ellip-title">
<span class="ellipsis elli-title" :title="item.title">{{ item.title }}</span>
@ -1738,7 +1738,7 @@ onMounted(() => {
.module-bg{
background: #fff;
border-radius:6px;
;
border: 1px solid #e6e6e6;
}
.home-status{
color: #1ab394;
@ -1746,4 +1746,22 @@ onMounted(() => {
.home-status:hover{
color: #333;
}
.card-label{
background: #81cbbc;
border-radius:4px;
color: #fff;
padding: 2px 6px;
}
.card-label2{
background: #84c4fa;
border-radius:4px;
color: #fff;
padding: 2px 6px;
}
.card-label3{
background: #fabe84;
border-radius:4px;
color: #fff;
padding: 2px 6px;
}
</style>