💄 修改表单宽度.

This commit is contained in:
lijiahang
2024-03-08 13:42:54 +08:00
parent 4cef9b358e
commit b392ddf0e7
28 changed files with 80 additions and 87 deletions

View File

@@ -1,19 +1,18 @@
<template>
<a-drawer v-model:visible="visible"
:title="title"
:width="430"
:width="470"
:mask-closable="false"
:unmount-on-close="true"
:ok-button-props="{ disabled: loading }"
:cancel-button-props="{ disabled: loading }"
:on-before-ok="handlerOk"
@cancel="handleClose">
<a-spin class="full" :loading="loading">
<a-spin class="full modal-form" :loading="loading">
<a-form :model="formModel"
ref="formRef"
label-align="right"
:style="{ width: '380px' }"
:label-col-props="{ span: 6 }"
:label-col-props="{ span: 5 }"
:wrapper-col-props="{ span: 18 }"
:rules="formRules">
<!-- 名称 -->
@@ -28,10 +27,10 @@
placeholder="请输入命令"
allow-clear/>
</a-form-item>
<!-- 超时时间 0不超时 -->
<a-form-item field="timeout" label="超时时间秒 0不超时">
<!-- 超时时间 -->
<a-form-item field="timeout" label="超时时间">
<a-input-number v-model="formModel.timeout"
placeholder="请输入超时时间秒 0不超时"
placeholder="请输入超时时间 秒 0不超时"
hide-button />
</a-form-item>
<!-- 参数 -->

View File

@@ -15,7 +15,7 @@ export const command = [{
export const timeout = [{
required: true,
message: '请输入超时时间秒 0不超时'
message: '请输入超时时间 秒 0不超时'
}] as FieldRule[];
export const parameter = [{

View File

@@ -14,6 +14,7 @@ const columns = [
dataIndex: 'name',
slotName: 'name',
align: 'left',
width: 200,
ellipsis: true,
tooltip: true,
}, {
@@ -23,18 +24,6 @@ const columns = [
align: 'left',
ellipsis: true,
tooltip: true,
}, {
title: '超时时间',
dataIndex: 'timeout',
slotName: 'timeout',
align: 'left',
}, {
title: '参数',
dataIndex: 'parameter',
slotName: 'parameter',
align: 'left',
ellipsis: true,
tooltip: true,
}, {
title: '修改时间',
dataIndex: 'updateTime',
@@ -48,10 +37,12 @@ const columns = [
title: '修改人',
dataIndex: 'updater',
slotName: 'updater',
width: 90,
ellipsis: true,
}, {
title: '操作',
slotName: 'handle',
width: 130,
width: 180,
align: 'center',
fixed: 'right',
},