소스 검색

优化复制路径功能,不在弹出对话框提示。

mxd 4 년 전
부모
커밋
567789fbf4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      magic-editor/src/console/src/components/resources/magic-api-list.vue

+ 1 - 1
magic-editor/src/console/src/components/resources/magic-api-list.vue

@@ -572,7 +572,7 @@ export default {
         copyText.readOnly = false
         copyText.select()
         document.execCommand('copy')
-        this.$magicAlert({title: '复制接口路径', content: '复制成功'})
+        bus.$emit('status', `接口路径「${path}」复制成功`)
       } catch (e) {
         this.$magicAlert({title: '复制接口路径失败,请手动复制', content: path})
         console.error(e)