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> <template #defFooters>
<el-button text type="info" @click="openDialog"> <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> </el-button>
</template> </template>
</MdEditor> </MdEditor>

View File

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

View File

@ -33,7 +33,7 @@
<div @mousemove.stop @mousedown.stop @keydown.stop @click.stop> <div @mousemove.stop @mousedown.stop @keydown.stop @click.stop>
<el-button text @click="showNode = !showNode" class="mr-4"> <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 /> ><ArrowDownBold />
</el-icon> </el-icon>
</el-button> </el-button>

View File

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