123456789101112131415161718192021222324252627282930 |
- import { getElementId, randomCode, deepCopy } from "../../plugins/utils";
- const MODEL = {
- type: "TEXT",
- x: 0,
- y: 0,
- w: 200,
- h: 50,
- sign: "",
- fontWeight: 400,
- fontFamily: "宋体",
- fontSize: "14px",
- color: "#000",
- content: [
- {
- type: "text",
- content: "样例内容"
- }
- ]
- };
- const getModel = () => {
- return {
- id: getElementId(),
- key: randomCode(),
- ...deepCopy(MODEL)
- };
- };
- export { MODEL, getModel };
|