Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/hir_web into main
continuous-integration/drone/push Build is passing Details

main
caiyiling 2024-05-08 14:08:32 +08:00
commit f31ffb4b5e
4 changed files with 22 additions and 5 deletions

View File

@ -210,7 +210,7 @@ export default {
document.body.removeChild(eleLink);
},
downloadXmlFile() {
fileDownload(this.form.code, "激活码");
fileDownload(this.form.code, "_Activation_Code.lic");
},
},
};

View File

@ -318,7 +318,7 @@ export default {
},
//
async getCode() {
fileDownload(this.form.Authorization, "项目码");
fileDownload(this.form.Authorization, "_Request_Code.req");
},
//
uploadFile(file) {

View File

@ -5,6 +5,22 @@
>
<div slot="search-container" style="position: relative">
<el-form :inline="true">
<!-- 阅片标准 -->
<el-form-item :label="$t('trials:processCfg:form:criterion')">
<el-select
v-model="searchData.TrialReadingCriterionId"
clearable
filterable
style="width: 150px"
>
<el-option
v-for="item of trialCriterionList"
:key="item.TrialReadingCriterionId"
:label="item.TrialReadingCriterionName"
:value="item.TrialReadingCriterionId"
/>
</el-select>
</el-form-item>
<!-- 受试者编号 -->
<el-form-item :label="$t('trials:reviewTrack:table:subjectCode')">
<el-input
@ -277,6 +293,7 @@
<el-button
v-hasPermi="['trials:readTask:reread']"
circle
:disabled="scope.row.TaskState > 0"
:title="$t('trials:readTask:button:reread')"
icon="el-icon-collection"
@click="openApplyReReading(scope.row)"

View File

@ -572,8 +572,8 @@ export default {
changeURLStatic("TaskName", "");
}
this.trialId = this.$route.query.trialId;
this.getSite();
// this.getList()
// this.getSite();
this.getList();
this.getTrialCriterionList();
},
methods: {
@ -594,7 +594,7 @@ export default {
getList() {
this.loading = true;
this.searchData.TrialId = this.trialId;
this.searchData.TrialReadingCriterionId = this.TrialReadingCriterionId;
// this.searchData.TrialReadingCriterionId = this.TrialReadingCriterionId;
getIRReReadingTaskList(this.searchData)
.then((res) => {
this.list = res.Result.CurrentPageData;