修复选择项属性编辑器中value输入框每输入一个字符输入焦点消失的bug。

This commit is contained in:
vdpAdmin 2022-04-20 17:19:57 +08:00
parent 366486658b
commit 6d48f2271a
4 changed files with 12 additions and 3 deletions

View File

@ -157,7 +157,7 @@ Github仓库<a href="https://github.com/vform666/variant-form3-vite" target="
Gitee仓库<a href="https://gitee.com/vdpadmin/variant-form3-vite" target="_blank">https://gitee.com/vdpadmin/variant-form3-vite</a>
更新日志:<a href="https://www.vform666.com/pages/changelog/" target="_blank">https://www.vform666.com/pages/changelog/</a>
更新日志:<a href="https://www.vform666.com/changelog.html" target="_blank">https://www.vform666.com/changelog.html</a>
技术交流群微信搜索“vformAdmin”或者扫如下二维码加群

View File

@ -139,7 +139,7 @@
docUrl: 'https://www.vform666.com/document3.html',
gitUrl: 'https://github.com/vform666/variant-form3-vite',
chatUrl: 'https://www.vform666.com/chat-group.html',
subScribeUrl: 'https://www.vform666.com/subscribe.html',
subScribeUrl: 'https://www.vform666.com/pages/pro/',
scrollerHeight: 0,

View File

@ -2,7 +2,7 @@
<div class="option-items-pane">
<el-radio-group v-if="(selectedWidget.type === 'radio') || ((selectedWidget.type === 'select') && !selectedWidget.options.multiple)"
v-model="optionModel.defaultValue" @change="emitDefaultValueChange">
<draggable tag="ul" :list="optionModel.optionItems" item-key="value"
<draggable tag="ul" :list="optionModel.optionItems" item-key="id"
v-bind="{group:'optionsGroup', ghostClass: 'ghost', handle: '.drag-option'}">
<template #item="{ element: option, index: idx }">
<li>

File diff suppressed because one or more lines are too long