Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
commit
0401a95635
|
@ -3,7 +3,8 @@
|
|||
<div class="box-wrapper">
|
||||
<h2 style="text-align:center;">
|
||||
<!-- 中心调研表 -->
|
||||
独立阅片人信息填写
|
||||
<!-- 独立阅片人信息填写 -->
|
||||
{{$t("trials:researchForm:form:title")}}
|
||||
</h2>
|
||||
<el-card shadow="hover" style="padding-top: 40px">
|
||||
<el-form
|
||||
|
@ -58,6 +59,7 @@ import { sendVerifyCode, verifySendCode, getTrialSurveyInitInfo } from '@/api/re
|
|||
import { verifyEmialGetDoctorInfo, sendEmialVerifyCode } from '@/api/reviewers'
|
||||
import { login, getUserMenuTree, getUserPermissions } from '@/api/user'
|
||||
import store from '@/store'
|
||||
import { mapMutations } from 'vuex'
|
||||
export default {
|
||||
data() {
|
||||
var checkPhone = (rule, value, callback) => {
|
||||
|
@ -149,9 +151,14 @@ export default {
|
|||
isHaveSiteSurveyRecord: false
|
||||
}
|
||||
},
|
||||
created(){
|
||||
this.$i18n.locale = this.$route.query.lang
|
||||
this.setLanguage(this.$route.query.lang)
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
methods: {
|
||||
...mapMutations({ setLanguage: 'lang/setLanguage' }),
|
||||
// 提交
|
||||
onSubmit() {
|
||||
this.$refs['resetForm'].validate(valid => {
|
||||
|
@ -176,7 +183,7 @@ export default {
|
|||
store.dispatch('user/setTree', menuTree.Result)
|
||||
store.dispatch('user/setPermissions', permissions.Result)
|
||||
// this.$router.push({ path: `/researchForm?trialId=${this.trialId}&trialSiteSurveyId=${res.Result.TrialSiteSurveyId}` })
|
||||
this.$router.push({path: `/ReviewersResearchForm?Id=${res.Result.DoctorId ? res.Result.DoctorId : ''}&tabActive=BasicInfo&ReviewStatus=${res.Result.ReviewStatus}`})
|
||||
this.$router.push({path: `/ReviewersResearchForm?Id=${res.Result.DoctorId ? res.Result.DoctorId : ''}&tabActive=BasicInfo&ReviewStatus=${res.Result.ReviewStatus}&lang=${this.$route.query.lang}`})
|
||||
}).catch(() => {
|
||||
this.btnLoading = false
|
||||
this.sendDisabled = false
|
||||
|
|
|
@ -44,6 +44,7 @@ import Resumes from './components/Resumes'
|
|||
import Agreements from './components/Agreements'
|
||||
import Setting from './components/Setting'
|
||||
import { changeURLStatic, getQueryString } from '@/utils/history.js'
|
||||
import { mapMutations } from 'vuex'
|
||||
export default {
|
||||
components: {
|
||||
BasicInfo,
|
||||
|
@ -74,6 +75,10 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
created(){
|
||||
this.$i18n.locale = this.$route.query.lang
|
||||
this.setLanguage(this.$route.query.lang)
|
||||
},
|
||||
mounted() {
|
||||
this.active = this.$route.query.tabActive
|
||||
if (this.$route.query.Id === '' && this.active !== 'BasicInfo') {
|
||||
|
@ -82,6 +87,7 @@ export default {
|
|||
this.load[this.active] = true
|
||||
},
|
||||
methods: {
|
||||
...mapMutations({ setLanguage: 'lang/setLanguage' }),
|
||||
clickTab(tab, event) {
|
||||
if (this.load[tab.name] === false) {
|
||||
this.load[tab.name] = true
|
||||
|
|
|
@ -114,7 +114,7 @@
|
|||
clearable
|
||||
class="mr"
|
||||
>
|
||||
<el-option v-for="item of $d.AttendedReviewerType" :value="item.value" :label="item.label" />
|
||||
<el-option v-for="item of $d.AttendedReviewerType" :value="item.value" :label="item.label" :key="item.id"/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
|
|
@ -405,7 +405,7 @@ export default {
|
|||
},
|
||||
showResearchLink() {
|
||||
const trialId = this.trialId
|
||||
this.shareLink = `${location.protocol}//${location.host}/ReviewersResearch`
|
||||
this.shareLink = `${location.protocol}//${location.host}/ReviewersResearch?lang=${this.$store.getters.language}`
|
||||
this.share_model.visible = true
|
||||
},
|
||||
lookResumeInfo(row) {
|
||||
|
|
|
@ -145,6 +145,13 @@
|
|||
</div>
|
||||
</div>
|
||||
<!-- CRC -->
|
||||
<!-- 加急影像提交 -->
|
||||
<div class="my_select_box" :class="{selected: selected === 'ImageSubmission'}" tab-data="ImageSubmission" @click="selected = 'ImageSubmission'" v-if="hasPermi(['trials:trials-workbenck:imageSubmission'])">
|
||||
<div class="my_select_box_content">
|
||||
<span class="el-icon-circle-check" style="padding: 4px;margin: 4px;color: #6698ff"></span>
|
||||
<span class="my_select_box_content_text">{{ $t('trials:workbench:title:ExpeditedImageSubmission') }}</span><span style="margin:0 0.25rem">·</span><span>{{ tabList.CRC_ImageSubmitCount }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 影像质疑 -->
|
||||
<div class="my_select_box" :class="{selected: selected === 'ImageQuestion'}" tab-data="ImageQuestion" @click="selected = 'ImageQuestion'" v-if="hasPermi(['trials:trials-workbench:imageQuestion'])">
|
||||
<div class="my_select_box_content">
|
||||
|
@ -166,13 +173,6 @@
|
|||
<span class="my_select_box_content_text">{{ $t('trials:workbench:title:ImageRetransmission') }}</span><span style="margin:0 0.25rem">·</span><span>{{ tabList.CRC_ImageReUploadCount }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 加急影像提交 -->
|
||||
<div class="my_select_box" :class="{selected: selected === 'ImageSubmission'}" tab-data="ImageSubmission" @click="selected = 'ImageSubmission'" v-if="hasPermi(['trials:trials-workbenck:imageSubmission'])">
|
||||
<div class="my_select_box_content">
|
||||
<span class="el-icon-circle-check" style="padding: 4px;margin: 4px;color: #6698ff"></span>
|
||||
<span class="my_select_box_content_text">{{ $t('trials:workbench:title:ExpeditedImageSubmission') }}</span><span style="margin:0 0.25rem">·</span><span>{{ tabList.CRC_ImageSubmitCount }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- IQC -->
|
||||
<!-- 影像质控 -->
|
||||
<div class="my_select_box" :class="{selected: selected === 'ImageQualityControl'}" tab-data="ImageQualityControl" @click="selected = 'ImageQualityControl'" v-if="hasPermi(['trials:trials-workbenck:imageQC'])">
|
||||
|
|
Loading…
Reference in New Issue