PageForm.tsx 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import { useEditor } from "@/modules/editor";
  2. import { DesignComp } from "@/modules/editor/objects/DesignTemp/DesignComp";
  3. import FormUI, { ColumnItem } from "@queenjs/components/FormUI";
  4. import { defineComponent } from "vue";
  5. import { any } from "vue-types";
  6. import { createColorOpts } from "../../defines/formOpts/createColorOpts";
  7. import { PageMusic } from "./PageMusic";
  8. import { css } from "@linaria/core";
  9. import MusicSelect from "./MusicSelect";
  10. import screen from "./screen";
  11. const styleColumns = (): ColumnItem[] => {
  12. return [
  13. {
  14. label: "背景颜色",
  15. dataIndex: "layout.background.color",
  16. ...createColorOpts(true),
  17. },
  18. {
  19. label: "背景音乐",
  20. dataIndex: "value.music",
  21. component: MusicSelect,
  22. },
  23. // {
  24. // label: "页面模式",
  25. // dataIndex: "value.pageMode",
  26. // component: Select,
  27. // props: {
  28. // class: "w-full flex-1 overflow-hidden",
  29. // options: [{ label: "H5长页", value: "long" }, { label: "翻页", value: "short" }],
  30. // },
  31. // },
  32. {
  33. dataIndex: "value.music",
  34. component: PageMusic,
  35. isVisible: (value, data) => {
  36. const music = data?.value?.music || "";
  37. return music != "";
  38. },
  39. },
  40. {
  41. component: screen,
  42. },
  43. ];
  44. };
  45. export const PageForm = defineComponent({
  46. props: {
  47. component: any<DesignComp>().isRequired,
  48. },
  49. setup(props) {
  50. const { actions, helper } = useEditor();
  51. function changeVal(e: { dataIndex: string; value: any }) {
  52. actions.updateCompData(props.component, e.dataIndex, e.value);
  53. }
  54. return () => {
  55. return (
  56. <div class={formStyle}>
  57. <div class="text-white">作品属性</div>
  58. <FormUI
  59. data={props.component}
  60. columns={styleColumns()}
  61. onChange={changeVal}
  62. />
  63. </div>
  64. );
  65. };
  66. },
  67. });
  68. const formStyle = css`
  69. .item_label {
  70. color: #a9abaf !important;
  71. }
  72. & > div {
  73. padding: 0;
  74. }
  75. `;