|
@@ -3,6 +3,7 @@ import { Button, Dropdown } from "ant-design-vue";
|
|
|
import { defineUI } from "queenjs";
|
|
|
import { ShareBox } from "./ShareBox";
|
|
|
import History from "../Toolbar/History";
|
|
|
+import { IconArrowUp } from "@/assets/icons";
|
|
|
|
|
|
export default defineUI({
|
|
|
setup() {
|
|
@@ -35,22 +36,20 @@ export default defineUI({
|
|
|
{controls.pageCtrl.state.title}
|
|
|
</div>
|
|
|
</div>
|
|
|
- <aside class="space-x-12px">
|
|
|
+ <aside class="space-x-16px flex items-center">
|
|
|
+ <IconArrowUp class="text-20px text-light-50 bg-dark-50 p-6px hidden" />
|
|
|
{store.isEditPage && (
|
|
|
<Dropdown
|
|
|
overlay={<ShareBox />}
|
|
|
trigger="click"
|
|
|
placement="bottomRight"
|
|
|
>
|
|
|
- <Button size="small" class="text-12px">
|
|
|
- 预览
|
|
|
- </Button>
|
|
|
+ <Button class="text-12px">预览</Button>
|
|
|
</Dropdown>
|
|
|
)}
|
|
|
<Button
|
|
|
class="text-12px"
|
|
|
type="primary"
|
|
|
- size="small"
|
|
|
onClick={() => actions.saveDesign()}
|
|
|
>
|
|
|
保存
|