index.tsx 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. import { useCollocation } from "@/modules/collocation";
  2. import { css } from "@linaria/core";
  3. import { Image } from "@queenjs/ui";
  4. import { Button, Space, Table } from "ant-design-vue";
  5. import { ColumnsType } from "ant-design-vue/lib/table/Table";
  6. import { queenApi } from "queenjs";
  7. import { defineComponent, onMounted } from "vue";
  8. import OperationModal from "./components/OperationModal";
  9. export default defineComponent({
  10. setup() {
  11. const collocation = useCollocation();
  12. const columns: ColumnsType = [
  13. {
  14. title: "款式图片",
  15. dataIndex: "thumbnail",
  16. key: "thumbnail",
  17. customRender: ({ text }) => (
  18. <Image class="thumbnail" src={text?.url} size={120} />
  19. ),
  20. },
  21. {
  22. title: "款式名称",
  23. dataIndex: "name",
  24. key: "name",
  25. width: 200,
  26. },
  27. {
  28. title: "款式编号",
  29. dataIndex: "code",
  30. key: "code",
  31. },
  32. {
  33. title: "款式类别",
  34. dataIndex: "category",
  35. key: "category",
  36. },
  37. {
  38. title: "价格(元)",
  39. dataIndex: "price",
  40. key: "price",
  41. customRender: ({ text }) => (text / 100 || 0).toFixed(2),
  42. },
  43. {
  44. title: "操作",
  45. key: "action",
  46. dataIndex: "action",
  47. customRender: ({ record }) => {
  48. return (
  49. <Space>
  50. <Button type="link" onClick={() => showEdit(record)}>
  51. 编辑
  52. </Button>
  53. <Button
  54. type="link"
  55. onClick={() => {
  56. queenApi.router.push(`/design/edit/${record._id}`);
  57. // ctx.comm.mallJumpStyleEditor(record._id);
  58. }}
  59. >
  60. 定制内容
  61. </Button>
  62. <Button
  63. type="text"
  64. danger
  65. onClick={() => collocation.actions.delDesign(record)}
  66. >
  67. 删除
  68. </Button>
  69. </Space>
  70. );
  71. },
  72. },
  73. ];
  74. onMounted(() => {
  75. collocation.controls.listCtrl.loadPage(1, 20);
  76. });
  77. const showAddDesign = async () => {
  78. const values: IStyle = await collocation.showModal(<OperationModal />, {
  79. title: "添加可定制款式",
  80. width: "500px",
  81. });
  82. if (!values) return;
  83. values.thumbnail = values.scenePack?.thumbnail;
  84. await collocation.https.createStyle(values);
  85. };
  86. const showEdit = async (record: IStyle) => {
  87. const item: IStyle = await collocation.https.getStyleDetail(record._id);
  88. if (!item) return false;
  89. const values: IStyle = await collocation.showModal(
  90. <OperationModal data={record} />,
  91. {
  92. title: "编辑可定制款式",
  93. width: "500px",
  94. }
  95. );
  96. if (!values) return;
  97. values.thumbnail = values.scenePack.thumbnail;
  98. await collocation.https.updateStyle(values);
  99. };
  100. return () => {
  101. const listCtrl = collocation.controls.listCtrl;
  102. return (
  103. <div class={DesignStyle}>
  104. <div class="mb-20px table_header">
  105. <h3 class="font-bold">款式列表</h3>
  106. <Button type="primary" onClick={showAddDesign}>
  107. 添加+
  108. </Button>
  109. </div>
  110. <Table
  111. size="small"
  112. columns={columns}
  113. rowKey={(record) => record._id}
  114. dataSource={listCtrl.state.list}
  115. pagination={{
  116. pageSize: listCtrl.state.size,
  117. current: listCtrl.state.page,
  118. total: listCtrl.state.total,
  119. onChange: (p) => listCtrl.loadPage(p),
  120. }}
  121. />
  122. </div>
  123. );
  124. };
  125. },
  126. });
  127. const DesignStyle = css`
  128. padding: 20px;
  129. .table_header {
  130. display: flex;
  131. align-items: center;
  132. justify-content: space-between;
  133. }
  134. .ant-table-thead > tr > th,
  135. .ant-table-tbody > tr > td {
  136. text-align: center;
  137. }
  138. .thumbnail {
  139. width: 120px;
  140. object-fit: contain;
  141. }
  142. `;