fix:样式修改 #333

Merged
yaoshuli merged 1 commits from fix/change_task into test 1 year ago

@ -106,4 +106,7 @@ const getThemeOverrides = computed(() => {
.v-binder-follower-content {
//left: -60px;
}
::v-deep( .n-form-item .n-form-item-feedback-wrapper .n-form-item-feedback.n-form-item-feedback--error){
display:none !important;
}
</style>

@ -1097,6 +1097,17 @@ defineExpose({
line-height: 24px;
}
}
.checking{
margin-right: 7px;
color: #fff;
width: 0.85rem;
height: 0.85rem;
font-size: 0.6rem;
padding-left: 0.08rem;
background-color: #1980ff;
border-left: 0;
border-top: 0;
}
/* 定义滚动条的宽度及背景颜色 */
::-webkit-scrollbar {
position: fixed;

@ -445,6 +445,7 @@ const moreThanSix = computed(() => {
:class="{ fix: item.fix }"
class="cursor-move draggable-item"
>
<SvgIcon name="drag" size="14" />
<span class="ml-2">{{ item.name }}</span>
</div>
</div>

@ -46,7 +46,6 @@ const showFixList = computed(() => {
return fixList.value.filter(i => i.name.includes(searchFixVal.value))
})
const showOnList = computed(() => {
console.log(searchFixVal.value)
return onList.value.filter(i => i.name.includes(searchFixVal.value))
})
const selectCount = computed(() => {
@ -419,13 +418,13 @@ const indeterminate = computed(() => {
</div>
<div class="titletwo">自定义配置</div>
<VueDraggable
v-model="showOnList"
v-model="onList"
class="draggable-ul"
:animation="150"
group="shared"
>
<div
v-for="item in showOnList"
v-for="item in onList"
:key="item.id"
:class="{ fix: item.fix }"
class="cursor-move draggable-item"

Loading…
Cancel
Save