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); document.body.removeChild(eleLink);
}, },
downloadXmlFile() { downloadXmlFile() {
fileDownload(this.form.code, "激活码"); fileDownload(this.form.code, "_Activation_Code.lic");
}, },
}, },
}; };

View File

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

View File

@ -5,6 +5,22 @@
> >
<div slot="search-container" style="position: relative"> <div slot="search-container" style="position: relative">
<el-form :inline="true"> <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-form-item :label="$t('trials:reviewTrack:table:subjectCode')">
<el-input <el-input
@ -277,6 +293,7 @@
<el-button <el-button
v-hasPermi="['trials:readTask:reread']" v-hasPermi="['trials:readTask:reread']"
circle circle
:disabled="scope.row.TaskState > 0"
:title="$t('trials:readTask:button:reread')" :title="$t('trials:readTask:button:reread')"
icon="el-icon-collection" icon="el-icon-collection"
@click="openApplyReReading(scope.row)" @click="openApplyReReading(scope.row)"

View File

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