diff --git a/src/views/trials/trials-panel/enrolled-reviewers/list/index.vue b/src/views/trials/trials-panel/enrolled-reviewers/list/index.vue index 59cb32cb..e097df4a 100644 --- a/src/views/trials/trials-panel/enrolled-reviewers/list/index.vue +++ b/src/views/trials/trials-panel/enrolled-reviewers/list/index.vue @@ -81,13 +81,13 @@ @change="(v) => {return isEnableChange(scope.row, v)}" :disabled="!hasPermi(['trials:trials-panel:enrolled-reviewers:list:edit'])" /> - {{$fd('IsEnable', scope.row.IsEnable)}} + {{$fd('IsEnable', scope.row.IsEnable)}} v.value)) - this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(',', '|') + this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(',', ' | ') this.modalityListVisible = false }, handleSelectionChange(val) { @@ -781,7 +781,7 @@ export default { var bodyPartTypes = this.form.BodyPartTypeList.map(i => { return this.$fd('Bodypart', i) }) - this.form.BodyPartTypes = bodyPartTypes.toString().replaceAll(',', '|') + this.form.BodyPartTypes = bodyPartTypes.toString().replaceAll(',', ' | ') this.bodyPartListVisible = false }, // 配置信息保存 @@ -791,7 +791,7 @@ export default { this.loading = true // 保存配置信息 var params = Object.assign({}, this.form) - params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', '|') + params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', ' | ') configTrialBasicInfo(params).then(res => { this.loading = false if (res.IsSuccess) { @@ -842,7 +842,7 @@ export default { this.btnLoading = true // 保存配置信息 var params = Object.assign({}, this.form) - params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', '|') + params.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', ' | ') configTrialBasicInfo(params).then(res => { this.btnLoading = false if (res.IsSuccess) { @@ -865,7 +865,7 @@ export default { signConfirm(signInfo) { this.loading = true var obj = Object.assign({}, this.form) - obj.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', '|') + obj.BodyPartTypes = this.form.BodyPartTypeList.toString().replaceAll(',', ' | ') const params = { data: obj, signInfo: signInfo @@ -978,12 +978,12 @@ export default { this.form[k] = res[k] } } - this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(',', '|') - this.form.BodyPartTypeList = this.form.BodyPartTypes.split('|') + this.form.ModalityListStr = this.form.ModalityList.toString().replaceAll(',', ' | ') + this.form.BodyPartTypeList = this.form.BodyPartTypes.split(' | ') var bodyPartTypes = this.form.BodyPartTypeList.map(i => { return this.$fd('Bodypart', i) }) - this.form.BodyPartTypes = bodyPartTypes.toString().replaceAll(',', '|') + this.form.BodyPartTypes = bodyPartTypes.toString().replaceAll(',', ' | ') // this.form.ClinicalDataSetNamesStr = this.form.ClinicalDataSetNames.join(', ') this.initialForm = { ...this.form } this.loading = false @@ -1104,5 +1104,8 @@ export default { .fontColor{ color: red; } + ::v-deep .el-table__header-wrapper .el-checkbox { + display: none !important; + } }