提交组件

This commit is contained in:
2024-06-20 22:02:06 +08:00
parent 67aa5264ef
commit 379c388cf6
4 changed files with 78 additions and 0 deletions

14
src/utils/dicts.js Normal file
View File

@@ -0,0 +1,14 @@
const fse = require("fs-extra")
const dicts = {
品类:[
{label:"西点",value:"104"},
{label:"现烤",value:"108"},
{label:"裱花蛋糕",value:"109"},
],
类型:[
{label:"同比",value:"1"},
{label:"环比",value:"2"},
{label:"特定日期",value:"3"},
]
}
fse.outputJSONSync("./dicts.json", dicts)