|
|
@ -347,6 +347,7 @@ |
|
|
|
|
|
|
|
<!-- json弹窗(复制的json内容) --> |
|
|
|
<el-dialog |
|
|
|
id="copyJsonTextarea_dialog_ref" |
|
|
|
:visible.sync="showJsonCopy" |
|
|
|
:modal-append-to-body="false" |
|
|
|
:append-to-body="true" |
|
|
@ -845,7 +846,6 @@ export default { |
|
|
|
// 复制Json按钮 |
|
|
|
copyJsonHandle(){ |
|
|
|
this.showJsonCopy = true |
|
|
|
// this.$refs.copyJsonTextarea_ref.focus() |
|
|
|
navigator.clipboard.writeText(this.showJsonData_str) |
|
|
|
.then(() => { |
|
|
|
this.$message.success('复制成功'); |
|
|
@ -856,9 +856,9 @@ export default { |
|
|
|
this.$nextTick(()=>{ |
|
|
|
if(this.$refs.copyJsonTextarea_ref){ |
|
|
|
this.$refs.copyJsonTextarea_ref.focus() |
|
|
|
// this.$nextTick(()=>{ |
|
|
|
// this.$refs.copyJsonTextarea_ref.scrollTop = 0 |
|
|
|
// }) |
|
|
|
this.$nextTick(()=>{ |
|
|
|
document.getElementById('copyJsonTextarea_dialog_ref').scrollTop = 0 |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|