Commit 1f8b147763c3bc5cd31131e70c6df6db9189cb77

Authored by fengtao
1 parent fb7d113b

fix:移除捕获错误弹窗

Showing 1 changed file with 1 additions and 3 deletions
... ... @@ -41,9 +41,7 @@ export default {
41 41 this.tree = list;
42 42 }
43 43 })
44   - .catch(e => {
45   - uni.$u.toast(e.data.message);
46   - });
  44 + .catch(e => {});
47 45 },
48 46 confirm(val) {
49 47 this.id = val[0].id;
... ...