Compare commits

..

No commits in common. "a239bccc90eb992b62d2ede23c7a9a58cf8f280f" and "437b4377ed9b639a97ebea969b804c5fbd3c6b00" have entirely different histories.

3 changed files with 3 additions and 29 deletions

View File

@ -24,20 +24,6 @@
label="CDISC导出" label="CDISC导出"
name="CDISC" name="CDISC"
> >
<el-tabs type="border-card" v-model="CDISCCriterionId">
<el-tab-pane
:label="i.TrialReadingCriterionName"
:name="i.TrialReadingCriterionId"
v-for="i of trialCriterionList"
:key="i.TrialReadingCriterionId"
>
<exportList
v-if="CDISCCriterionId === i.TrialReadingCriterionId && activeName === 'CDISC'"
:trialReadingCriterionId="i.TrialReadingCriterionId"
:data="data"
/>
</el-tab-pane>
</el-tabs>
</el-tab-pane> </el-tab-pane>
<el-tab-pane <el-tab-pane
label="报表导出配置" label="报表导出配置"
@ -99,7 +85,6 @@ export default {
reportCriterionId: null, reportCriterionId: null,
trialId: null, trialId: null,
activeName: 'report', activeName: 'report',
CDISCCriterionId:'',
reportConfigCriterionId: '', reportConfigCriterionId: '',
CDISCCriterionId: '' CDISCCriterionId: ''
} }
@ -123,7 +108,6 @@ export default {
if (res.IsSuccess) { if (res.IsSuccess) {
this.trialCriterionList = res.Result this.trialCriterionList = res.Result
this.reportCriterionId = this.trialCriterionList[0].TrialReadingCriterionId this.reportCriterionId = this.trialCriterionList[0].TrialReadingCriterionId
this.CDISCCriterionId = this.trialCriterionList[0].TrialReadingCriterionId
this.reportConfigCriterionId = this.trialCriterionList[0].TrialReadingCriterionId this.reportConfigCriterionId = this.trialCriterionList[0].TrialReadingCriterionId
this.CDISCCriterionId = this.trialCriterionList[0].TrialReadingCriterionId this.CDISCCriterionId = this.trialCriterionList[0].TrialReadingCriterionId
} }

View File

@ -33,12 +33,7 @@
width="500" width="500"
> >
<template v-slot="scope"> <template v-slot="scope">
<el-input <el-input v-model="scope.row.CDISCCode" placeholder="CDISC编码"></el-input>
v-model="scope.row.CDISCCode"
placeholder="CDISC编码"
size="mini"
>
</el-input>
</template> </template>
</el-table-column> </el-table-column>
@ -72,12 +67,7 @@ export default {
async getConfigInfo() { async getConfigInfo() {
try { try {
this.loading = true this.loading = true
let res = await getTrialQuestionExportResult( let res = await getTrialQuestionExportResult({trialReadingCriterionId: this.trialReadingCriterionId})
{
trialReadingCriterionId: this.trialReadingCriterionId,
exportType: this.exportType
}
)
if (res.IsSuccess) { if (res.IsSuccess) {
this.exportInfo = res.Result this.exportInfo = res.Result
} }

View File

@ -5,7 +5,7 @@
border border
stripe stripe
height="500"> height="500">
<el-table-column label="" width="50"> <el-table-column label="" :min-width="50">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.$index + 1 }} {{ scope.$index + 1 }}
</template> </template>