代表推选样式修改

This commit is contained in:
=
2025-12-22 14:00:02 +08:00
parent 5c75104efd
commit dbda56a53e
2 changed files with 26 additions and 10 deletions
@@ -339,7 +339,16 @@ layout("/layouts/platform.html"){
}
})
</script>
<style>
.write-dialog .el-dialog__title {
font-size: 22px; /* 调整为您需要的大小 */
font-weight: 500;
}
.write-dialog .el-dialog__body {
padding-top: 0px;
}
</style>
<!--#
}
@@ -32,8 +32,7 @@ const write = {
<div class="info-content">
<i class="fa fa-info-circle info-icon"></i>
<div class="info-text">
<h3 class="info-title">推选信息</h3>
<p class="info-desc">您已被预选为{{ sessionName }}代表</p>
<h2 class="info-title" style="font-size: 18px;">推选信息</h2> <p class="info-desc">您已被预选为{{ sessionName }}代表</p>
<div class="info-details">
<p>推选单位:{{ formData.unionName }}</p>
<p>推选时间:{{ formData.pushTime }}</p>
@@ -48,7 +47,7 @@ const write = {
</div>
<el-tabs v-model="activeName">
<el-tab-pane label="填写信息" name="one">
<el-tab-pane label="填写信息" name="one" >
<el-form
ref="formRef"
:model="formData"
@@ -58,8 +57,7 @@ const write = {
:disabled="(formData && !['53ff0c2a-ba93-45e9-a9fd-db51cdab3080','97b0846b-22c6-4d34-9002-a6b67d592944'].includes(formData.taskKey)) || is_read"
>
<div class="form-section">
<h3 class="section-title">基本信息</h3>
<div class="form-grid">
<h2 class="section-title" style="font-size: 18px;">基本信息</h2> <div class="form-grid">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="姓名" prop="userName">
@@ -127,7 +125,7 @@ const write = {
<el-form-item label="职称" prop="professionalTitle">
<dict-select v-model="formData.professionalTitle" style="width: 100%"
placeholder="请选择职称"
code="technical_title_level"></dict-select>
code="TECHNICAL_TITLE_LEVEL"></dict-select>
</el-form-item>
</el-col>
<el-col :span="12">
@@ -445,15 +443,20 @@ const write = {
.container-x1 {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
padding: 0px;
}
.header-x {
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
margin-bottom: 20px;
margin-bottom: 1px;
}
::v-deep .el-tabs__item {
font-size: 18px;/* 填写信息 */
font-weight: 500;
}
.header-x .header-left {
@@ -508,6 +511,7 @@ const write = {
.notice-panel .notice-text {
color: #666;
}
.completion-panel {
background-color: white;
@@ -544,6 +548,7 @@ const write = {
background-color: white;
border-radius: 8px;
padding: 32px;
padding-top: 20px;
margin-bottom: 20px;
}
@@ -552,6 +557,7 @@ const write = {
background-color: #ebf5ff;
padding: 16px;
margin-bottom: 32px;
margin-top: 10px;
}
.info-box ::v-deep .info-content {
@@ -572,6 +578,7 @@ const write = {
.info-box .info-content .info-text ::v-deep .info-title {
font-weight: 600;
margin-bottom: 8px;
font-size: 18px; /* 推选信息没用 */
}
.info-box .info-content .info-text ::v-deep .info-desc {
@@ -594,7 +601,7 @@ const write = {
}
.form-section ::v-deep .section-title {
font-size: 18px;
font-size: 18px;/* 基本信息没用 */
font-weight: 500;
margin-bottom: 16px;
}