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-submenu>
|
||||
</el-menu>
|
||||
<TopLang />
|
||||
<TopLang v-if="VUE_APP_OSS_CONFIG_REGION !== 'oss-us-west-1'"/>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@@ -66,7 +67,8 @@ export default {
|
||||
activeIndex: '2',
|
||||
isReviewer: false,
|
||||
userTypeShortName: zzSessionStorage.getItem('userTypeShortName'),
|
||||
notice: ''
|
||||
notice: '',
|
||||
VUE_APP_OSS_CONFIG_REGION: process.env.VUE_APP_OSS_CONFIG_REGION
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
||||
@@ -856,8 +856,8 @@ export default {
|
||||
}
|
||||
} else {
|
||||
// 非淋巴结靶病灶
|
||||
if (lesionLength > 10) {
|
||||
// 长径大于10mm,自动给“存在”状态
|
||||
if (lesionLength > 0) {
|
||||
// 长径大于0,自动给“存在”状态
|
||||
const stateId = this.getQuestionId(7)
|
||||
this.$set(this.questionForm, stateId, 0)
|
||||
}
|
||||
@@ -1268,8 +1268,8 @@ export default {
|
||||
return
|
||||
}
|
||||
} else {
|
||||
// 非淋巴结靶病灶 直径测量工具
|
||||
if (!(measureData && measureData.type === 'Bidirectional' && lesionLength > 10)) {
|
||||
// 非淋巴结靶病灶 长短径测量工具
|
||||
if (!(measureData && measureData.type === 'Bidirectional')) {
|
||||
// 状态为“存在”的非淋巴结靶病灶,长径应大于10 mm,请使用长短径测量工具添加标记。
|
||||
this.$confirm(this.$t('trials:lugano:message:validState4'), {
|
||||
type: 'warning',
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="VisitName"
|
||||
prop="VisitBlindName"
|
||||
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
||||
show-overflow-tooltip
|
||||
width="200"
|
||||
|
||||
@@ -213,6 +213,12 @@
|
||||
show-overflow-tooltip
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
prop="VisitName"
|
||||
:label="$t('trials:globalReview:table:cutOffVisitName')"
|
||||
show-overflow-tooltip
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
:label="$t('common:action:action')"
|
||||
width="200"
|
||||
|
||||
@@ -58,6 +58,7 @@
|
||||
>
|
||||
<el-option
|
||||
v-for="(item,index) of $d.ClinicalLevel"
|
||||
v-show="!(form.UploadRole === 1 && item.value === 4)"
|
||||
:key="index"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
|
||||
@@ -620,6 +620,7 @@ export default {
|
||||
this.signVisible = false
|
||||
|
||||
this.getList()
|
||||
this.$emit('getList')
|
||||
this.$nextTick(() => { this.verification.visible = false })
|
||||
}
|
||||
}).catch(_ => {
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
<div slot="main-container">
|
||||
<el-table
|
||||
ref="myTable"
|
||||
v-adaptive="{bottomOffset:75}"
|
||||
v-adaptive="{bottomOffset:135}"
|
||||
v-loading="loading"
|
||||
:data="list"
|
||||
stripe
|
||||
@@ -324,7 +324,7 @@
|
||||
:close-on-click-modal="false"
|
||||
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
|
||||
|
||||
@@ -293,7 +293,7 @@
|
||||
<!-- 项目签署文件 -->
|
||||
<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" />
|
||||
<!-- 系统签署文件 -->
|
||||
@@ -520,6 +520,10 @@ export default {
|
||||
})
|
||||
})
|
||||
},
|
||||
refreshSysData(){
|
||||
--this.tabList.SysWaitSignDocCount
|
||||
store.dispatch('user/setTotalNeedSignSystemDocCount', this.tabList.SysWaitSignDocCount)
|
||||
},
|
||||
getUserTobeDoneRecord() {
|
||||
getUserTobeDoneRecord().then(async res => {
|
||||
this.tabList = res.Result
|
||||
|
||||
Reference in New Issue
Block a user