@custouch/jssdk
    Preparing search index...

    Type Alias Project

    工单项目信息

    type Project = {
        createdAt: string;
        id: string;
        parameters: {
            hidden: boolean;
            name: string;
            options?: { label: string; value: string }[];
            optionSource?: { enable: boolean; url: string };
            title: string;
            type: string;
        }[];
        status: {
            id: string;
            order: string;
            remark: string;
            transitions: { to: string }[];
        }[];
        title: string;
    }
    Index

    Properties

    createdAt: string
    id: string
    parameters: {
        hidden: boolean;
        name: string;
        options?: { label: string; value: string }[];
        optionSource?: { enable: boolean; url: string };
        title: string;
        type: string;
    }[]

    包含的完整问卷参数配置

    Type declaration

    • hidden: boolean
    • name: string
    • Optionaloptions?: { label: string; value: string }[]

      数据选项

    • OptionaloptionSource?: { enable: boolean; url: string }

      问卷数据源,一般是json源文件

    • title: string
    • type: string
    status: {
        id: string;
        order: string;
        remark: string;
        transitions: { to: string }[];
    }[]

    包含的完整的状态配置

    Type declaration

    • id: string
    • order: string
    • remark: string
    • transitions: { to: string }[]

      可流转的节点

    第一个节点为本身节点,后续节点为可供流转的节点

    title: string