feat(projects): add full screen watermark. close#571 (#573)

This commit is contained in:
paynezhuang
2024-07-29 23:04:26 +08:00
committed by GitHub
parent 4dde4c22b1
commit ea8aa6c4e6
7 changed files with 54 additions and 0 deletions

11
src/typings/app.d.ts vendored
View File

@ -95,6 +95,13 @@ declare namespace App {
/** Whether float the footer to the right when the layout is 'horizontal-mix' */
right: boolean;
};
/** Watermark */
watermark: {
/** Whether to show the watermark */
visible: boolean;
/** Watermark text */
text: string;
};
/** define some theme settings tokens, will transform to css variables */
tokens: {
light: ThemeSettingToken;
@ -375,6 +382,10 @@ declare namespace App {
height: string;
right: string;
};
watermark: {
visible: string;
text: string;
};
themeDrawerTitle: string;
pageFunTitle: string;
configOperation: {