@@ -117,7 +117,7 @@ export default {
117117 getQuestionContent: _debounce (function (slug ) {
118118 this .$public .emit (" notice" , {
119119 type: " loading" ,
120- msg: " 🎈 正在从 Leetcode 获取题目详情 ..." ,
120+ msg: " 🎈 正在获取题目详情 ..." ,
121121 });
122122 this .$leetcode
123123 .getCookie (" https://leetcode-cn.com/graphql/" )
@@ -136,15 +136,15 @@ export default {
136136 this .$public .emit (" leetcode-toggle-list-show" , ! this .isShowList );
137137 this .$public .emit (" notice" , {
138138 type: " success" ,
139- msg: ` ✔ 从 Leetcode 获取题目详情成功 -${ this .question .title } ` ,
139+ msg: ` 获取题目详情 成功 -${ this .question .title } ` ,
140140 });
141141 });
142142 }, 200 );
143143 }, 1000 ),
144144 getQuestionPage: _throttle (function (val ) {
145145 if (val <= 0 )
146146 this .$public .emit (" notice" , {
147- msg: " ❌ 从 Leetcode 获取题目失败: 页号非法" ,
147+ msg: " 获取题目 失败: 页号非法" ,
148148 type: " error" ,
149149 closefunc : () => {
150150 this .clickable = true ;
@@ -153,7 +153,7 @@ export default {
153153 else if (val <= this .totalPages && val != null && this .clickable ) {
154154 this .$public .emit (" notice" , {
155155 type: " loading" ,
156- msg: " 🎈 正在从 Leetcode 获取题目 ..." ,
156+ msg: " 🎈 正在从获取题目 ..." ,
157157 });
158158 this .clickable = false ;
159159 this .$leetcode
@@ -168,12 +168,12 @@ export default {
168168 this .clickable = true ;
169169 this .$public .emit (" notice" , {
170170 type: " success" ,
171- msg: " ✔ 从 Leetcode 获取题目成功 " ,
171+ msg: " 获取题目 成功 " ,
172172 });
173173 });
174174 } else
175175 this .$public .emit (" notice" , {
176- msg: " ❌ 从 Leetcode 获取题目失败: 页号非法" ,
176+ msg: " 获取题目 失败: 页号非法" ,
177177 type: " error" ,
178178 closefunc : () => {
179179 this .clickable = true ;
0 commit comments