diff --git a/front/src/layout_share/index.vue b/front/src/layout_share/index.vue index 220305f595c972761fa53320baa58374b8897a8c..4c09363ae39ed12d53b093da267ba130ed1c2da2 100644 --- a/front/src/layout_share/index.vue +++ b/front/src/layout_share/index.vue @@ -141,7 +141,7 @@ export default { if (valid) { this.post('/share/checkPassword', { id: this.shareConfig.id, - password: md5(this.encryptFormData.password) + password: md5(this.encryptFormData.password.trim()) }, resp => { this.setAttr(this.getStoreKey(this.shareConfig), 'true') location.reload() diff --git a/front/src/layout_show/index.vue b/front/src/layout_show/index.vue index 0999a13921f12d06338427a5cb4e6e42841de869..68dba74c53db4eda0423e0b01c1e5e2897d2e691 100644 --- a/front/src/layout_show/index.vue +++ b/front/src/layout_show/index.vue @@ -145,7 +145,7 @@ export default { if (valid) { this.post('/compose/project/checkPassword', { id: this.composeProject.id, - password: md5(this.encryptFormData.password) + password: md5(this.encryptFormData.password.trim()) }, resp => { this.setAttr(this.getStoreKey(this.composeProject), 'true') location.reload() diff --git a/front/src/views/doc/DocView/index.vue b/front/src/views/doc/DocView/index.vue index 9a564227d2b31be3b03bde9eaf20bb7e414e15c4..644ba01de9bf141ee15c803d1db3c3d6c74072ad 100644 --- a/front/src/views/doc/DocView/index.vue +++ b/front/src/views/doc/DocView/index.vue @@ -56,9 +56,16 @@ @click.stop="copy(docInfo.url)">{{ $ts('copy') }} - +
{{ docInfo.url }} - + {{ $ts('copy') }} +

{{ $ts('description') }}

@@ -245,6 +252,7 @@ export default { isSubscribe: false, responseHiddenColumns: [], hostConfigName: '', + isShowDebugUrlCopy: false, isShowRequestExampleCopy: false, isShowResponseSuccessExample: false, emptyContent: '


'