fix: 参数配置表单样式排齐
This commit is contained in:
@@ -73,7 +73,7 @@ function fnTabActiveTopTag(key: string | number) {
|
||||
tableState.arrayColumns.push({
|
||||
title: t('common.operate'),
|
||||
key: 'index',
|
||||
align: 'left',
|
||||
align: 'center',
|
||||
fixed: 'right',
|
||||
width: 5,
|
||||
});
|
||||
@@ -601,7 +601,7 @@ function arrayChildExpand(key: Record<string, any>, row: Record<string, any>) {
|
||||
tableState.arrayChildColumns.push({
|
||||
title: t('common.operate'),
|
||||
key: 'index',
|
||||
align: 'left',
|
||||
align: 'center',
|
||||
fixed: 'right',
|
||||
width: 5,
|
||||
});
|
||||
|
||||
@@ -1619,6 +1619,8 @@ onMounted(() => {
|
||||
autocomplete="off"
|
||||
:validate-on-rule-change="false"
|
||||
:validateTrigger="[]"
|
||||
:label-col="{ span: 6 }"
|
||||
:labelWrap="true"
|
||||
>
|
||||
<a-form-item
|
||||
v-for="item in modalState.data"
|
||||
|
||||
@@ -1663,13 +1663,15 @@ onMounted(() => {
|
||||
autocomplete="off"
|
||||
:validate-on-rule-change="false"
|
||||
:validateTrigger="[]"
|
||||
:label-col="{ span: 6 }"
|
||||
:labelWrap="true"
|
||||
>
|
||||
<a-form-item
|
||||
v-for="item in modalState.data"
|
||||
:label="item.display"
|
||||
:name="item.name"
|
||||
:required="item.optional === 'false'"
|
||||
style="margin-bottom: 2px"
|
||||
style="margin-bottom: 4px"
|
||||
>
|
||||
<a-tooltip placement="topLeft">
|
||||
<template #title v-if="item.comment">
|
||||
|
||||
@@ -113,9 +113,9 @@ function fnActiveConfigNode(key: string | number) {
|
||||
title: t('common.operate'),
|
||||
dataIndex: 'index',
|
||||
key: 'index',
|
||||
align: 'left',
|
||||
align: 'center',
|
||||
fixed: 'right',
|
||||
width: 5,
|
||||
width: 3,
|
||||
});
|
||||
arrayState.columns = columns;
|
||||
|
||||
@@ -590,9 +590,9 @@ function arrayChildExpand(
|
||||
title: t('common.operate'),
|
||||
dataIndex: 'index',
|
||||
key: 'index',
|
||||
align: 'left',
|
||||
align: 'center',
|
||||
fixed: 'right',
|
||||
width: 5,
|
||||
width: 3,
|
||||
});
|
||||
arrayChildState.columns = columns;
|
||||
|
||||
@@ -1458,13 +1458,15 @@ onMounted(() => {
|
||||
autocomplete="off"
|
||||
:validate-on-rule-change="false"
|
||||
:validateTrigger="[]"
|
||||
:label-col="{ span: 6 }"
|
||||
:labelWrap="true"
|
||||
>
|
||||
<a-form-item
|
||||
v-for="item in modalState.data"
|
||||
:label="item.display"
|
||||
:name="item.name"
|
||||
:required="item.optional === 'false'"
|
||||
style="margin-bottom: 2px"
|
||||
style="margin-bottom: 4px"
|
||||
>
|
||||
<a-tooltip placement="topLeft">
|
||||
<template #title v-if="item.comment">
|
||||
|
||||
Reference in New Issue
Block a user