1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { createAttrsForm } from "../../../defines/createAttrsForm";
- import { createOptions } from "../../../defines/createOptions";
- export { Component } from "./component";
- export const { options, useCompData } = createOptions({
- name: "标题",
- thumbnail: require("@/assets/comps/Cover2/thumbnail.jpg"),
- value: {},
- children: {
- img1: {
- compKey: "Image",
- value: {
- url: require("@/assets/comps/Cover2/img_1.png"),
- x: 0,
- y: 0,
- s: 1,
- },
- },
- img2: {
- compKey: "Image",
- value: {
- url: require("@/assets/comps/Cover2/img_2.jpg"),
- },
- },
- img3: {
- compKey: "Image",
- value: {
- url: require("@/assets/comps/Cover2/img_3.jpg"),
- },
- },
- title: {
- compKey: "Text",
- value: `<p style="text-align:center;"><span style="color:hsl(0,0%,60%);font-size:42px;">NEW </span><span style="font-size:42px;"> FasHION</span></p><p> </p>`,
- },
- text1: {
- compKey: "Text",
- value: `<p><span style="color:hsl(0,0%,100%);font-size:42px;"><strong>P190</strong></span></p><p><span style="color:hsl(0,0%,100%);font-size:20px;"><strong>全新 时尚 </strong></span><span style="color:hsl(0,0%,0%);font-size:20px;"><strong>简约</strong></span></p>`,
- },
- text2: {
- compKey: "Text",
- value: `<p style="text-align:right;"><span style="color:hsl(0, 0%, 0%);">2023新品</span></p>`,
- },
- },
- });
- export const Form = createAttrsForm([]);
|