12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { createAttrsForm } from "../../../defines/createAttrsForm";
- import { createOptions } from "../../../defines/createOptions";
- import { GroupNumber } from "../../../formItems/GroupNumber";
- export { Component } from "./component";
- const thumbnail = "https://sku3d-test.obs.cn-east-3.myhuaweicloud.com/queenshow/1685607488598_3mmBXh_thumbnail.png"
- export const { options, useCompData } = createOptions({
- name: "卡片5",
- thumbnail:thumbnail,
- value: {
- },
- layout: {
- },
- children: {
- bgImg: {
- compKey: "Image",
- value: { url: "https://sku3d-test.obs.cn-east-3.myhuaweicloud.com/queenshow/1685609522134_nGPo9k_2.png" },
- },
- text1: {
- compKey: "Text",
- value: `<p style="text-align:center;"><span style="color:hsl(0,0%,90%);font-size:52px;">F A SH I O N</span></p>`,
- }
- },
- });
- export const Form = createAttrsForm([
- {
- label: "图片尺寸",
- dataIndex: "value.imgSize",
- component: GroupNumber,
- props: {
- labels: ["宽", "高"],
- },
- },
- ]);
|