首页-能力上架弹窗bug修改
This commit is contained in:
parent
3d6df3e3f4
commit
ea9f61ede8
|
@ -73,7 +73,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="ability-to-type">
|
<div class="ability-to-type">
|
||||||
<div class="title">能力类型选择</div>
|
<div class="title">能力类型选择</div>
|
||||||
<div class="content">
|
<div class="ability-to-type-content">
|
||||||
<div
|
<div
|
||||||
v-for="item in abilityToType"
|
v-for="item in abilityToType"
|
||||||
:key="item"
|
:key="item"
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
v-if="abilityToTypeFunctionData == '组件服务'"
|
v-if="abilityToTypeFunctionData == '组件服务'"
|
||||||
>
|
>
|
||||||
<div class="title">组件类型选择</div>
|
<div class="title">组件类型选择</div>
|
||||||
<div class="content">
|
<div class="component-type-content">
|
||||||
<!-- <a-checkbox-group
|
<!-- <a-checkbox-group
|
||||||
v-model:value="value1"
|
v-model:value="value1"
|
||||||
name="checkboxgroup"
|
name="checkboxgroup"
|
||||||
|
@ -156,7 +156,6 @@
|
||||||
}
|
}
|
||||||
let componentTypeValueOld = ref('')
|
let componentTypeValueOld = ref('')
|
||||||
function componentTypeValueFunction(item) {
|
function componentTypeValueFunction(item) {
|
||||||
debugger
|
|
||||||
if (componentTypeValueOld.value != item) {
|
if (componentTypeValueOld.value != item) {
|
||||||
componentTypeValue.value = item
|
componentTypeValue.value = item
|
||||||
componentTypeValueOld.value = item
|
componentTypeValueOld.value = item
|
||||||
|
@ -282,9 +281,11 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 0.26rem;
|
height: 0.26rem;
|
||||||
}
|
}
|
||||||
.content {
|
.component-type-content {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: unset;
|
||||||
|
border: unset;
|
||||||
|
background: unset;
|
||||||
.ant-radio-group {
|
.ant-radio-group {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr 1fr;
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
|
@ -294,9 +295,12 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.ability-to-type {
|
.ability-to-type {
|
||||||
.content {
|
.ability-to-type-content {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr 1fr;
|
grid-template-columns: 1fr 1fr 1fr;
|
||||||
|
height: unset;
|
||||||
|
border: unset;
|
||||||
|
background: unset;
|
||||||
div {
|
div {
|
||||||
margin-right: 0.15rem;
|
margin-right: 0.15rem;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
Loading…
Reference in New Issue