pacs配置
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
b6101a00fa
commit
f2bff5deb5
|
@ -36,7 +36,7 @@
|
||||||
>
|
>
|
||||||
<p class="form_p copyBox">
|
<p class="form_p copyBox">
|
||||||
{{ form.CalledAE }}
|
{{ form.CalledAE }}
|
||||||
<el-tooltip placement="right" effect="light">
|
<el-tooltip placement="right" effect="light" v-if="form.CalledAE">
|
||||||
<div slot="content">{{ $t("common:button:tip:copy") }}</div>
|
<div slot="content">{{ $t("common:button:tip:copy") }}</div>
|
||||||
<i class="el-icon-document-copy" @click.stop="copyLink"></i>
|
<i class="el-icon-document-copy" @click.stop="copyLink"></i>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
|
@ -66,7 +66,6 @@
|
||||||
<!-- 测试DICOM AE -->
|
<!-- 测试DICOM AE -->
|
||||||
<el-button
|
<el-button
|
||||||
v-if="
|
v-if="
|
||||||
isEdit &&
|
|
||||||
hasPermi(['trials:trials-panel:setting:trial-config:save']) &&
|
hasPermi(['trials:trials-panel:setting:trial-config:save']) &&
|
||||||
form.IsPACSConnect
|
form.IsPACSConnect
|
||||||
"
|
"
|
||||||
|
@ -380,13 +379,14 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
copyLink() {
|
copyLink() {
|
||||||
// 中心调研表链接
|
|
||||||
this.$copyText(
|
this.$copyText(
|
||||||
`${this.$t("trials:dicomCfg:form:CalledAE")}: ${
|
`${this.$t("trials:dicomCfg:form:CalledAE")}: ${
|
||||||
this.form.CalledAE
|
this.form.CalledAE
|
||||||
},${this.$t("trials:dicomCfg:form:Ip")}: ${this.form.Ip},${this.$t(
|
}\n${this.$t("trials:dicomCfg:form:Ip")}: ${this.form.Ip}\n${this.$t(
|
||||||
"trials:dicomCfg:form:Port"
|
"trials:dicomCfg:form:Port"
|
||||||
)}: ${this.form.Port}`
|
)}: ${this.form.Port}\n${this.$t(
|
||||||
|
"trials:dicomCfg:form:Description"
|
||||||
|
)}: ${this.$t("trials:dicomCfg:Description:message")}`
|
||||||
)
|
)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
// 复制成功
|
// 复制成功
|
||||||
|
|
Loading…
Reference in New Issue