Merge branch 'main' of https://gitea.frp.extimaging.com/XCKJ/irc_web into main
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
f911f9e0c1
|
@ -141,7 +141,7 @@ export default {
|
||||||
},
|
},
|
||||||
handlePreview(file) {
|
handlePreview(file) {
|
||||||
if (file.fullPath) {
|
if (file.fullPath) {
|
||||||
window.open(file.fullPath, '_blank')
|
window.open(this.OSSclientConfig.basePath + file.fullPath, '_blank')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleExceed(files, fileList) {
|
handleExceed(files, fileList) {
|
||||||
|
|
|
@ -192,7 +192,7 @@ export default {
|
||||||
},
|
},
|
||||||
handlePreview(file) {
|
handlePreview(file) {
|
||||||
if (file.fullPath) {
|
if (file.fullPath) {
|
||||||
window.open(file.fullPath, '_blank')
|
window.open(this.OSSclientConfig.basePath + file.fullPath, '_blank')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleExceed(files, fileList) {
|
handleExceed(files, fileList) {
|
||||||
|
|
|
@ -39,22 +39,14 @@
|
||||||
<p>GCP Certificate</p>
|
<p>GCP Certificate</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="margin-left:40px;width:40%">
|
<div style="margin-left:40px;width:40%">
|
||||||
<!-- <el-radio-group v-model="GCP" style="margin-bottom:20px">
|
|
||||||
<el-radio :label="1">Yes</el-radio>
|
|
||||||
<el-radio :label="0">No</el-radio>
|
|
||||||
</el-radio-group>
|
|
||||||
<upload-file v-if="GCP" :doctor-id="doctorId" type="GCP" @getFileList="getFileList" />
|
|
||||||
<div><el-button type="primary" size="small" style="margin-top:20px" @click="handleSaveGCP">Save</el-button></div> -->
|
|
||||||
<gcp-certificate :doctor-id="doctorId" :gcp="GCP" :gcp-id="GCPID" />
|
<gcp-certificate :doctor-id="doctorId" :gcp="GCP" :gcp-id="GCPID" />
|
||||||
</div>
|
</div>
|
||||||
<div class="title-wrapper" style="margin-top:10px;">
|
<div class="title-wrapper" style="margin-top:10px;">
|
||||||
<p>Other Relevant Experience</p>
|
<p>Other Relevant Experience</p>
|
||||||
</div>
|
</div>
|
||||||
<div style="padding:0 40px;">
|
<div style="padding:0 40px;">
|
||||||
|
|
||||||
<el-row type="flex" justify="space-between">
|
<el-row type="flex" justify="space-between">
|
||||||
<el-col :span="11">
|
<el-col :span="11">
|
||||||
|
|
||||||
<el-input
|
<el-input
|
||||||
v-model="OtherClinicalExperience"
|
v-model="OtherClinicalExperience"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
|
|
|
@ -559,7 +559,6 @@ export default {
|
||||||
showCancelButton: false,
|
showCancelButton: false,
|
||||||
type: 'warning'
|
type: 'warning'
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
|
|
||||||
}).catch(() => {})
|
}).catch(() => {})
|
||||||
e.stopImmediatePropagation()
|
e.stopImmediatePropagation()
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
|
|
|
@ -59,6 +59,13 @@
|
||||||
sortable="custom"
|
sortable="custom"
|
||||||
min-width="120"
|
min-width="120"
|
||||||
/>
|
/>
|
||||||
|
<el-table-column
|
||||||
|
prop="AliasName"
|
||||||
|
:label="$t('trials:customSite:form:AliasName')"
|
||||||
|
show-overflow-tooltip
|
||||||
|
sortable="custom"
|
||||||
|
min-width="120"
|
||||||
|
/>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
prop="Country"
|
prop="Country"
|
||||||
:label="$t('trials:customSite:form:country')"
|
:label="$t('trials:customSite:form:country')"
|
||||||
|
|
|
@ -1331,7 +1331,7 @@ export default {
|
||||||
})
|
})
|
||||||
if (!isgo) {
|
if (!isgo) {
|
||||||
// `请补充检查${isgoList.toString()}的检查部位!`
|
// `请补充检查${isgoList.toString()}的检查部位!`
|
||||||
this.$confirm(this.$t('trials:qcQuality:title:title1').replace('xxx', isgoList.toString()), '',{
|
this.$confirm(this.$t('trials:qcQuality:title:title1').replace('xxx', isgoList.join('、 ')), '',{
|
||||||
showCancelButton: false
|
showCancelButton: false
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue