fix: 订单管理新增订单统计

This commit is contained in:
2025-04-07 17:02:39 +08:00
parent 0994dd94d5
commit 3ac645e4a0
6 changed files with 108 additions and 31 deletions

View File

@@ -9,6 +9,33 @@ import { App, ConfigProvider, theme } from 'ant-design-vue';
import { antdLocale } from '#/locales';
defineOptions({ name: 'App' });
// 定义颜色代码
const redBoldYellowBg = '\u001B[1;31;43m'; // 1=加粗 31=红色文字 43=黄色背景
const reset = '\u001B[0m';
console.log(
`${redBoldYellowBg}......................阿弥陀佛...................... \n` +
` _oo0oo_ \n` +
` o8888888o \n` +
` 88" . "88 \n` +
` (| -_- |) \n` +
` 0\\ = /0 \n` +
` ___/---\\___ \n` +
` .' \\| |/ '. \n` +
` / \\\\||| : |||// \\ \n` +
` / _||||| -卍-|||||_ \\ \n` +
` | | \\\\\\ - /// | | \n` +
` | \\_| ''\\---/'' |_/ | \n` +
` \\ .-\\__ '-' ___/-. / \n` +
` ___'. .' /--.--\\ '. .'___ \n` +
` ."" < .___\\_<|>_/___.> "". \n` +
` | | : - \\.;\\ _ /;./ - : | | \n` +
` \\ \\ _. \\_ __\\ /__ _/ .- / / \n` +
` =====-.____.___ \\_____/___.-___.-===== \n` +
` =---= \n` +
` \n` +
`....................佛祖保佑 ,永无BUG...................${reset}`,
);
const { isDark } = usePreferences();
const { tokens } = useAntdDesignTokens();