PromotionItem.tsx 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. import { css, cx } from "@linaria/core";
  2. import { IconMore } from "@queenjs/icons";
  3. import { Image, View } from "@queenjs/ui";
  4. import { Divider, Dropdown, Menu, Tag } from "ant-design-vue";
  5. import dayjs from "dayjs";
  6. import { defineComponent } from "vue";
  7. import { any } from "vue-types";
  8. import { useResource } from "..";
  9. import { getPathname } from "@/dict";
  10. export default defineComponent({
  11. props: {
  12. record: any(),
  13. },
  14. emits: [],
  15. setup(props) {
  16. const resource = useResource();
  17. const goEdit = () => {
  18. // if (location.host == "www.infish.cn") {
  19. // const url = `${location.origin}${location.pathname}/projects/queenshowv1/editor.html#/?id=${props.record._id}`;
  20. // location.href = url;
  21. // return;
  22. // }
  23. const url = `${location.origin}${getPathname()}editor.html#/?id=${props.record._id}`;
  24. location.href = url;
  25. };
  26. return () => {
  27. const { record } = props;
  28. return (
  29. <div class={cx(itemStyles, "relative")}>
  30. <View ratio={1.4} class="overflow-hidden relative">
  31. <Image class="h-1/1 w-1/1" src={record?.thumbnail?.url} />
  32. <Tag
  33. color="#E88B00"
  34. // color="rgba(0, 0, 0, 0.4)"
  35. class="absolute top-0 left-0 z-1 !rounded-none"
  36. >
  37. 未发布
  38. </Tag>
  39. <div class="absolute inset-0 flex items-center justify-center opacity-0 hover:opacity-100 transition-opacity">
  40. <div
  41. class="text-white icon_action w-60px leading-60px orange cursor-pointer rounded-1/2 text-center"
  42. onClick={goEdit}
  43. >
  44. 编辑
  45. </div>
  46. <div class="text-white icon_action w-60px leading-60px ml-10px cursor-pointer rounded-1/2 text-center">
  47. 预览
  48. </div>
  49. </div>
  50. </View>
  51. <div class="item_footer rounded-b-4px flex items-center justify-between p-15px">
  52. <div>
  53. <div class="text-white text-bold">{record.title}</div>
  54. <div class="flex items-center text-opacity-60 text-white text-12px mt-5px">
  55. {dayjs(record.updateTime).format("YYYY.MM.DD")} 发布
  56. <Divider type="vertical"></Divider>
  57. 23次浏览
  58. </div>
  59. </div>
  60. <Dropdown
  61. placement="bottom"
  62. overlay={
  63. <Menu class="w-90px">
  64. <Menu.Item>复制</Menu.Item>
  65. <Menu.Item>分享</Menu.Item>
  66. <Menu.Item>
  67. <div
  68. onClick={() => resource.actions.renamePromotion(record)}
  69. >
  70. 重命名
  71. </div>
  72. </Menu.Item>
  73. <Menu.Item>
  74. <div
  75. onClick={() => resource.actions.deletePromotion(record)}
  76. >
  77. 删除
  78. </div>
  79. </Menu.Item>
  80. </Menu>
  81. }
  82. >
  83. <IconMore class="text-22px cursor-pointer" />
  84. </Dropdown>
  85. </div>
  86. </div>
  87. );
  88. };
  89. },
  90. });
  91. const itemStyles = css`
  92. .item_footer {
  93. background: #414141;
  94. }
  95. .icon_action {
  96. background-color: rgba(0, 0, 0, 0.5);
  97. &.orange {
  98. background-color: rgba(232, 139, 0, 0.5);
  99. }
  100. }
  101. `;