mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-02-23 16:09:37 +08:00
Fix: Capitalize
This commit is contained in:
parent
414f0f28ab
commit
649d0147d0
@ -32,7 +32,7 @@ import UserStatusBlock from "@/widgets/UserStatusBlock.vue";
|
||||
import UserInstanceList from "@/widgets/UserInstanceList.vue";
|
||||
import ImageManager from "@/widgets/imageManager/index.vue";
|
||||
import NewImage from "@/widgets/imageManager/NewImage.vue";
|
||||
import Schedule from "@/widgets/instance/schedule.vue";
|
||||
import Schedule from "@/widgets/instance/Schedule.vue";
|
||||
|
||||
import { NEW_CARD_TYPE } from "../types/index";
|
||||
import { ROLE } from "./router";
|
||||
|
@ -51,8 +51,8 @@ const type = {
|
||||
3: t("指定时间性任务")
|
||||
};
|
||||
|
||||
const rendTime = (text: string, e: Schedule) => {
|
||||
switch (e.type) {
|
||||
const rendTime = (text: string, schedule: Schedule) => {
|
||||
switch (schedule.type) {
|
||||
case 1: {
|
||||
const time = Number(text);
|
||||
let s = time;
|
Loading…
Reference in New Issue
Block a user