mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-02 03:55:59 +00:00
v3.28.0 【优化】优化 Long、BigInteger、BigDecimal 的 JSON 序列化【优化】个人中心样式【优化】Spin加载
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
||||
*/
|
||||
import { defineStore } from 'pinia';
|
||||
import { smartSentry } from '/@/lib/smart-sentry.js';
|
||||
|
||||
export const useSpinStore = defineStore({
|
||||
id: 'spin',
|
||||
@@ -25,7 +26,7 @@ export const useSpinStore = defineStore({
|
||||
spins.style.zIndex = '999';
|
||||
}
|
||||
} catch (error) {
|
||||
console.warn('Spin hide操作失败:', error);
|
||||
smartSentry.captureError('Spin hide操作失败:', error);
|
||||
}
|
||||
},
|
||||
show() {
|
||||
@@ -37,7 +38,7 @@ export const useSpinStore = defineStore({
|
||||
spins.style.zIndex = '1001';
|
||||
}
|
||||
} catch (error) {
|
||||
console.warn('Spin show操作失败:', error);
|
||||
smartSentry.captureError('Spin hide操作失败:', error);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user