表格默认折叠更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
31196e850e
commit
b96f5b9910
|
@ -57,7 +57,7 @@
|
||||||
:data="taskQuestions"
|
:data="taskQuestions"
|
||||||
row-key="Id"
|
row-key="Id"
|
||||||
border
|
border
|
||||||
default-expand-all
|
:expand-row-keys="expandedRows"
|
||||||
:height="height"
|
:height="height"
|
||||||
:tree-props="{children: 'Childrens', hasChildren: 'hasChildren'}"
|
:tree-props="{children: 'Childrens', hasChildren: 'hasChildren'}"
|
||||||
size="mini"
|
size="mini"
|
||||||
|
@ -319,7 +319,8 @@ export default {
|
||||||
assessmentQuestions: [],
|
assessmentQuestions: [],
|
||||||
tLesionCount: null,
|
tLesionCount: null,
|
||||||
ntLesionCount: null,
|
ntLesionCount: null,
|
||||||
openWindow: null
|
openWindow: null,
|
||||||
|
expandedRows: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -458,6 +459,18 @@ export default {
|
||||||
const arr = []
|
const arr = []
|
||||||
if (questions.length !== 0) {
|
if (questions.length !== 0) {
|
||||||
questions.forEach((item) => {
|
questions.forEach((item) => {
|
||||||
|
if (this.CriterionType === 21) {
|
||||||
|
if (!this.isShowDetail) {
|
||||||
|
if (!item.RowId) {
|
||||||
|
this.expandedRows.push(item.Id)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.expandedRows.push(item.Id)
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.expandedRows.push(item.Id)
|
||||||
|
}
|
||||||
// 过滤病灶标识 病灶名称 部位 器官 位置 是否淋巴结
|
// 过滤病灶标识 病灶名称 部位 器官 位置 是否淋巴结
|
||||||
// 非靶病灶和新病灶 过滤长径和短径信息
|
// 非靶病灶和新病灶 过滤长径和短径信息
|
||||||
// 非淋巴结靶病灶 过滤短径
|
// 非淋巴结靶病灶 过滤短径
|
||||||
|
|
Loading…
Reference in New Issue