|
@@ -60,9 +60,10 @@
|
|
|
<a-row>
|
|
<a-row>
|
|
|
<a-col :span="12"
|
|
<a-col :span="12"
|
|
|
v-for="(item, index) in selectedData.acclist"
|
|
v-for="(item, index) in selectedData.acclist"
|
|
|
- :key="index">
|
|
|
|
|
- <a-checkbox disabled
|
|
|
|
|
- :value="item.accountid">
|
|
|
|
|
|
|
+ :key="index"
|
|
|
|
|
+ :class="[index > 1 ? 'mt10' : '']">
|
|
|
|
|
+ <a-checkbox
|
|
|
|
|
+ :value="item.accountid" disabled>
|
|
|
{{item.accountname}}/{{item.accountid}}
|
|
{{item.accountname}}/{{item.accountid}}
|
|
|
</a-checkbox>
|
|
</a-checkbox>
|
|
|
</a-col>
|
|
</a-col>
|
|
@@ -127,5 +128,11 @@ export default defineComponent({
|
|
|
.ant-form.inlineForm {
|
|
.ant-form.inlineForm {
|
|
|
margin-top: 20px;
|
|
margin-top: 20px;
|
|
|
}
|
|
}
|
|
|
|
|
+ .checkboxGroupItem {
|
|
|
|
|
+ .ant-col.ant-form-item-control-wrapper {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
</style>;
|
|
</style>;
|