|
@@ -53,7 +53,7 @@ const [registerTable] = useTable({ |
|
@@ -53,7 +53,7 @@ const [registerTable] = useTable({ |
53
|
pagination: false,
|
53
|
pagination: false,
|
54
|
canResize: true,
|
54
|
canResize: true,
|
55
|
dataSource,
|
55
|
dataSource,
|
56
|
- maxHeight: 250,
|
56
|
+ maxHeight: 350,
|
57
|
rowKey: 'uuid',
|
57
|
rowKey: 'uuid',
|
58
|
})
|
58
|
})
|
59
|
|
59
|
|
|
@@ -138,7 +138,7 @@ defineExpose<ComponentExposeType>({ |
|
@@ -138,7 +138,7 @@ defineExpose<ComponentExposeType>({ |
138
|
<div>
|
138
|
<div>
|
139
|
<BasicForm @register="registerSource" />
|
139
|
<BasicForm @register="registerSource" />
|
140
|
</div>
|
140
|
</div>
|
141
|
- <section class="w-full h-40">
|
141
|
+ <section class="w-full">
|
142
|
<BasicTable @register="registerTable">
|
142
|
<BasicTable @register="registerTable">
|
143
|
<template #bodyCell="{ column, record }">
|
143
|
<template #bodyCell="{ column, record }">
|
144
|
<template
|
144
|
<template
|
|
@@ -175,7 +175,7 @@ defineExpose<ComponentExposeType>({ |
|
@@ -175,7 +175,7 @@ defineExpose<ComponentExposeType>({ |
175
|
<Input v-model:value="record.title" placeholder="请输入标签" class="!w-full" />
|
175
|
<Input v-model:value="record.title" placeholder="请输入标签" class="!w-full" />
|
176
|
</template>
|
176
|
</template>
|
177
|
<template v-if="column.key === 'flowSpeed' && getDesign.event === ActTypeEnum.DYNAMIC">
|
177
|
<template v-if="column.key === 'flowSpeed' && getDesign.event === ActTypeEnum.DYNAMIC">
|
178
|
- <InputNumber v-model:value="record.flowSpeed" placeholder="请输入流速" class="!w-full" />
|
178
|
+ <InputNumber v-model:value="record.flowSpeed" placeholder="请输入流速" :max="100" :min="0" class="!w-full" />
|
179
|
</template>
|
179
|
</template>
|
180
|
<template v-if="column.key === 'action'">
|
180
|
<template v-if="column.key === 'action'">
|
181
|
<TableAction
|
181
|
<TableAction
|
|
@@ -210,7 +210,9 @@ defineExpose<ComponentExposeType>({ |
|
@@ -210,7 +210,9 @@ defineExpose<ComponentExposeType>({ |
210
|
</template>
|
210
|
</template>
|
211
|
|
211
|
|
212
|
<style lang="less" scoped>
|
212
|
<style lang="less" scoped>
|
213
|
-:deep(.ant-table-cell>.css-dev-only-do-not-override-eq3tly) {
|
|
|
214
|
- margin: 0 !important
|
213
|
+:deep(.ant-table-cell) {
|
|
|
214
|
+ .ant-form-item{
|
|
|
215
|
+ margin: 0 !important
|
|
|
216
|
+ }
|
215
|
}
|
217
|
}
|
216
|
</style> |
218
|
</style> |