阅片相关页面系统中心与项目中心的关联关系调整
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
0592f9fc3d
commit
3212f0cde2
|
@ -689,7 +689,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
TrialSiteCode: null,
|
||||
|
@ -831,7 +831,7 @@ export default {
|
|||
},
|
||||
// 重阅历史
|
||||
reReadingHistory(row) {
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/reReadingTracking?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&SiteId=${row.SiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}&DoctorUserId=${row.DoctorUserId}` })
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/reReadingTracking?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&TrialSiteId=${row.TrialSiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}&DoctorUserId=${row.DoctorUserId}` })
|
||||
},
|
||||
// 申请重阅
|
||||
applyReReading() {
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:medicalFeedback:table:siteCode')">
|
||||
<el-select
|
||||
v-model="searchData.SiteId"
|
||||
v-model="searchData.TrialSiteId"
|
||||
clearable
|
||||
filterable
|
||||
style="width:120px;"
|
||||
|
@ -35,7 +35,7 @@
|
|||
v-for="(site,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="site.TrialSiteCode"
|
||||
:value="site.SiteId"
|
||||
:value="site.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -603,7 +603,7 @@ const searchDataDefault = () => {
|
|||
PageIndex: 1,
|
||||
PageSize: 20,
|
||||
TrialId: '',
|
||||
SiteId: '',
|
||||
TrialSiteId: '',
|
||||
SubjectId: '',
|
||||
SubjectCode: '',
|
||||
TaskName: '',
|
||||
|
|
|
@ -11,12 +11,12 @@
|
|||
</el-form-item>
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:pmMedicalReview:select:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -318,7 +318,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
|
|
@ -502,7 +502,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
|
|
@ -598,7 +598,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
TrialSiteCode: null,
|
||||
|
@ -679,12 +679,12 @@ export default {
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
if (this.$route.query.SiteId) {
|
||||
this.searchData.SiteId = this.$route.query.SiteId
|
||||
if (this.$route.query.TrialSiteId) {
|
||||
this.searchData.TrialSiteId = this.$route.query.TrialSiteId
|
||||
this.searchData.SubjectCode = this.$route.query.SubjectCode
|
||||
this.searchData.TaskName = this.$route.query.TaskName
|
||||
this.searchData.DoctorUserId = this.$route.query.DoctorUserId
|
||||
changeURLStatic('SiteId', '')
|
||||
changeURLStatic('TrialSiteId', '')
|
||||
changeURLStatic('SubjectCode', '')
|
||||
changeURLStatic('TaskName', '')
|
||||
changeURLStatic('DoctorUserId', '')
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
<div slot="search-container">
|
||||
<el-form :inline="true">
|
||||
<el-form-item :label="$t('trials:reviewAssign:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:240px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:240px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="'taskSearchData' + index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -502,7 +502,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
DoctorUserId: null,
|
||||
|
@ -520,7 +520,7 @@ const taskSearchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
|
|
@ -489,7 +489,7 @@ export default {
|
|||
},
|
||||
// 重阅历史
|
||||
reReadingHistory(row) {
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/rereadTask?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&SiteId=${row.SiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}` })
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/rereadTask?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&TrialSiteId=${row.TrialSiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}` })
|
||||
},
|
||||
getList() {
|
||||
this.loading = true
|
||||
|
|
|
@ -17,12 +17,12 @@
|
|||
</el-form-item>
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:reviewTrack:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -520,7 +520,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
|
|
@ -17,12 +17,12 @@
|
|||
</el-form-item>
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:reviewTrack:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -954,7 +954,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
@ -1187,7 +1187,7 @@ export default {
|
|||
},
|
||||
// 重阅历史
|
||||
reReadingHistory(row) {
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/reReadingTracking?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&SiteId=${row.SiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}&DoctorUserId=${row.DoctorUserId}` })
|
||||
this.$router.push({ path: `/trials/trials-panel/reading/reReadingTracking?trialId=${this.$route.query.trialId}&trialCode=${this.$route.query.trialCode}&researchProgramNo=${this.$route.query.researchProgramNo}&TrialSiteId=${row.TrialSiteId}&SubjectCode=${row.SubjectCode}&TaskName=${row.TaskName}&DoctorUserId=${row.DoctorUserId}` })
|
||||
},
|
||||
openRefereeAllocation() {
|
||||
this.RefereeAllocationVisible = true
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<el-form :inline="true">
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:reviewAssign:readingTask:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -488,12 +488,12 @@
|
|||
<el-divider content-position="left">受试者阅片人最新关系表</el-divider>
|
||||
<el-form :inline="true">
|
||||
<el-form-item :label="$t('trials:consistencyCheck:table:siteId')">
|
||||
<el-select v-model="taskSearchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="taskSearchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="'taskSearchData' + index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -1028,7 +1028,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
@ -1049,7 +1049,7 @@ const taskSearchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
DoctorUserId: null,
|
||||
|
|
|
@ -25,12 +25,12 @@
|
|||
</el-form-item>
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:rereadTask:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(i,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="i.TrialSiteCode"
|
||||
:value="i.SiteId"
|
||||
:value="i.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -341,11 +341,11 @@ export default {
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
if (this.$route.query.SiteId) {
|
||||
this.searchData.SiteId = this.$route.query.SiteId
|
||||
if (this.$route.query.TrialSiteId) {
|
||||
this.searchData.TrialSiteId = this.$route.query.TrialSiteId
|
||||
this.searchData.SubjectCode = this.$route.query.SubjectCode
|
||||
this.searchData.TaskName = this.$route.query.TaskName
|
||||
changeURLStatic('SiteId', '')
|
||||
changeURLStatic('TrialSiteId', '')
|
||||
changeURLStatic('SubjectCode', '')
|
||||
changeURLStatic('TaskName', '')
|
||||
}
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
<el-form :inline="true">
|
||||
<!-- 中心编号 -->
|
||||
<el-form-item :label="$t('trials:reviewAssign:readingTask:table:siteCode')">
|
||||
<el-select v-model="searchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="searchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -496,12 +496,12 @@
|
|||
<el-divider content-position="left">受试者阅片人最新关系表</el-divider>
|
||||
<el-form :inline="true">
|
||||
<el-form-item :label="$t('trials:consistencyCheck:table:siteId')">
|
||||
<el-select v-model="taskSearchData.SiteId" clearable filterable style="width:120px;">
|
||||
<el-select v-model="taskSearchData.TrialSiteId" clearable filterable style="width:120px;">
|
||||
<el-option
|
||||
v-for="(item,index) of siteOptions"
|
||||
:key="'taskSearchData' + index"
|
||||
:label="item.TrialSiteCode"
|
||||
:value="item.SiteId"
|
||||
:value="item.TrialSiteId"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
@ -1029,7 +1029,7 @@ const searchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
IsUrgent: null,
|
||||
|
@ -1050,7 +1050,7 @@ const taskSearchDataDefault = () => {
|
|||
Asc: true,
|
||||
SortField: '',
|
||||
TrialId: null,
|
||||
SiteId: null,
|
||||
TrialSiteId: null,
|
||||
SubjectId: null,
|
||||
SubjectCode: null,
|
||||
DoctorUserId: null,
|
||||
|
|
|
@ -195,7 +195,7 @@ export default {
|
|||
for (let index = 0; index < val.length; index++) {
|
||||
const param = {
|
||||
TrialId: this.trialId,
|
||||
TrialSiteId: val[index].Id,
|
||||
SiteId: val[index].Id,
|
||||
SiteName: val[index].SiteName
|
||||
}
|
||||
arr.push(param)
|
||||
|
|
Loading…
Reference in New Issue