|
@@ -401,7 +401,14 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
this.selectedLine = { type, index };
|
|
|
- this.fileName = `第 ${index + 1} ${type === "row" ? "行" : "列"}`;
|
|
|
+ let number = index;
|
|
|
+ if (type === 'column') {
|
|
|
+ this.curQue.voiceMatrix.matrix[index].forEach(({ type }, i) => {
|
|
|
+ if (i >= index) return;
|
|
|
+ if (type === 'connection') number -= 1;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ this.fileName = `第 ${number + 1} ${type === "row" ? "行" : "列"}`;
|
|
|
},
|
|
|
|
|
|
playAudio() {
|
|
@@ -588,6 +595,7 @@ $select-color-brown-active: #a37557;
|
|
|
background-color: #f5f5f5;
|
|
|
border-left: 1px solid $border-color;
|
|
|
border-right: 1px solid $border-color;
|
|
|
+ word-break: break-word;
|
|
|
|
|
|
.matrix {
|
|
|
display: inline-grid;
|