授权文件下载名称变更、已阅列表添加阅片标准查询条件
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
4b915c152e
commit
6876e42116
|
@ -210,7 +210,7 @@ export default {
|
|||
document.body.removeChild(eleLink);
|
||||
},
|
||||
downloadXmlFile() {
|
||||
fileDownload(this.form.code, "激活码");
|
||||
fileDownload(this.form.code, "_Activation_Code.lic");
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
@ -318,7 +318,7 @@ export default {
|
|||
},
|
||||
// 下载
|
||||
async getCode() {
|
||||
fileDownload(this.form.Authorization, "项目码");
|
||||
fileDownload(this.form.Authorization, "_Request_Code.req");
|
||||
},
|
||||
// 上传并读取文件
|
||||
uploadFile(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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue