|
@@ -3566,13 +3566,28 @@ function printView(data) {
|
|
|
// console.log('current',current);
|
|
|
if (current) {
|
|
|
if(current.length == 1){
|
|
|
- current[0].groupSign = '⊐'
|
|
|
+ current[0].groupSign =
|
|
|
+ `<span style="
|
|
|
+ display: inline-block;width: 5px;height: 5px;
|
|
|
+ border: 1px solid black;border-left: none">
|
|
|
+ </span>`
|
|
|
+ // '⊐'
|
|
|
} else {
|
|
|
current.forEach((item,index) => {
|
|
|
if(index == 0) {
|
|
|
- item.groupSign = '⌝'
|
|
|
+ item.groupSign =
|
|
|
+ `<span style="
|
|
|
+ display: inline-block;width: 5px;height: 5px;
|
|
|
+ border-right: 1px solid black;border-top: 1px solid black">
|
|
|
+ </span>`
|
|
|
+ // '⌝'
|
|
|
} else if(index == current.length - 1) {
|
|
|
- item.groupSign = '⌟'
|
|
|
+ item.groupSign =
|
|
|
+ `<span style="
|
|
|
+ display: inline-block;width: 5px;height: 5px;
|
|
|
+ border-right: 1px solid black;border-bottom: 1px solid black">
|
|
|
+ </span>`
|
|
|
+ // '⌟'
|
|
|
} else {
|
|
|
item.groupSign = ''
|
|
|
}
|