Commit 3aaf27b7 authored by chenqikuai's avatar chenqikuai

fix

parent 28791da8
...@@ -17,12 +17,14 @@ ...@@ -17,12 +17,14 @@
<div class="tip text-center">请仔细填写作品资料,审核通过后将不能修改</div> <div class="tip text-center">请仔细填写作品资料,审核通过后将不能修改</div>
<AddFilingPerson <AddFilingPerson
v-model:visible="addFilingPersonVisible" v-model:visible="addFilingPersonVisible"
@add-success="getFilingPerson"
></AddFilingPerson> ></AddFilingPerson>
<ElForm :model="formModel" :rules="rules" ref="formRef"> <ElForm :model="formModel" :rules="rules" ref="formRef">
<CustomizeFormItem label="备案人" prop="filingPerson"> <CustomizeFormItem label="备案人" prop="filingPerson">
<sySelect <sySelect
ref="selectRef" ref="selectRef"
class="w-full selectFilingPerson" class="w-full selectFilingPerson"
popper-class="selectFilingPersonPopperClass"
v-model="formModel.filingPerson" v-model="formModel.filingPerson"
multiple multiple
placeholder="请选择备案人" placeholder="请选择备案人"
...@@ -453,7 +455,7 @@ const handleSubmit = () => { ...@@ -453,7 +455,7 @@ const handleSubmit = () => {
const filingPersonList = ref<iAuth[]>([]); const filingPersonList = ref<iAuth[]>([]);
onMounted(() => { function getFilingPerson() {
getAuths( getAuths(
"", "",
[ [
...@@ -470,6 +472,10 @@ onMounted(() => { ...@@ -470,6 +472,10 @@ onMounted(() => {
}); });
} }
}); });
}
onMounted(() => {
getFilingPerson();
}); });
</script> </script>
...@@ -495,4 +501,28 @@ onMounted(() => { ...@@ -495,4 +501,28 @@ onMounted(() => {
line-height: 36px; line-height: 36px;
} }
} }
.selectFilingPersonPopperClass {
.el-select-dropdown__item {
margin: 0 9px;
padding-left: 13px;
color: #191919;
padding-right: 13px;
font-weight: 400;
}
.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover {
background-color: white;
}
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover {
background-color: white;
}
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected,
.el-select-dropdown__item.selected.hover {
background-color: var(--el-fill-color-light) !important;
color: #191919;
font-weight: 400;
margin: 0 9px;
border-radius: 8px;
}
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment