How to use the @lugia/lugia-web/dist/consts.Input function in @lugia/lugia-web

To help you get started, we’ve selected a few @lugia/lugia-web examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github lugia-ysstech / lugia-admin / portal / pages / form / advanced.js View on Github external
],
    selectView: {
      [Widget.Select]: {
        InputTag: {
          InputTagWrap: {
            normal: {
              width: 200
            }
          }
        }
      }
    }
  }
];
const inputView = {
  [Widget.Input]: {
    Container: {
      normal: {
        width: 200
      }
    }
  }
};

const getDataItem = (
  
    
      
        {"生效日期"}
github lugia-ysstech / lugia-admin / portal / pages / form / basic.js View on Github external
const RadioGroupData = [
  { text: "公开", value: "1" },
  { text: "部分公开", value: "2" },
  { text: "不公开", value: "3" }
];
const numberInputView = {
  [Widget.NumberInput]: {
    Container: {
      normal: {
        width: 100
      }
    }
  }
};
const inputView = {
  [Widget.Input]: {
    Container: {
      normal: {
        width: 410
      }
    }
  }
};
const buttonView = {
  [Widget.Button]: {
    Container: {
      normal: {
        margin: {
          right: 10
        }
      }
    }
github lugia-ysstech / lugia-admin / portal / pages / form / step.js View on Github external
Container: {
          normal: {
            width: 450
          }
        }
      },
      [Widget.Select]: {
        Container: {
          normal: {
            width: 450
          }
        }
      }
    };
    const inputMemoView = {
      [Widget.Input]: {
        Container: {
          normal: {
            width: "100%",
            height: 100
          }
        }
      }
    };
    const inputTicketView = {
      [Widget.Input]: {
        Container: {
          normal: {
            width: 400
          }
        }
      }