瀏覽代碼

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

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)