Commit 7ad8ff6abbcaa0ce81f6fd8dfc9f80f24b56eacd
1 parent
f7790b8f
fix(views/chart/ContentConfigurations): 修复DEFECT-1150 当大屏设计里请求配置为普通的时候,选择框大小与websocket选择框大小不一致
Showing
1 changed file
with
10 additions
and
2 deletions
... | ... | @@ -208,8 +208,16 @@ defineExpose({ |
208 | 208 | :disabled="true" /> |
209 | 209 | |
210 | 210 | </SettingItemBox> |
211 | - | |
212 | - <SettingItemBox v-if="requestContentTypeRef === RequestContentTypeEnum.WEB_SOCKET"> | |
211 | + <!-- | |
212 | + /** | |
213 | + * ft 修改 | |
214 | + * 修改后的代码在注释之间,并标注好源代码和修改后代码,方便回溯 | |
215 | + * 源代码 无 | |
216 | + * 修改后代码 新增一句:item-right-style="{ gridTemplateColumns: '7fr 1fr' }" | |
217 | + * 优化普通和websocket表格长度不一样样式问题 | |
218 | + */ | |
219 | + --> | |
220 | + <SettingItemBox v-if="requestContentTypeRef === RequestContentTypeEnum.WEB_SOCKET" :item-right-style="{ gridTemplateColumns: '7fr 1fr' }"> | |
213 | 221 | <NCard v-if="requestParamsTypeRef === RequestParamsTypeEnum.PARAMS" class="dynamic-form"> |
214 | 222 | <NScrollbar style="max-height: 400px; box-sizing: border-box;"> |
215 | 223 | <DynamicForm ref="socketDynamicFormEl" :paramsItemList="getSelectedInterfaceParams" /> | ... | ... |