|
@@ -9,7 +9,7 @@ export default defineUI({
|
|
const { store, actions, jumpIndexHtml } = useEditor();
|
|
const { store, actions, jumpIndexHtml } = useEditor();
|
|
|
|
|
|
return () => (
|
|
return () => (
|
|
- <div class="relative flex justify-between">
|
|
|
|
|
|
+ <div class="relative flex justify-between items-center">
|
|
<div class="flex items-center">
|
|
<div class="flex items-center">
|
|
<aside>
|
|
<aside>
|
|
<img
|
|
<img
|
|
@@ -35,17 +35,23 @@ export default defineUI({
|
|
{store.designData?.title}
|
|
{store.designData?.title}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
- <aside class="space-x-10px">
|
|
|
|
|
|
+ <aside class="space-x-12px">
|
|
{store.isEditPage && (
|
|
{store.isEditPage && (
|
|
<Dropdown
|
|
<Dropdown
|
|
overlay={<ShareBox />}
|
|
overlay={<ShareBox />}
|
|
trigger="click"
|
|
trigger="click"
|
|
placement="bottomRight"
|
|
placement="bottomRight"
|
|
>
|
|
>
|
|
- <Button>分享</Button>
|
|
|
|
|
|
+ <Button size="small" class="text-12px">
|
|
|
|
+ 分享
|
|
|
|
+ </Button>
|
|
</Dropdown>
|
|
</Dropdown>
|
|
)}
|
|
)}
|
|
- <Button type="primary" onClick={() => actions.saveDesign()}>
|
|
|
|
|
|
+ <Button
|
|
|
|
+ type="primary"
|
|
|
|
+ size="small"
|
|
|
|
+ onClick={() => actions.saveDesign()}
|
|
|
|
+ >
|
|
保存
|
|
保存
|
|
</Button>
|
|
</Button>
|
|
</aside>
|
|
</aside>
|