Sign in
简柏林
/
thingskit-app
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
1f8b147763c3bc5cd31131e70c6df6db9189cb77
Authored by
fengtao
2022-04-28 11:47:44 +0800
1 parent
fb7d113b
fix:移除捕获错误弹窗
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
pages/alarm/org/org.vue
pages/alarm/org/org.vue
View file @
1f8b147
...
...
@@ -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;
...
...