fix: 修复组织管理样式错误

This commit is contained in:
Orange 2021-03-08 18:19:15 +08:00 committed by 老广
parent 01aa92adc0
commit a127b872cc
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<template>
<IBox :fa="icon" :type="type" :title="title" v-bind="$attrs">
<table style="width: 100%;table-layout:fixed;">
<table style="width: 100%;table-layout:fixed;" class="CardTable">
<tr>
<td colspan="2">
<Select2 ref="select2" v-model="select2.value" v-bind="select2" />

View File

@ -4,7 +4,7 @@
<GenericListTable ref="GenericListTable" :table-config="tableConfig" :header-actions="headerActions" />
</el-col>
<el-col :md="10" :sm="24">
<RelationCard type="primary" v-bind="memberRelationConfig">
<RelationCard type="primary" v-bind="memberRelationConfig" class="RelationCard">
<el-radio-group v-model="defaultOrgRole" style="padding: 8px">
<el-radio v-for="item in group" :key="item.value" :label="item.value">{{ item.label }}</el-radio>
</el-radio-group>
@ -131,5 +131,7 @@ export default {
</script>
<style scoped>
.RelationCard ::v-deep .CardTable{
table-layout:inherit !important;
}
</style>