fix: 网元信息编辑添加备注输入

This commit is contained in:
TsMask
2024-05-16 14:43:51 +08:00
parent 7c54e372e5
commit 6b461ead7c

View File

@@ -120,6 +120,7 @@ let modalState: ModalStateType = reactive({
dn: '',
vendorName: '',
province: '',
remark: '',
// 主机
hosts: [
{
@@ -601,6 +602,20 @@ onMounted(() => {
</a-col>
</a-row>
<a-form-item
:label="t('views.ne.neHost.remark')"
:label-col="{ span: 3 }"
:label-wrap="true"
>
<a-textarea
v-model:value="modalState.from.remark"
:auto-size="{ minRows: 1, maxRows: 6 }"
:maxlength="450"
:show-count="true"
:placeholder="t('common.inputPlease')"
/>
</a-form-item>
<!-- 主机连接配置 -->
<a-divider orientation="left">
{{ t('views.ne.neInfo.hostConfig') }}