Merge branch 'sprint/fixbug_hufangzhou_15645' into 'master'

* Fix bug #15645.

See merge request easycorp/zentaopms!3129
This commit is contained in:
朱金勇
2022-04-26 07:08:35 +00:00
+4 -1
View File
@@ -415,7 +415,10 @@ try {
},
del(data, index) {
if(data.length <= 1) return;
data.splice(index, 1)
for(let i = index+1; i < data.length; i++){
if(data[i].sub == data[index].sub) return data.splice(index, i - index)
}
data.splice(index, data.length - index)
},
changeType() {
if (!this.params[this.structType] || this.params[this.structType].length > 0) {