|
|
|
@ -146,7 +146,7 @@ |
|
|
|
|
style="width: 100%" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in scope.row.items" |
|
|
|
|
v-for="(item, index) in scope.row.lcItems" |
|
|
|
|
:key="index" |
|
|
|
|
:label="item.options" |
|
|
|
|
:value="item.itemId" |
|
|
|
@ -172,7 +172,7 @@ |
|
|
|
|
style="width: 100%" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="(item, index) in scope.row.items" |
|
|
|
|
v-for="(item, index) in scope.row.lcItems" |
|
|
|
|
:key="index" |
|
|
|
|
:label="item.options" |
|
|
|
|
:value="item.subjectId" |
|
|
|
@ -420,7 +420,7 @@ export default { |
|
|
|
|
} |
|
|
|
|
// 根据题目id,获取题目信息 |
|
|
|
|
if (item.isSubject && item.type && item.type != 4 && item.emptyOne) { |
|
|
|
|
await this.getSubjectData(item.emptyOne, index); |
|
|
|
|
// await this.getSubjectData(item.emptyOne, index); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -571,7 +571,7 @@ export default { |
|
|
|
|
let item = { |
|
|
|
|
...this.tableData[index], |
|
|
|
|
...res.subject, |
|
|
|
|
items: res.items |
|
|
|
|
lcItems: res.items |
|
|
|
|
}; |
|
|
|
|
this.$set(this.tableData, index, item); |
|
|
|
|
} |
|
|
|
|