diff --git a/src/App.vue b/src/App.vue index cb93f85..b817207 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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; +} diff --git a/src/views/final/content/ListContent.vue b/src/views/final/content/ListContent.vue index 83e2332..d48e93b 100644 --- a/src/views/final/content/ListContent.vue +++ b/src/views/final/content/ListContent.vue @@ -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; diff --git a/src/views/task/modal/CustomFieldModal.vue b/src/views/task/modal/CustomFieldModal.vue index abbb000..ccd1087 100644 --- a/src/views/task/modal/CustomFieldModal.vue +++ b/src/views/task/modal/CustomFieldModal.vue @@ -445,6 +445,7 @@ const moreThanSix = computed(() => { :class="{ fix: item.fix }" class="cursor-move draggable-item" > + {{ item.name }} diff --git a/src/views/worksheet/modal/CustomFieldModal.vue b/src/views/worksheet/modal/CustomFieldModal.vue index 2183cb7..45e9cac 100644 --- a/src/views/worksheet/modal/CustomFieldModal.vue +++ b/src/views/worksheet/modal/CustomFieldModal.vue @@ -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(() => {
自定义配置