Merge pull request 'fix:样式修改' (#333) from fix/change_task into test

Reviewed-on: #333
pull/334/head
yaoshuli 1 year ago
commit 8f2763eeaf

@ -106,4 +106,7 @@ const getThemeOverrides = computed(() => {
.v-binder-follower-content { .v-binder-follower-content {
//left: -60px; //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> </style>

@ -1097,6 +1097,17 @@ defineExpose({
line-height: 24px; 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 { ::-webkit-scrollbar {
position: fixed; position: fixed;

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

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

Loading…
Cancel
Save