页面button颜色统一,表格不可选择页面数量

This commit is contained in:
zhangyc
2022-12-11 11:46:52 +08:00
parent 6fc160ae79
commit 65fbc3eba4
84 changed files with 1642 additions and 2633 deletions

View File

@@ -17,7 +17,7 @@
<span style="margin-right: 3px">测评名称</span>
</div>
<div class="btnbox">
<a-input v-model:value="inputV1" style="width: 424px; height: 32px" placeholder="请输入测评名称"
<a-input v-model:value="inputV1" style="width: 400px; height: 40px; border-radius: 8px;" placeholder="请输入测评名称"
show-count
:maxlength="20" />
</div>
@@ -51,7 +51,7 @@
<div class="btnbox">
<a-range-picker
show-time
style="width: 424px" v-model:value="time" format="YYYY-MM-DD HH:mm:ss"
style="width: 400px; height: 40px; border-radius: 8px;" v-model:value="time" format="YYYY-MM-DD HH:mm"
:placeholder="[' 开始时间', ' 结束时间']" />
</div>
</div>
@@ -61,7 +61,7 @@
</div>
<div class="textarea">
<a-textarea show-count :maxlength="200" v-model:value="description" placeholder="请输入测评说明"
style="width: 424px;" allowClear :rows="6"/>
style="width:400px;" allowClear :rows="6"/>
</div>
</div>
@@ -548,6 +548,37 @@ export default {
color: #fff;
}
}
.main_table {
position: relative;
padding-bottom: 80px;
.ant-checkbox-wrapper {
align-items: center;
margin-top: -2px;
}
.ant-table-selection-column {
padding: 0px !important;
padding-left: 5px !important;
}
.ant-table-thead > tr > th {
background-color: rgba(239, 244, 252, 1);
}
th.h {
background-color: #eff4fc !important;
}
.ant-table-tbody
> tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
> td {
background: #f6f9fd;
}
.pa {
left: 0;
width: 100%;
display: flex;
justify-content: center;
position: absolute;
bottom: 20px;
}
}
}
}
</style>