mirror of
https://github.com/jumpserver/lina.git
synced 2025-11-26 09:04:42 +00:00
Compare commits
1 Commits
pr@dev@ope
...
pr@dev@fea
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b11f99345f |
@@ -146,7 +146,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
showSecretDialog() {
|
showSecretDialog() {
|
||||||
return this.$axios.get(this.url, { disableFlashErrorMsg: true }).then((res) => {
|
return this.$axios.get(this.url).then((res) => {
|
||||||
this.secretInfo = res
|
this.secretInfo = res
|
||||||
this.sshKeyFingerprint = res?.spec_info?.ssh_key_fingerprint || '-'
|
this.sshKeyFingerprint = res?.spec_info?.ssh_key_fingerprint || '-'
|
||||||
this.showSecret = true
|
this.showSecret = true
|
||||||
@@ -167,54 +167,54 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.item-textarea ::v-deep .el-textarea__inner {
|
.item-textarea ::v-deep .el-textarea__inner {
|
||||||
height: 110px;
|
height: 110px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-form-item {
|
||||||
|
border-bottom: 1px solid #EBEEF5;
|
||||||
|
padding: 5px 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
border-bottom: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-form-item {
|
::v-deep .el-form-item__label {
|
||||||
border-bottom: 1px solid #EBEEF5;
|
display: flex;
|
||||||
padding: 5px 0;
|
align-items: center;
|
||||||
margin-bottom: 0;
|
justify-content: flex-start;
|
||||||
|
padding-right: 20px;
|
||||||
&:last-child {
|
line-height: 30px;
|
||||||
border-bottom: none;
|
word-break: keep-all;
|
||||||
}
|
overflow-wrap: break-word;
|
||||||
|
white-space: normal;
|
||||||
::v-deep .el-form-item__label {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-start;
|
|
||||||
padding-right: 20px;
|
|
||||||
line-height: 30px;
|
|
||||||
word-break: keep-all;
|
|
||||||
overflow-wrap: break-word;
|
|
||||||
white-space: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
::v-deep .el-form-item__content {
|
|
||||||
line-height: 30px;
|
|
||||||
|
|
||||||
pre {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
::v-deep .el-form-item__content {
|
||||||
margin: 0;
|
line-height: 30px;
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
pre {
|
||||||
display: block;
|
margin: 0;
|
||||||
font-size: 13px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
|
|
||||||
.title {
|
|
||||||
color: #303133;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
li {
|
||||||
|
display: block;
|
||||||
|
font-size: 13px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
|
.title {
|
||||||
|
color: #303133;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user