fix: 修改部分样式

This commit is contained in:
wangdan-fit2cloud 2024-12-03 16:28:15 +08:00
parent 0c817a8447
commit f818aa8fe7
4 changed files with 116 additions and 114 deletions

View File

@ -9,7 +9,7 @@
>
<template #defFooters>
<el-button text type="info" @click="openDialog">
<AppIcon iconName="app-magnify" style="font-size: 16px"></AppIcon>
<AppIcon class="color-secondary" iconName="app-magnify" style="font-size: 16px"></AppIcon>
</el-button>
</template>
</MdEditor>

View File

@ -1,3 +1,6 @@
.md-editor {
font-weight: 400;
}
.md-editor-preview {
padding: 0;
margin: 0;

View File

@ -33,7 +33,7 @@
<div @mousemove.stop @mousedown.stop @keydown.stop @click.stop>
<el-button text @click="showNode = !showNode" class="mr-4">
<el-icon class="arrow-icon" :class="showNode ? 'rotate-180' : ''"
<el-icon class="arrow-icon color-secondary" :class="showNode ? 'rotate-180' : ''"
><ArrowDownBold />
</el-icon>
</el-button>

View File

@ -1,5 +1,7 @@
<template>
<NodeContainer :nodeModel="nodeModel">
<h5 class="title-decoration-1 mb-8">节点设置</h5>
<el-card shadow="never" class="card-never" style="--el-card-padding: 12px">
<el-form
@submit.prevent
:model="form_data"
@ -40,7 +42,7 @@
</el-form-item>
<el-form-item label="表单配置" @click.prevent>
<template #label>
<div class="flex-between mb-16">
<div class="flex-between">
<h5 class="lighter">{{ '表单配置' }}</h5>
<el-button link type="primary" @click="openAddFormCollect()">
<el-icon class="mr-4">
@ -51,11 +53,7 @@
</div></template
>
<el-table
v-if="form_data.form_field_list.length > 0"
:data="form_data.form_field_list"
class="mb-16"
>
<el-table class="border" v-if="form_data.form_field_list.length > 0" :data="form_data.form_field_list">
<el-table-column prop="field" label="参数">
<template #default="{ row }">
<span :title="row.field" class="ellipsis-1">{{ row.field }}</span>
@ -117,6 +115,7 @@
</el-table>
</el-form-item>
</el-form>
</el-card>
<AddFormCollect ref="addFormCollectRef" :addFormField="addFormField"></AddFormCollect>
<EditFormCollect ref="editFormCollectRef" :editFormField="editFormField"></EditFormCollect>
</NodeContainer>