fix(缺陷管理): 缺陷管理右侧字段部分设置最小宽度

--bug=1036454 --user=宋天阳 【缺陷管理】编辑缺陷,内容较长,页面显示优化 https://www.tapd.cn/55049933/s/1470413
This commit is contained in:
song-tianyang 2024-03-06 16:00:12 +08:00 committed by 刘瑞斌
parent c6247457a9
commit 8daf876eef
1 changed files with 10 additions and 8 deletions

View File

@ -122,14 +122,16 @@
</div>
<a-divider class="ml-[16px]" direction="vertical" />
<div class="right mt-[16px] max-w-[433px] grow pr-[24px]">
<MsFormCreate ref="formCreateRef" v-model:formItem="formItem" v-model:api="fApi" :form-rule="formRules" />
<a-form-item field="tag" :label="t('bugManagement.tag')">
<MsTagsInput
v-model:model-value="form.tags"
:placeholder="t('bugManagement.edit.tagPlaceholder')"
allow-clear
/>
</a-form-item>
<div style="min-width: 250px; overflow: auto">
<MsFormCreate ref="formCreateRef" v-model:formItem="formItem" v-model:api="fApi" :form-rule="formRules" />
<a-form-item field="tag" :label="t('bugManagement.tag')">
<MsTagsInput
v-model:model-value="form.tags"
:placeholder="t('bugManagement.edit.tagPlaceholder')"
allow-clear
/>
</a-form-item>
</div>
</div>
</div>
</a-form>