1234567891011121314151617181920212223 |
- import { getElementId, randomCode, deepCopy } from "../../plugins/utils";
- const MODEL = {
- type: "FILL_NUMBER",
- x: 0,
- y: 0,
- w: 300,
- h: 280,
- sign: "",
- name: "准考证号",
- numberCount: 9,
- content: ""
- };
- const getModel = () => {
- return {
- id: getElementId(),
- key: randomCode(),
- ...deepCopy(MODEL)
- };
- };
- export { MODEL, getModel };
|