123456789101112131415161718192021222324252627 |
- import { createAttrsForm } from "../../../defines/createAttrsForm";
- import { createOptions } from "../../../defines/createOptions";
- export { Component } from "./component";
- export const { options, useCompData } = createOptions({
- name: "卡片",
- thumbnail: require("./thumbnail.jpg"),
- value: {},
- layout: {
- padding: "0.5rem 0",
- },
- children: {
- text: {
- value: `<p style="text-align:center;"><span style="color:#666;font-size:12px;font-weight: bold;">皮中贵族,触及之处皆舒适,
- 柔韧度高的细腻肌理皮革,触感柔润亲肤,透气
- 质量经久耐磨,性价比高,
- 经典之作用不过时。
- 潮流耐磨的2023年最新款皮革材料</span></p>`,
- layout: {
- textAlign: "center",
- },
- },
- },
- });
- export const Form = createAttrsForm([]);
|