|
@@ -2153,8 +2153,11 @@ public class ExcelTabServiceImpl extends BaseServiceImpl<ExcelTabMapper, ExcelTa
|
|
.map(l -> {
|
|
.map(l -> {
|
|
String attr = l.attr("v-model");
|
|
String attr = l.attr("v-model");
|
|
System.out.println(attr);
|
|
System.out.println(attr);
|
|
- String[] split = attr.split("\\.");
|
|
|
|
- return split[1];
|
|
|
|
|
|
+ if(attr.indexOf("\\.")>=0){
|
|
|
|
+ String[] split = attr.split("\\.");
|
|
|
|
+ return split[1];
|
|
|
|
+ }
|
|
|
|
+ return null;
|
|
})
|
|
})
|
|
.collect(Collectors.toList());
|
|
.collect(Collectors.toList());
|
|
Long sigSize = table.getElementsByAttribute(":readonly").stream().count();
|
|
Long sigSize = table.getElementsByAttribute(":readonly").stream().count();
|