diff --git a/src/views/system/systemConfig/index.vue b/src/views/system/systemConfig/index.vue index 23bad40..19013be 100644 --- a/src/views/system/systemConfig/index.vue +++ b/src/views/system/systemConfig/index.vue @@ -215,6 +215,11 @@

*Ai文生图所需金币

+ + + + + @@ -290,10 +295,17 @@ export default { likeCountWeight: undefined, // 点赞量权重系数 likeRateWeight: undefined, // 点赞率权重系数 playCountWeight: undefined // 播放量权重系数 - } + }, + sysUI: 0, } } }, + computed: { + sysUIOptions() { + // 默认/端午/五一/七夕/中秋国庆/双11/圣诞元旦/春节 + return ['默认', '端午', '五一', '七夕', '中秋国庆', '双11', '圣诞元旦', '春节'].map((label, value) => ({ label, value })) + } + }, mounted() { this.getData() },