Merge pull request #4259 from dataease/pr@dev_memory_component

Pr@dev memory component
This commit is contained in:
dataeaseShu 2023-01-03 16:41:04 +08:00 committed by GitHub
commit dbd02fa562
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 9 deletions

View File

@ -145,7 +145,8 @@
> >
<ux-table-column <ux-table-column
v-for="field in sheetObj.fields" v-for="field in sheetObj.fields"
:key="field.fieldName" :key="field.fieldName + sheetObj.id"
:column-key="field.fieldName + sheetObj.id"
min-width="200px" min-width="200px"
:field="field.fieldName" :field="field.fieldName"
:title="field.remarks" :title="field.remarks"

View File

@ -263,19 +263,16 @@ export default {
.info-item { .info-item {
font-family: PingFang SC; font-family: PingFang SC;
font-weight: 400; font-weight: 400;
margin-bottom: 8px !important; margin: 6px 0;
p {
margin: 0;
}
} }
.info-title { .info-title {
margin: 0!important;
font-weight: 600;
font-size: 12px; font-size: 12px;
margin-bottom: 4px !important;
color: var(--deTextSecondary, #646a73);
} }
.info-content { .info-content {
font-size: 14px; font-size: 12px;
color: var(--deTextPrimary, #1f2329); margin: 0!important;
} }
} }

View File

@ -109,6 +109,7 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="remarks" prop="remarks"
show-overflow-tooltip
:label="$t('datasource.field_description')" :label="$t('datasource.field_description')"
/> />
</el-table> </el-table>