修改没权限时提示

feasure
lld 2026-02-18 02:23:10 +08:00
parent c62ad0803c
commit fdec89c4cd
2 changed files with 1 additions and 2 deletions

View File

@ -238,7 +238,6 @@ export default {
} }
}).catch(err => { }).catch(err => {
console.error("获取大棚信息失败:", err); console.error("获取大棚信息失败:", err);
uni.showToast({ title: "数据加载失败", icon: "none" });
}).finally(() => { }).finally(() => {
// 4. // 4.
this.isLoading = false; this.isLoading = false;

View File

@ -1,6 +1,6 @@
export default { export default {
'401': '认证失败,无法访问系统资源', '401': '认证失败,无法访问系统资源',
'403': '当前操作没有权限', '403': '当前操作没有权限,请联系管理员',
'404': '访问资源不存在', '404': '访问资源不存在',
'default': '系统未知错误,请反馈给管理员' 'default': '系统未知错误,请反馈给管理员'
} }