一致性分析受试者分配新增字段显示规则
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-08-15 14:22:27 +08:00
parent 4d97b9992c
commit 5d8c0f99b9
1 changed files with 5 additions and 2 deletions

View File

@ -906,7 +906,7 @@
style="margin-top: 40px" style="margin-top: 40px"
:IsSelfAnalysis="IsSelfAnalysis" :IsSelfAnalysis="IsSelfAnalysis"
:changeNum="changeNum" :changeNum="changeNum"
:other-info="OtherInfo" :other-info="RuleOtherInfo"
@close=" @close="
() => { () => {
ReaderRulesVisible2 = false; ReaderRulesVisible2 = false;
@ -958,7 +958,7 @@
> >
<DoctorConsistentRuleSubjectTable <DoctorConsistentRuleSubjectTable
:data="rowData" :data="rowData"
:other-info="OtherInfo" :other-info="RuleOtherInfo"
@close=" @close="
() => { () => {
DoctorConsistentRuleSubjectTableVisible = false; DoctorConsistentRuleSubjectTableVisible = false;
@ -1184,6 +1184,7 @@ export default {
btnLoading: false, btnLoading: false,
rowData: {}, rowData: {},
OtherInfo: {}, OtherInfo: {},
RuleOtherInfo: {},
title: null, title: null,
SelectList: [], SelectList: [],
TaskConsistentRuleList: [], TaskConsistentRuleList: [],
@ -1470,6 +1471,7 @@ export default {
.then((res) => { .then((res) => {
if (res.OtherInfo) { if (res.OtherInfo) {
this.ReaderRulesFormVisible = false; this.ReaderRulesFormVisible = false;
this.RuleOtherInfo = res.OtherInfo;
} else { } else {
this.ReaderRulesFormVisible = true; this.ReaderRulesFormVisible = true;
} }
@ -1522,6 +1524,7 @@ export default {
.then((res) => { .then((res) => {
if (res.OtherInfo) { if (res.OtherInfo) {
this.ReaderRulesFormVisible = false; this.ReaderRulesFormVisible = false;
this.RuleOtherInfo = res.OtherInfo;
} else { } else {
this.ReaderRulesFormVisible = true; this.ReaderRulesFormVisible = true;
} }