Skip to content

Commit

Permalink
✨ feat: Update labels in BaseDict class
Browse files Browse the repository at this point in the history
  • Loading branch information
eternallycyf committed Mar 25, 2024
1 parent d7751ef commit 87ff700
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/ims-view-pc/src/constants/dict.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export class BaseDict {
static COMMON_TYPE = [
{ text: '全部', value: '' },
{ text: '是', value: '0' },
{ text: '否', value: '1' },
{ label: '全部', value: '' },
{ label: '是', value: '0' },
{ label: '否', value: '1' },
];

static THEME_TYPE = [
{ text: '浅色', value: 'light' },
{ text: '深色', value: 'dark' },
{ label: '浅色', value: 'light' },
{ label: '深色', value: 'dark' },
];
}

0 comments on commit 87ff700

Please sign in to comment.