@@ -93,17 +93,17 @@ export const layoutColumns: ColumnItem[] = [
step: 0.01,
},
- {
- label: "边框弧度",
- dataIndex: "layout.radius",
- component: Slider,
- props: {
- defaultValue: 0,
- min: 0,
- max: 100,
- step: 1,
- },
+ // {
+ // label: "边框弧度",
+ // dataIndex: "layout.radius",
+ // component: Slider,
+ // props: {
+ // defaultValue: 0,
+ // min: 0,
+ // max: 100,
+ // step: 1,
+ // },
];
export const bgColumns: ColumnItem[] = [
@@ -38,7 +38,7 @@ export default defineUI({
class="text-center leading-50px bg-dark-50 rounded draggable-item"
key={item._id}
// title={item.title}
- onClick={() => editor.actions.clickFrameToDesign(item)}
+ // onClick={() => editor.actions.clickFrameToDesign(item)}
>
<Image
class="w-full p-10px rounded pointer-events-none"
@@ -21,7 +21,7 @@ export function createCompStyle(module: EditorModule, layout: Layout) {
if (layout.radius !== undefined) {
style["border-radius"] = layout.radius / 2 + "%";
- style["overflow"] = "hidden";
+ // style["overflow"] = "hidden";
}
if (layout.zIndex) {