@@ -10728,6 +10728,7 @@ var SelectLinkageField = {
10728
10728
// 选择框 vnode
10729
10729
10730
10730
return this . $createElement ( Widget , {
10731
+ key : "fieldSelect_" . concat ( this . combiningType ) ,
10731
10732
class : _defineProperty ( { } , "fieldSelect_" . concat ( this . combiningType ) , true ) ,
10732
10733
props : _objectSpread2 ( {
10733
10734
isFormData : false ,
@@ -10793,6 +10794,7 @@ var SelectLinkageField = {
10793
10794
var origSchema = Object . assign ( { } , this . schema ) ;
10794
10795
delete origSchema [ this . combiningType ] ;
10795
10796
originVnode = h ( SchemaField , {
10797
+ key : "origin_" . concat ( this . combiningType ) ,
10796
10798
class : ( _class2 = { } , _defineProperty ( _class2 , "" . concat ( this . combiningType , "_originBox" ) , true ) , _defineProperty ( _class2 , "" . concat ( pathClassName , "-originBox" ) , true ) , _class2 ) ,
10797
10799
props : _objectSpread2 ( _objectSpread2 ( { } , this . $props ) , { } , {
10798
10800
schema : origSchema // needValidFieldGroup: false // 单独校验,这里无需处理
@@ -10802,7 +10804,7 @@ var SelectLinkageField = {
10802
10804
} // 选择附加的节点
10803
10805
10804
10806
10805
- var childrenVnode = [ this . getSelectBoxVnode ( ) ] ; // 当前选中的 oneOf 附加的节点
10807
+ var childrenVnodeList = [ this . getSelectBoxVnode ( ) ] ; // 当前选中的 oneOf 附加的节点
10806
10808
10807
10809
var curSelectSchema = this . selectList [ this . curSelectIndex ] ;
10808
10810
@@ -10825,7 +10827,8 @@ var SelectLinkageField = {
10825
10827
} ) , function ( key ) {
10826
10828
return key === _this2 . combiningType ? undefined : "err:" . concat ( key ) ;
10827
10829
} ) ;
10828
- childrenVnode . push ( h ( SchemaField , {
10830
+ childrenVnodeList . push ( h ( SchemaField , {
10831
+ key : "appendSchema_" . concat ( this . combiningType ) ,
10829
10832
props : _objectSpread2 ( _objectSpread2 ( { } , this . $props ) , { } , {
10830
10833
schema : curSelectSchema ,
10831
10834
required : this . required ,
@@ -10841,7 +10844,7 @@ var SelectLinkageField = {
10841
10844
} // oneOf 校验 vnode
10842
10845
10843
10846
10844
- childrenVnode . push ( h ( Widget , {
10847
+ childrenVnodeList . push ( h ( Widget , {
10845
10848
class : _defineProperty ( {
10846
10849
validateWidget : true
10847
10850
} , "validateWidget-" . concat ( this . combiningType ) , true ) ,
@@ -10854,10 +10857,11 @@ var SelectLinkageField = {
10854
10857
}
10855
10858
} ) ) ;
10856
10859
return h ( 'div' , [ originVnode , h ( 'div' , {
10860
+ key : "appendBox_" . concat ( this . combiningType ) ,
10857
10861
class : ( _class4 = {
10858
10862
appendCombining_box : true
10859
10863
} , _defineProperty ( _class4 , "" . concat ( this . combiningType , "_appendBox" ) , true ) , _defineProperty ( _class4 , "" . concat ( pathClassName , "-appendBox" ) , true ) , _class4 )
10860
- } , [ childrenVnode ] ) ] ) ;
10864
+ } , childrenVnodeList ) ] ) ;
10861
10865
}
10862
10866
} ;
10863
10867
0 commit comments