tianbj 5 년 전
부모
커밋
f6e3f6cc1a
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/main/webapp/WEB-INF/manager/cms/category/index.ftl

+ 5 - 1
src/main/webapp/WEB-INF/manager/cms/category/index.ftl

@@ -142,7 +142,11 @@ var indexVue = new Vue({
 			var clipboard = new ClipboardJS('.copyBtn');
 			var self = this;
 			clipboard.on('success', function (e) {
-				self.$message.success('链接数据已保存到剪切板');
+				self.$notify({
+					title: '提示',
+					message: "链接地址已保存到剪切板",
+					type: 'success'
+				});
 				clipboard.destroy();
 			});
 		},