Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 49dcab2a0e | |||
| e9188115fc | |||
| 264e0ee7c4 | |||
| 434fe551b3 | |||
| cd95f0b018 | |||
| f16f5adfd6 | |||
| 26009d0626 | |||
| ec41415305 | |||
| 3a4967e6ab | |||
| 384d7197a2 |
@@ -50,7 +50,8 @@
|
|||||||
<el-menu-item index="4-3">{{ $t('trials:trials-myinfo:button:loginout') }}</el-menu-item>
|
<el-menu-item index="4-3">{{ $t('trials:trials-myinfo:button:loginout') }}</el-menu-item>
|
||||||
</el-submenu>
|
</el-submenu>
|
||||||
</el-menu>
|
</el-menu>
|
||||||
<TopLang />
|
<TopLang v-if="VUE_APP_OSS_CONFIG_REGION !== 'oss-us-west-1'"/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -66,7 +67,8 @@ export default {
|
|||||||
activeIndex: '2',
|
activeIndex: '2',
|
||||||
isReviewer: false,
|
isReviewer: false,
|
||||||
userTypeShortName: zzSessionStorage.getItem('userTypeShortName'),
|
userTypeShortName: zzSessionStorage.getItem('userTypeShortName'),
|
||||||
notice: ''
|
notice: '',
|
||||||
|
VUE_APP_OSS_CONFIG_REGION: process.env.VUE_APP_OSS_CONFIG_REGION
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
@@ -856,8 +856,8 @@ export default {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 非淋巴结靶病灶
|
// 非淋巴结靶病灶
|
||||||
if (lesionLength > 10) {
|
if (lesionLength > 0) {
|
||||||
// 长径大于10mm,自动给“存在”状态
|
// 长径大于0,自动给“存在”状态
|
||||||
const stateId = this.getQuestionId(7)
|
const stateId = this.getQuestionId(7)
|
||||||
this.$set(this.questionForm, stateId, 0)
|
this.$set(this.questionForm, stateId, 0)
|
||||||
}
|
}
|
||||||
@@ -1268,8 +1268,8 @@ export default {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// 非淋巴结靶病灶 直径测量工具
|
// 非淋巴结靶病灶 长短径测量工具
|
||||||
if (!(measureData && measureData.type === 'Bidirectional' && lesionLength > 10)) {
|
if (!(measureData && measureData.type === 'Bidirectional')) {
|
||||||
// 状态为“存在”的非淋巴结靶病灶,长径应大于10 mm,请使用长短径测量工具添加标记。
|
// 状态为“存在”的非淋巴结靶病灶,长径应大于10 mm,请使用长短径测量工具添加标记。
|
||||||
this.$confirm(this.$t('trials:lugano:message:validState4'), {
|
this.$confirm(this.$t('trials:lugano:message:validState4'), {
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
|
|||||||
@@ -101,7 +101,7 @@
|
|||||||
width="200"
|
width="200"
|
||||||
/>
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="VisitName"
|
prop="VisitBlindName"
|
||||||
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
width="200"
|
width="200"
|
||||||
|
|||||||
@@ -213,6 +213,12 @@
|
|||||||
show-overflow-tooltip
|
show-overflow-tooltip
|
||||||
width="200"
|
width="200"
|
||||||
/>
|
/>
|
||||||
|
<el-table-column
|
||||||
|
prop="VisitName"
|
||||||
|
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
||||||
|
show-overflow-tooltip
|
||||||
|
width="200"
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
:label="$t('common:action:action')"
|
:label="$t('common:action:action')"
|
||||||
width="200"
|
width="200"
|
||||||
|
|||||||
@@ -58,6 +58,7 @@
|
|||||||
>
|
>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="(item,index) of $d.ClinicalLevel"
|
v-for="(item,index) of $d.ClinicalLevel"
|
||||||
|
v-show="!(form.UploadRole === 1 && item.value === 4)"
|
||||||
:key="index"
|
:key="index"
|
||||||
:label="item.label"
|
:label="item.label"
|
||||||
:value="item.value"
|
:value="item.value"
|
||||||
|
|||||||
@@ -620,6 +620,7 @@ export default {
|
|||||||
this.signVisible = false
|
this.signVisible = false
|
||||||
|
|
||||||
this.getList()
|
this.getList()
|
||||||
|
this.$emit('getList')
|
||||||
this.$nextTick(() => { this.verification.visible = false })
|
this.$nextTick(() => { this.verification.visible = false })
|
||||||
}
|
}
|
||||||
}).catch(_ => {
|
}).catch(_ => {
|
||||||
|
|||||||
@@ -96,7 +96,7 @@
|
|||||||
<div slot="main-container">
|
<div slot="main-container">
|
||||||
<el-table
|
<el-table
|
||||||
ref="myTable"
|
ref="myTable"
|
||||||
v-adaptive="{bottomOffset:75}"
|
v-adaptive="{bottomOffset:135}"
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
:data="list"
|
:data="list"
|
||||||
stripe
|
stripe
|
||||||
@@ -324,7 +324,7 @@
|
|||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
append-to-body
|
append-to-body
|
||||||
>
|
>
|
||||||
<ClinicalData :trial-reading-criterion-id="TrialReadingCriterionId" :trial-id="trialId" :data="currentData" />
|
<ClinicalData :trial-reading-criterion-id="TrialReadingCriterionId" :trial-id="trialId" :data="currentData" @getList="getList"/>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
<!-- 添加受试者阅片期 -->
|
<!-- 添加受试者阅片期 -->
|
||||||
<el-dialog
|
<el-dialog
|
||||||
|
|||||||
@@ -293,7 +293,7 @@
|
|||||||
<!-- 项目签署文件 -->
|
<!-- 项目签署文件 -->
|
||||||
<NeedSignTrialDoc v-if="selected === 'NeedSignTrialDoc'" :is-sign-system-doc="isSignSystemDoc" />
|
<NeedSignTrialDoc v-if="selected === 'NeedSignTrialDoc'" :is-sign-system-doc="isSignSystemDoc" />
|
||||||
<!-- 系统签署文件 -->
|
<!-- 系统签署文件 -->
|
||||||
<NeedSignSysDoc v-if="selected === 'NeedSignSysDoc'" @refreshStats="--tabList.SysWaitSignDocCount" />
|
<NeedSignSysDoc v-if="selected === 'NeedSignSysDoc'" @refreshStats="refreshSysData" />
|
||||||
<!-- 项目签署文件 -->
|
<!-- 项目签署文件 -->
|
||||||
<NeedSignedTrialDoc v-if="selected === 'NeedSignedTrialDoc'" :is-sign-system-doc="isSignSystemDoc" />
|
<NeedSignedTrialDoc v-if="selected === 'NeedSignedTrialDoc'" :is-sign-system-doc="isSignSystemDoc" />
|
||||||
<!-- 系统签署文件 -->
|
<!-- 系统签署文件 -->
|
||||||
@@ -520,6 +520,10 @@ export default {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
refreshSysData(){
|
||||||
|
--this.tabList.SysWaitSignDocCount
|
||||||
|
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
||||||
|
},
|
||||||
getUserTobeDoneRecord() {
|
getUserTobeDoneRecord() {
|
||||||
getUserTobeDoneRecord().then(async res => {
|
getUserTobeDoneRecord().then(async res => {
|
||||||
this.tabList = res.Result
|
this.tabList = res.Result
|
||||||
|
|||||||
Reference in New Issue
Block a user