@pisell/materials 6.7.4 → 6.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (773) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/index.js +1 -1
  5. package/build/lowcode/meta.js +7 -7
  6. package/build/lowcode/preview.js +8 -8
  7. package/build/lowcode/render/default/view.css +1 -1
  8. package/build/lowcode/render/default/view.js +30 -30
  9. package/build/lowcode/view.css +1 -1
  10. package/build/lowcode/view.js +23 -23
  11. package/es/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
  12. package/es/components/PisellBasicGrid/PisellBasicGrid.js +140 -0
  13. package/es/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
  14. package/es/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  15. package/es/components/PisellBasicGrid/hooks/index.js +1 -0
  16. package/es/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  17. package/es/components/PisellBasicGrid/hooks/useGridStyle.js +114 -0
  18. package/es/components/PisellBasicGrid/index.d.ts +6 -0
  19. package/es/components/PisellBasicGrid/index.js +6 -0
  20. package/es/components/PisellBasicGrid/types.d.ts +221 -0
  21. package/es/components/PisellBasicGrid/types.js +1 -0
  22. package/es/components/PisellBasicGrid/utils/index.d.ts +63 -0
  23. package/es/components/PisellBasicGrid/utils/index.js +126 -0
  24. package/es/components/PisellCards/PisellCards.d.ts +8 -0
  25. package/es/components/PisellCards/PisellCards.js +10 -0
  26. package/es/components/PisellCards/PisellCards.less +1 -0
  27. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
  28. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +172 -0
  29. package/es/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
  30. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  31. package/es/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +5 -0
  32. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
  33. package/es/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +103 -0
  34. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  35. package/es/components/PisellCards/components/GraphicTextCard/components/TextContent.js +99 -0
  36. package/es/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
  37. package/es/components/PisellCards/components/GraphicTextCard/components/index.js +6 -0
  38. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  39. package/es/components/PisellCards/components/GraphicTextCard/hooks/index.js +5 -0
  40. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  41. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +46 -0
  42. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  43. package/es/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +85 -0
  44. package/es/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  45. package/es/components/PisellCards/components/GraphicTextCard/index.js +4 -0
  46. package/es/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  47. package/es/components/PisellCards/components/GraphicTextCard/types.js +1 -0
  48. package/es/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  49. package/es/components/PisellCards/components/GraphicTextCard/utils/index.js +78 -0
  50. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  51. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.js +122 -0
  52. package/es/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
  53. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  54. package/es/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +54 -0
  55. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  56. package/es/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +101 -0
  57. package/es/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  58. package/es/components/PisellCards/components/MultilevelCard/components/index.js +2 -0
  59. package/es/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  60. package/es/components/PisellCards/components/MultilevelCard/hooks/index.js +2 -0
  61. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
  62. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +42 -0
  63. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  64. package/es/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +80 -0
  65. package/es/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  66. package/es/components/PisellCards/components/MultilevelCard/index.js +1 -0
  67. package/es/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  68. package/es/components/PisellCards/components/MultilevelCard/types.js +1 -0
  69. package/es/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  70. package/es/components/PisellCards/components/MultilevelCard/utils/index.js +14 -0
  71. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
  72. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.js +182 -0
  73. package/es/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
  74. package/es/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  75. package/es/components/PisellCards/components/PisellImageCard/components/index.js +1 -0
  76. package/es/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  77. package/es/components/PisellCards/components/PisellImageCard/hooks/index.js +6 -0
  78. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
  79. package/es/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
  80. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  81. package/es/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +61 -0
  82. package/es/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
  83. package/es/components/PisellCards/components/PisellImageCard/index.js +4 -0
  84. package/es/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  85. package/es/components/PisellCards/components/PisellImageCard/types.js +1 -0
  86. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  87. package/es/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +15 -0
  88. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  89. package/es/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +13 -0
  90. package/es/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  91. package/es/components/PisellCards/components/PisellImageCard/utils/index.js +6 -0
  92. package/es/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
  93. package/es/components/PisellCards/components/TabCard/TabCard.js +167 -0
  94. package/es/components/PisellCards/components/TabCard/TabCard.less +186 -0
  95. package/es/components/PisellCards/components/TabCard/index.d.ts +5 -0
  96. package/es/components/PisellCards/components/TabCard/index.js +4 -0
  97. package/es/components/PisellCards/components/TabCard/types.d.ts +70 -0
  98. package/es/components/PisellCards/components/TabCard/types.js +1 -0
  99. package/es/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
  100. package/es/components/PisellCards/components/TextCard/TextCard.js +203 -0
  101. package/es/components/PisellCards/components/TextCard/TextCard.less +193 -0
  102. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  103. package/es/components/PisellCards/components/TextCard/components/BadgeWrapper.js +70 -0
  104. package/es/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  105. package/es/components/PisellCards/components/TextCard/components/IconWrapper.js +41 -0
  106. package/es/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  107. package/es/components/PisellCards/components/TextCard/components/TextContent.js +89 -0
  108. package/es/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  109. package/es/components/PisellCards/components/TextCard/components/index.js +6 -0
  110. package/es/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  111. package/es/components/PisellCards/components/TextCard/hooks/index.js +1 -0
  112. package/es/components/PisellCards/components/TextCard/index.d.ts +5 -0
  113. package/es/components/PisellCards/components/TextCard/index.js +4 -0
  114. package/es/components/PisellCards/components/TextCard/types.d.ts +270 -0
  115. package/es/components/PisellCards/components/TextCard/types.js +1 -0
  116. package/es/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  117. package/es/components/PisellCards/components/TextCard/utils/index.js +1 -0
  118. package/es/components/PisellCards/components/index.d.ts +10 -0
  119. package/es/components/PisellCards/components/index.js +7 -0
  120. package/es/components/PisellCards/hooks/index.d.ts +0 -0
  121. package/es/components/PisellCards/hooks/index.js +1 -0
  122. package/es/components/PisellCards/index.d.ts +15 -0
  123. package/es/components/PisellCards/index.js +21 -0
  124. package/es/components/PisellCards/types.d.ts +48 -0
  125. package/es/components/PisellCards/types.js +1 -0
  126. package/es/components/PisellCards/utils/index.d.ts +0 -0
  127. package/es/components/PisellCards/utils/index.js +1 -0
  128. package/es/components/PisellProcedure/PisellProcedure.d.ts +12 -0
  129. package/es/components/PisellProcedure/PisellProcedure.js +137 -0
  130. package/es/components/PisellProcedure/PisellProcedure.less +551 -0
  131. package/es/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  132. package/es/components/PisellProcedure/components/FooterActions.js +100 -0
  133. package/es/components/PisellProcedure/components/ProcedureBody.d.ts +39 -0
  134. package/es/components/PisellProcedure/components/ProcedureBody.js +154 -0
  135. package/es/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  136. package/es/components/PisellProcedure/components/ProcedureContent.js +30 -0
  137. package/es/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
  138. package/es/components/PisellProcedure/components/ProcedureFooter.js +169 -0
  139. package/es/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
  140. package/es/components/PisellProcedure/components/ProcedureHeader.js +286 -0
  141. package/es/components/PisellProcedure/components/ProcedureSidebar.d.ts +36 -0
  142. package/es/components/PisellProcedure/components/ProcedureSidebar.js +119 -0
  143. package/es/components/PisellProcedure/components/index.d.ts +12 -0
  144. package/es/components/PisellProcedure/components/index.js +12 -0
  145. package/es/components/PisellProcedure/hooks/index.d.ts +8 -0
  146. package/es/components/PisellProcedure/hooks/index.js +11 -0
  147. package/es/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  148. package/es/components/PisellProcedure/hooks/useElementSize.js +237 -0
  149. package/es/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  150. package/es/components/PisellProcedure/hooks/useOverflowActions.js +297 -0
  151. package/es/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  152. package/es/components/PisellProcedure/hooks/useResponsiveClass.js +118 -0
  153. package/es/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  154. package/es/components/PisellProcedure/hooks/useSidebarHeight.js +130 -0
  155. package/es/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  156. package/es/components/PisellProcedure/hooks/useStepManager.js +122 -0
  157. package/es/components/PisellProcedure/index.d.ts +5 -0
  158. package/es/components/PisellProcedure/index.js +4 -0
  159. package/es/components/PisellProcedure/types.d.ts +328 -0
  160. package/es/components/PisellProcedure/types.js +1 -0
  161. package/es/components/PisellProcedure/utils/classNames.d.ts +33 -0
  162. package/es/components/PisellProcedure/utils/classNames.js +45 -0
  163. package/es/components/PisellProcedure/utils/extractText.d.ts +20 -0
  164. package/es/components/PisellProcedure/utils/extractText.js +40 -0
  165. package/es/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  166. package/es/components/PisellProcedure/utils/footerPosition.js +60 -0
  167. package/es/components/PisellProcedure/utils/index.d.ts +8 -0
  168. package/es/components/PisellProcedure/utils/index.js +18 -0
  169. package/es/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  170. package/es/components/PisellProcedure/utils/layoutRatio.js +100 -0
  171. package/es/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  172. package/es/components/PisellProcedure/utils/slotHelper.js +50 -0
  173. package/es/components/PisellScrollView/PisellScrollView.d.ts +5 -0
  174. package/es/components/PisellScrollView/PisellScrollView.js +323 -0
  175. package/es/components/PisellScrollView/PisellScrollView.less +178 -0
  176. package/es/components/PisellScrollView/components/Actions/index.d.ts +12 -0
  177. package/es/components/PisellScrollView/components/Actions/index.js +130 -0
  178. package/es/components/PisellScrollView/components/Actions/index.less +134 -0
  179. package/es/components/PisellScrollView/hooks/index.d.ts +3 -0
  180. package/es/components/PisellScrollView/hooks/index.js +3 -0
  181. package/es/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  182. package/es/components/PisellScrollView/hooks/useIntersection.js +44 -0
  183. package/es/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  184. package/es/components/PisellScrollView/hooks/useScrollEvents.js +81 -0
  185. package/es/components/PisellScrollView/hooks/useScrollState.d.ts +9 -0
  186. package/es/components/PisellScrollView/hooks/useScrollState.js +105 -0
  187. package/es/components/PisellScrollView/index.d.ts +2 -0
  188. package/es/components/PisellScrollView/index.js +1 -0
  189. package/es/components/PisellScrollView/types.d.ts +203 -0
  190. package/es/components/PisellScrollView/types.js +1 -0
  191. package/es/components/PisellScrollView/utils/index.d.ts +0 -0
  192. package/es/components/PisellScrollView/utils/index.js +1 -0
  193. package/es/components/PisellSteps/PisellSteps.d.ts +14 -0
  194. package/es/components/PisellSteps/PisellSteps.js +245 -0
  195. package/es/components/PisellSteps/PisellSteps.less +320 -0
  196. package/es/components/PisellSteps/hooks/index.d.ts +4 -0
  197. package/es/components/PisellSteps/hooks/index.js +4 -0
  198. package/es/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  199. package/es/components/PisellSteps/hooks/useAnchor.js +60 -0
  200. package/es/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  201. package/es/components/PisellSteps/hooks/useResponsive.js +43 -0
  202. package/es/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  203. package/es/components/PisellSteps/hooks/useStepClick.js +35 -0
  204. package/es/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  205. package/es/components/PisellSteps/hooks/useStepsState.js +66 -0
  206. package/es/components/PisellSteps/index.d.ts +3 -0
  207. package/es/components/PisellSteps/index.js +2 -0
  208. package/es/components/PisellSteps/types.d.ts +249 -0
  209. package/es/components/PisellSteps/types.js +1 -0
  210. package/es/components/PisellSteps/utils/index.d.ts +54 -0
  211. package/es/components/PisellSteps/utils/index.js +118 -0
  212. package/es/components/PisellSuperTabs/PisellSuperTabs.d.ts +13 -0
  213. package/es/components/PisellSuperTabs/PisellSuperTabs.js +127 -0
  214. package/es/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
  215. package/es/components/PisellSuperTabs/components/index.d.ts +0 -0
  216. package/es/components/PisellSuperTabs/components/index.js +1 -0
  217. package/es/components/PisellSuperTabs/hooks/index.d.ts +1 -0
  218. package/es/components/PisellSuperTabs/hooks/index.js +1 -0
  219. package/es/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
  220. package/es/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
  221. package/es/components/PisellSuperTabs/index.d.ts +3 -0
  222. package/es/components/PisellSuperTabs/index.js +2 -0
  223. package/es/components/PisellSuperTabs/types.d.ts +209 -0
  224. package/es/components/PisellSuperTabs/types.js +1 -0
  225. package/es/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  226. package/es/components/PisellSuperTabs/utils/getRowKey.js +33 -0
  227. package/es/components/PisellSuperTabs/utils/index.d.ts +1 -0
  228. package/es/components/PisellSuperTabs/utils/index.js +1 -0
  229. package/es/components/PisellTabbar/PisellTabbar.d.ts +3 -0
  230. package/es/components/PisellTabbar/PisellTabbar.js +175 -0
  231. package/es/components/PisellTabbar/PisellTabbar.less +26 -0
  232. package/es/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
  233. package/es/components/PisellTabbar/components/TabbarLevel.js +275 -0
  234. package/es/components/PisellTabbar/components/index.d.ts +1 -0
  235. package/es/components/PisellTabbar/components/index.js +2 -0
  236. package/es/components/PisellTabbar/constants.d.ts +46 -0
  237. package/es/components/PisellTabbar/constants.js +84 -0
  238. package/es/components/PisellTabbar/hooks/index.d.ts +2 -0
  239. package/es/components/PisellTabbar/hooks/index.js +3 -0
  240. package/es/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
  241. package/es/components/PisellTabbar/hooks/useActiveKey.js +104 -0
  242. package/es/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
  243. package/es/components/PisellTabbar/hooks/useExpand.js +76 -0
  244. package/es/components/PisellTabbar/index.d.ts +7 -0
  245. package/es/components/PisellTabbar/index.js +7 -0
  246. package/es/components/PisellTabbar/locales.d.ts +15 -0
  247. package/es/components/PisellTabbar/locales.js +14 -0
  248. package/es/components/PisellTabbar/mock.d.ts +47 -0
  249. package/es/components/PisellTabbar/mock.js +1351 -0
  250. package/es/components/PisellTabbar/template/index.d.ts +0 -0
  251. package/es/components/PisellTabbar/template/index.js +0 -0
  252. package/es/components/PisellTabbar/types.d.ts +111 -0
  253. package/es/components/PisellTabbar/types.js +1 -0
  254. package/es/components/PisellTabbar/utils/index.d.ts +35 -0
  255. package/es/components/PisellTabbar/utils/index.js +93 -0
  256. package/es/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
  257. package/es/components/PisellTabbar2/PisellTabbar.js +244 -0
  258. package/es/components/PisellTabbar2/PisellTabbar.less +25 -0
  259. package/es/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
  260. package/es/components/PisellTabbar2/components/TabbarLevel.js +322 -0
  261. package/es/components/PisellTabbar2/components/index.d.ts +1 -0
  262. package/es/components/PisellTabbar2/components/index.js +2 -0
  263. package/es/components/PisellTabbar2/constants.d.ts +46 -0
  264. package/es/components/PisellTabbar2/constants.js +84 -0
  265. package/es/components/PisellTabbar2/hooks/index.d.ts +2 -0
  266. package/es/components/PisellTabbar2/hooks/index.js +3 -0
  267. package/es/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  268. package/es/components/PisellTabbar2/hooks/useActiveKey.js +128 -0
  269. package/es/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  270. package/es/components/PisellTabbar2/hooks/useExpand.js +76 -0
  271. package/es/components/PisellTabbar2/index.d.ts +6 -0
  272. package/es/components/PisellTabbar2/index.js +6 -0
  273. package/es/components/PisellTabbar2/locales.d.ts +15 -0
  274. package/es/components/PisellTabbar2/locales.js +14 -0
  275. package/es/components/PisellTabbar2/mock.d.ts +205 -0
  276. package/es/components/PisellTabbar2/mock.js +2480 -0
  277. package/es/components/PisellTabbar2/types.d.ts +117 -0
  278. package/es/components/PisellTabbar2/types.js +1 -0
  279. package/es/components/PisellTabbar2/utils/index.d.ts +35 -0
  280. package/es/components/PisellTabbar2/utils/index.js +113 -0
  281. package/es/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
  282. package/es/components/PisellTabbar3/PisellTabbar.js +649 -0
  283. package/es/components/PisellTabbar3/PisellTabbar.less +26 -0
  284. package/es/components/PisellTabbar3/index.d.ts +6 -0
  285. package/es/components/PisellTabbar3/index.js +6 -0
  286. package/es/components/PisellTabbar3/locales.d.ts +15 -0
  287. package/es/components/PisellTabbar3/locales.js +14 -0
  288. package/es/components/PisellTabbar3/mock.d.ts +47 -0
  289. package/es/components/PisellTabbar3/mock.js +1351 -0
  290. package/es/components/PisellTabbar3/types.d.ts +111 -0
  291. package/es/components/PisellTabbar3/types.js +1 -0
  292. package/es/components/Template/PisellSteps.d.ts +0 -0
  293. package/es/components/Template/PisellSteps.js +1 -0
  294. package/es/components/Template/PisellSteps.less +1 -0
  295. package/es/components/Template/components/index.d.ts +0 -0
  296. package/es/components/Template/components/index.js +1 -0
  297. package/es/components/Template/hooks/index.d.ts +0 -0
  298. package/es/components/Template/hooks/index.js +1 -0
  299. package/es/components/Template/index.d.ts +0 -0
  300. package/es/components/Template/index.js +1 -0
  301. package/es/components/Template/types.d.ts +0 -0
  302. package/es/components/Template/types.js +0 -0
  303. package/es/components/Template/utils/index.d.ts +0 -0
  304. package/es/components/Template/utils/index.js +1 -0
  305. package/es/components/batch-editor/fields/index.d.ts +1 -0
  306. package/es/components/calendar/index.d.ts +1 -0
  307. package/es/components/checkbox/index.d.ts +1 -0
  308. package/es/components/dataSourceComponents/dataSourceForm/BaseForm.js +72 -10
  309. package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +1 -0
  310. package/es/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.js +5 -3
  311. package/es/components/dataSourceComponents/dataSourceForm/serve.d.ts +30 -0
  312. package/es/components/dataSourceComponents/dataSourceForm/serve.js +93 -0
  313. package/es/components/dataSourceComponents/dataSourceForm/submitButton/index.js +66 -28
  314. package/es/components/dataSourceComponents/dataSourceForm/type.d.ts +1 -0
  315. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -0
  316. package/es/components/dataSourceComponents/dataSourceForm/urlUtils.js +76 -0
  317. package/es/components/dataSourceComponents/dataSourceForm/utils.js +3 -4
  318. package/es/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
  319. package/es/components/dataSourceComponents/dataSourceTable/BaseTable.js +1 -0
  320. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
  321. package/es/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +2 -35
  322. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +1 -1
  323. package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
  324. package/es/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
  325. package/es/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -0
  326. package/es/components/dataSourceComponents/fields/Switch/ReadPretty.js +16 -0
  327. package/es/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -0
  328. package/es/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -0
  329. package/es/components/dataSourceComponents/fields/Switch/WithMode.js +5 -0
  330. package/es/components/dataSourceComponents/fields/Switch/index.d.ts +3 -0
  331. package/es/components/dataSourceComponents/fields/Switch/index.js +8 -0
  332. package/es/components/dataSourceComponents/fields/Switch/type.d.ts +16 -0
  333. package/es/components/dataSourceComponents/fields/Switch/type.js +1 -0
  334. package/es/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  335. package/es/components/dataSourceComponents/fields/index.d.ts +12 -11
  336. package/es/components/dataSourceComponents/hooks/useActions.js +20 -14
  337. package/es/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +1 -0
  338. package/es/components/date-picker/index.d.ts +1 -0
  339. package/es/components/filter/components/items/index.d.ts +1 -0
  340. package/es/components/filter/components/items/text/Editor/index.d.ts +1 -0
  341. package/es/components/filter/components/items/text/Preview/index.d.ts +1 -0
  342. package/es/components/filter/components/items/text/index.d.ts +1 -0
  343. package/es/components/iconfont/index.js +1 -1
  344. package/es/components/pisell-config-provider/index.js +0 -1
  345. package/es/components/pisellCardList/index.d.ts +4 -0
  346. package/es/components/pisellCardList/index.js +5 -1
  347. package/es/components/pisellDatePicker/index.d.ts +1 -0
  348. package/es/components/pisellModal/components/index.d.ts +1 -0
  349. package/es/components/pisellWalletPassCard/index.d.ts +4 -0
  350. package/es/components/pisellWalletPassCard/index.js +17 -4
  351. package/es/components/radio/index.d.ts +1 -0
  352. package/es/components/skeleton/index.d.ts +1 -0
  353. package/es/components/table/Table/fields/date/index.d.ts +1 -0
  354. package/es/components/table/Table/fields/image/index.d.ts +1 -0
  355. package/es/components/table/Table/fields/index.d.ts +3 -2
  356. package/es/components/table/Table/fields/link/index.d.ts +1 -0
  357. package/es/components/table/Table/fields/number/index.d.ts +1 -0
  358. package/es/components/table/Table/fields/numberRange/index.d.ts +1 -0
  359. package/es/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
  360. package/es/components/table/Table/fields/pSwitch/index.d.ts +1 -0
  361. package/es/components/table/Table/fields/rangePicker/index.d.ts +1 -0
  362. package/es/components/table/Table/fields/search/index.d.ts +1 -0
  363. package/es/components/table/Table/fields/select/index.d.ts +1 -0
  364. package/es/components/table/Table/fields/text/index.d.ts +1 -0
  365. package/es/components/table/Table/fields/treeSelect/index.d.ts +1 -0
  366. package/es/components/table/Table/utils.d.ts +1 -1
  367. package/es/components/time-picker/index.d.ts +1 -0
  368. package/es/components/upload/index.d.ts +1 -0
  369. package/es/components/virtual-keyboard/Time/utils.d.ts +1 -0
  370. package/es/hooks/useMobile.d.ts +8 -0
  371. package/es/hooks/useMobile.js +43 -0
  372. package/es/index.d.ts +24 -0
  373. package/es/index.js +15 -1
  374. package/es/locales/en-US.d.ts +12 -0
  375. package/es/locales/en-US.js +14 -1
  376. package/es/locales/zh-CN.d.ts +12 -0
  377. package/es/locales/zh-CN.js +14 -1
  378. package/es/locales/zh-TW.d.ts +12 -0
  379. package/es/locales/zh-TW.js +14 -1
  380. package/lib/components/PisellBasicGrid/PisellBasicGrid.d.ts +10 -0
  381. package/lib/components/PisellBasicGrid/PisellBasicGrid.js +132 -0
  382. package/lib/components/PisellBasicGrid/PisellBasicGrid.less +20 -0
  383. package/lib/components/PisellBasicGrid/hooks/index.d.ts +1 -0
  384. package/lib/components/PisellBasicGrid/hooks/index.js +40 -0
  385. package/lib/components/PisellBasicGrid/hooks/useGridStyle.d.ts +37 -0
  386. package/lib/components/PisellBasicGrid/hooks/useGridStyle.js +104 -0
  387. package/lib/components/PisellBasicGrid/index.d.ts +6 -0
  388. package/lib/components/PisellBasicGrid/index.js +40 -0
  389. package/lib/components/PisellBasicGrid/types.d.ts +221 -0
  390. package/lib/components/PisellBasicGrid/types.js +17 -0
  391. package/lib/components/PisellBasicGrid/utils/index.d.ts +63 -0
  392. package/lib/components/PisellBasicGrid/utils/index.js +108 -0
  393. package/lib/components/PisellCards/PisellCards.d.ts +8 -0
  394. package/lib/components/PisellCards/PisellCards.js +28 -0
  395. package/lib/components/PisellCards/PisellCards.less +1 -0
  396. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.d.ts +9 -0
  397. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.js +136 -0
  398. package/lib/components/PisellCards/components/GraphicTextCard/GraphicTextCard.less +320 -0
  399. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.d.ts +5 -0
  400. package/lib/components/PisellCards/components/GraphicTextCard/components/BadgeWrapper.js +35 -0
  401. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.d.ts +24 -0
  402. package/lib/components/PisellCards/components/GraphicTextCard/components/GraphicArea.js +108 -0
  403. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.d.ts +27 -0
  404. package/lib/components/PisellCards/components/GraphicTextCard/components/TextContent.js +101 -0
  405. package/lib/components/PisellCards/components/GraphicTextCard/components/index.d.ts +6 -0
  406. package/lib/components/PisellCards/components/GraphicTextCard/components/index.js +45 -0
  407. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.d.ts +5 -0
  408. package/lib/components/PisellCards/components/GraphicTextCard/hooks/index.js +32 -0
  409. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.d.ts +15 -0
  410. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardClick.js +54 -0
  411. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.d.ts +18 -0
  412. package/lib/components/PisellCards/components/GraphicTextCard/hooks/useGraphicTextCardStyle.js +92 -0
  413. package/lib/components/PisellCards/components/GraphicTextCard/index.d.ts +5 -0
  414. package/lib/components/PisellCards/components/GraphicTextCard/index.js +35 -0
  415. package/lib/components/PisellCards/components/GraphicTextCard/types.d.ts +290 -0
  416. package/lib/components/PisellCards/components/GraphicTextCard/types.js +17 -0
  417. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.d.ts +19 -0
  418. package/lib/components/PisellCards/components/GraphicTextCard/utils/index.js +55 -0
  419. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.d.ts +19 -0
  420. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.js +137 -0
  421. package/lib/components/PisellCards/components/MultilevelCard/MultilevelCard.less +52 -0
  422. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.d.ts +7 -0
  423. package/lib/components/PisellCards/components/MultilevelCard/components/CardWrapper.js +79 -0
  424. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.d.ts +7 -0
  425. package/lib/components/PisellCards/components/MultilevelCard/components/PanelWrapper.js +122 -0
  426. package/lib/components/PisellCards/components/MultilevelCard/components/index.d.ts +2 -0
  427. package/lib/components/PisellCards/components/MultilevelCard/components/index.js +32 -0
  428. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.d.ts +2 -0
  429. package/lib/components/PisellCards/components/MultilevelCard/hooks/index.js +32 -0
  430. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.d.ts +32 -0
  431. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardExpand.js +45 -0
  432. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.d.ts +28 -0
  433. package/lib/components/PisellCards/components/MultilevelCard/hooks/useMultilevelCardHover.js +71 -0
  434. package/lib/components/PisellCards/components/MultilevelCard/index.d.ts +2 -0
  435. package/lib/components/PisellCards/components/MultilevelCard/index.js +35 -0
  436. package/lib/components/PisellCards/components/MultilevelCard/types.d.ts +202 -0
  437. package/lib/components/PisellCards/components/MultilevelCard/types.js +17 -0
  438. package/lib/components/PisellCards/components/MultilevelCard/utils/index.d.ts +6 -0
  439. package/lib/components/PisellCards/components/MultilevelCard/utils/index.js +37 -0
  440. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.d.ts +9 -0
  441. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.js +131 -0
  442. package/lib/components/PisellCards/components/PisellImageCard/PisellImageCard.less +94 -0
  443. package/lib/components/PisellCards/components/PisellImageCard/components/index.d.ts +0 -0
  444. package/lib/components/PisellCards/components/PisellImageCard/components/index.js +0 -0
  445. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.d.ts +5 -0
  446. package/lib/components/PisellCards/components/PisellImageCard/hooks/index.js +32 -0
  447. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.d.ts +12 -0
  448. package/lib/components/PisellCards/components/PisellImageCard/hooks/useImageLoad.js +86 -0
  449. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.d.ts +10 -0
  450. package/lib/components/PisellCards/components/PisellImageCard/hooks/usePisellImageCardStyle.js +86 -0
  451. package/lib/components/PisellCards/components/PisellImageCard/index.d.ts +5 -0
  452. package/lib/components/PisellCards/components/PisellImageCard/index.js +35 -0
  453. package/lib/components/PisellCards/components/PisellImageCard/types.d.ts +74 -0
  454. package/lib/components/PisellCards/components/PisellImageCard/types.js +17 -0
  455. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.d.ts +7 -0
  456. package/lib/components/PisellCards/components/PisellImageCard/utils/getImageObjectFit.js +37 -0
  457. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.d.ts +7 -0
  458. package/lib/components/PisellCards/components/PisellImageCard/utils/getTruncatedText.js +32 -0
  459. package/lib/components/PisellCards/components/PisellImageCard/utils/index.d.ts +5 -0
  460. package/lib/components/PisellCards/components/PisellImageCard/utils/index.js +32 -0
  461. package/lib/components/PisellCards/components/TabCard/TabCard.d.ts +4 -0
  462. package/lib/components/PisellCards/components/TabCard/TabCard.js +153 -0
  463. package/lib/components/PisellCards/components/TabCard/TabCard.less +186 -0
  464. package/lib/components/PisellCards/components/TabCard/index.d.ts +5 -0
  465. package/lib/components/PisellCards/components/TabCard/index.js +35 -0
  466. package/lib/components/PisellCards/components/TabCard/types.d.ts +70 -0
  467. package/lib/components/PisellCards/components/TabCard/types.js +17 -0
  468. package/lib/components/PisellCards/components/TextCard/TextCard.d.ts +8 -0
  469. package/lib/components/PisellCards/components/TextCard/TextCard.js +189 -0
  470. package/lib/components/PisellCards/components/TextCard/TextCard.less +193 -0
  471. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.d.ts +26 -0
  472. package/lib/components/PisellCards/components/TextCard/components/BadgeWrapper.js +71 -0
  473. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.d.ts +17 -0
  474. package/lib/components/PisellCards/components/TextCard/components/IconWrapper.js +62 -0
  475. package/lib/components/PisellCards/components/TextCard/components/TextContent.d.ts +21 -0
  476. package/lib/components/PisellCards/components/TextCard/components/TextContent.js +92 -0
  477. package/lib/components/PisellCards/components/TextCard/components/index.d.ts +6 -0
  478. package/lib/components/PisellCards/components/TextCard/components/index.js +45 -0
  479. package/lib/components/PisellCards/components/TextCard/hooks/index.d.ts +0 -0
  480. package/lib/components/PisellCards/components/TextCard/hooks/index.js +0 -0
  481. package/lib/components/PisellCards/components/TextCard/index.d.ts +5 -0
  482. package/lib/components/PisellCards/components/TextCard/index.js +35 -0
  483. package/lib/components/PisellCards/components/TextCard/types.d.ts +270 -0
  484. package/lib/components/PisellCards/components/TextCard/types.js +17 -0
  485. package/lib/components/PisellCards/components/TextCard/utils/index.d.ts +0 -0
  486. package/lib/components/PisellCards/components/TextCard/utils/index.js +0 -0
  487. package/lib/components/PisellCards/components/index.d.ts +10 -0
  488. package/lib/components/PisellCards/components/index.js +51 -0
  489. package/lib/components/PisellCards/hooks/index.d.ts +0 -0
  490. package/lib/components/PisellCards/hooks/index.js +0 -0
  491. package/lib/components/PisellCards/index.d.ts +15 -0
  492. package/lib/components/PisellCards/index.js +47 -0
  493. package/lib/components/PisellCards/types.d.ts +48 -0
  494. package/lib/components/PisellCards/types.js +17 -0
  495. package/lib/components/PisellCards/utils/index.d.ts +0 -0
  496. package/lib/components/PisellCards/utils/index.js +0 -0
  497. package/lib/components/PisellProcedure/PisellProcedure.d.ts +12 -0
  498. package/lib/components/PisellProcedure/PisellProcedure.js +148 -0
  499. package/lib/components/PisellProcedure/PisellProcedure.less +551 -0
  500. package/lib/components/PisellProcedure/components/FooterActions.d.ts +24 -0
  501. package/lib/components/PisellProcedure/components/FooterActions.js +96 -0
  502. package/lib/components/PisellProcedure/components/ProcedureBody.d.ts +39 -0
  503. package/lib/components/PisellProcedure/components/ProcedureBody.js +157 -0
  504. package/lib/components/PisellProcedure/components/ProcedureContent.d.ts +23 -0
  505. package/lib/components/PisellProcedure/components/ProcedureContent.js +50 -0
  506. package/lib/components/PisellProcedure/components/ProcedureFooter.d.ts +38 -0
  507. package/lib/components/PisellProcedure/components/ProcedureFooter.js +156 -0
  508. package/lib/components/PisellProcedure/components/ProcedureHeader.d.ts +34 -0
  509. package/lib/components/PisellProcedure/components/ProcedureHeader.js +231 -0
  510. package/lib/components/PisellProcedure/components/ProcedureSidebar.d.ts +36 -0
  511. package/lib/components/PisellProcedure/components/ProcedureSidebar.js +131 -0
  512. package/lib/components/PisellProcedure/components/index.d.ts +12 -0
  513. package/lib/components/PisellProcedure/components/index.js +54 -0
  514. package/lib/components/PisellProcedure/hooks/index.d.ts +8 -0
  515. package/lib/components/PisellProcedure/hooks/index.js +41 -0
  516. package/lib/components/PisellProcedure/hooks/useElementSize.d.ts +38 -0
  517. package/lib/components/PisellProcedure/hooks/useElementSize.js +175 -0
  518. package/lib/components/PisellProcedure/hooks/useOverflowActions.d.ts +43 -0
  519. package/lib/components/PisellProcedure/hooks/useOverflowActions.js +219 -0
  520. package/lib/components/PisellProcedure/hooks/useResponsiveClass.d.ts +6 -0
  521. package/lib/components/PisellProcedure/hooks/useResponsiveClass.js +101 -0
  522. package/lib/components/PisellProcedure/hooks/useSidebarHeight.d.ts +16 -0
  523. package/lib/components/PisellProcedure/hooks/useSidebarHeight.js +107 -0
  524. package/lib/components/PisellProcedure/hooks/useStepManager.d.ts +50 -0
  525. package/lib/components/PisellProcedure/hooks/useStepManager.js +90 -0
  526. package/lib/components/PisellProcedure/index.d.ts +5 -0
  527. package/lib/components/PisellProcedure/index.js +35 -0
  528. package/lib/components/PisellProcedure/types.d.ts +328 -0
  529. package/lib/components/PisellProcedure/types.js +17 -0
  530. package/lib/components/PisellProcedure/utils/classNames.d.ts +33 -0
  531. package/lib/components/PisellProcedure/utils/classNames.js +41 -0
  532. package/lib/components/PisellProcedure/utils/extractText.d.ts +20 -0
  533. package/lib/components/PisellProcedure/utils/extractText.js +49 -0
  534. package/lib/components/PisellProcedure/utils/footerPosition.d.ts +41 -0
  535. package/lib/components/PisellProcedure/utils/footerPosition.js +58 -0
  536. package/lib/components/PisellProcedure/utils/index.d.ts +8 -0
  537. package/lib/components/PisellProcedure/utils/index.js +67 -0
  538. package/lib/components/PisellProcedure/utils/layoutRatio.d.ts +42 -0
  539. package/lib/components/PisellProcedure/utils/layoutRatio.js +78 -0
  540. package/lib/components/PisellProcedure/utils/slotHelper.d.ts +27 -0
  541. package/lib/components/PisellProcedure/utils/slotHelper.js +53 -0
  542. package/lib/components/PisellScrollView/PisellScrollView.d.ts +5 -0
  543. package/lib/components/PisellScrollView/PisellScrollView.js +310 -0
  544. package/lib/components/PisellScrollView/PisellScrollView.less +178 -0
  545. package/lib/components/PisellScrollView/components/Actions/index.d.ts +12 -0
  546. package/lib/components/PisellScrollView/components/Actions/index.js +220 -0
  547. package/lib/components/PisellScrollView/components/Actions/index.less +134 -0
  548. package/lib/components/PisellScrollView/hooks/index.d.ts +3 -0
  549. package/lib/components/PisellScrollView/hooks/index.js +27 -0
  550. package/lib/components/PisellScrollView/hooks/useIntersection.d.ts +8 -0
  551. package/lib/components/PisellScrollView/hooks/useIntersection.js +67 -0
  552. package/lib/components/PisellScrollView/hooks/useScrollEvents.d.ts +20 -0
  553. package/lib/components/PisellScrollView/hooks/useScrollEvents.js +104 -0
  554. package/lib/components/PisellScrollView/hooks/useScrollState.d.ts +9 -0
  555. package/lib/components/PisellScrollView/hooks/useScrollState.js +109 -0
  556. package/lib/components/PisellScrollView/index.d.ts +2 -0
  557. package/lib/components/PisellScrollView/index.js +39 -0
  558. package/lib/components/PisellScrollView/types.d.ts +203 -0
  559. package/lib/components/PisellScrollView/types.js +17 -0
  560. package/lib/components/PisellScrollView/utils/index.d.ts +0 -0
  561. package/lib/components/PisellScrollView/utils/index.js +0 -0
  562. package/lib/components/PisellSteps/PisellSteps.d.ts +14 -0
  563. package/lib/components/PisellSteps/PisellSteps.js +225 -0
  564. package/lib/components/PisellSteps/PisellSteps.less +320 -0
  565. package/lib/components/PisellSteps/hooks/index.d.ts +4 -0
  566. package/lib/components/PisellSteps/hooks/index.js +38 -0
  567. package/lib/components/PisellSteps/hooks/useAnchor.d.ts +9 -0
  568. package/lib/components/PisellSteps/hooks/useAnchor.js +66 -0
  569. package/lib/components/PisellSteps/hooks/useResponsive.d.ts +8 -0
  570. package/lib/components/PisellSteps/hooks/useResponsive.js +48 -0
  571. package/lib/components/PisellSteps/hooks/useStepClick.d.ts +11 -0
  572. package/lib/components/PisellSteps/hooks/useStepClick.js +55 -0
  573. package/lib/components/PisellSteps/hooks/useStepsState.d.ts +9 -0
  574. package/lib/components/PisellSteps/hooks/useStepsState.js +56 -0
  575. package/lib/components/PisellSteps/index.d.ts +3 -0
  576. package/lib/components/PisellSteps/index.js +36 -0
  577. package/lib/components/PisellSteps/types.d.ts +249 -0
  578. package/lib/components/PisellSteps/types.js +17 -0
  579. package/lib/components/PisellSteps/utils/index.d.ts +54 -0
  580. package/lib/components/PisellSteps/utils/index.js +88 -0
  581. package/lib/components/PisellSuperTabs/PisellSuperTabs.d.ts +13 -0
  582. package/lib/components/PisellSuperTabs/PisellSuperTabs.js +188 -0
  583. package/lib/components/PisellSuperTabs/PisellSuperTabs.less +35 -0
  584. package/lib/components/PisellSuperTabs/components/index.d.ts +0 -0
  585. package/lib/components/PisellSuperTabs/components/index.js +0 -0
  586. package/lib/components/PisellSuperTabs/hooks/index.d.ts +1 -0
  587. package/lib/components/PisellSuperTabs/hooks/index.js +29 -0
  588. package/lib/components/PisellSuperTabs/hooks/useTabsState.d.ts +7 -0
  589. package/lib/components/PisellSuperTabs/hooks/useTabsState.js +50 -0
  590. package/lib/components/PisellSuperTabs/index.d.ts +3 -0
  591. package/lib/components/PisellSuperTabs/index.js +36 -0
  592. package/lib/components/PisellSuperTabs/types.d.ts +209 -0
  593. package/lib/components/PisellSuperTabs/types.js +17 -0
  594. package/lib/components/PisellSuperTabs/utils/getRowKey.d.ts +8 -0
  595. package/lib/components/PisellSuperTabs/utils/getRowKey.js +50 -0
  596. package/lib/components/PisellSuperTabs/utils/index.d.ts +1 -0
  597. package/lib/components/PisellSuperTabs/utils/index.js +29 -0
  598. package/lib/components/PisellTabbar/PisellTabbar.d.ts +3 -0
  599. package/lib/components/PisellTabbar/PisellTabbar.js +186 -0
  600. package/lib/components/PisellTabbar/PisellTabbar.less +26 -0
  601. package/lib/components/PisellTabbar/components/TabbarLevel.d.ts +8 -0
  602. package/lib/components/PisellTabbar/components/TabbarLevel.js +301 -0
  603. package/lib/components/PisellTabbar/components/index.d.ts +1 -0
  604. package/lib/components/PisellTabbar/components/index.js +39 -0
  605. package/lib/components/PisellTabbar/constants.d.ts +46 -0
  606. package/lib/components/PisellTabbar/constants.js +100 -0
  607. package/lib/components/PisellTabbar/hooks/index.d.ts +2 -0
  608. package/lib/components/PisellTabbar/hooks/index.js +42 -0
  609. package/lib/components/PisellTabbar/hooks/useActiveKey.d.ts +49 -0
  610. package/lib/components/PisellTabbar/hooks/useActiveKey.js +57 -0
  611. package/lib/components/PisellTabbar/hooks/useExpand.d.ts +41 -0
  612. package/lib/components/PisellTabbar/hooks/useExpand.js +53 -0
  613. package/lib/components/PisellTabbar/index.d.ts +7 -0
  614. package/lib/components/PisellTabbar/index.js +36 -0
  615. package/lib/components/PisellTabbar/locales.d.ts +15 -0
  616. package/lib/components/PisellTabbar/locales.js +38 -0
  617. package/lib/components/PisellTabbar/mock.d.ts +47 -0
  618. package/lib/components/PisellTabbar/mock.js +1482 -0
  619. package/lib/components/PisellTabbar/template/index.d.ts +0 -0
  620. package/lib/components/PisellTabbar/template/index.js +0 -0
  621. package/lib/components/PisellTabbar/types.d.ts +111 -0
  622. package/lib/components/PisellTabbar/types.js +17 -0
  623. package/lib/components/PisellTabbar/utils/index.d.ts +35 -0
  624. package/lib/components/PisellTabbar/utils/index.js +74 -0
  625. package/lib/components/PisellTabbar2/PisellTabbar.d.ts +23 -0
  626. package/lib/components/PisellTabbar2/PisellTabbar.js +260 -0
  627. package/lib/components/PisellTabbar2/PisellTabbar.less +25 -0
  628. package/lib/components/PisellTabbar2/components/TabbarLevel.d.ts +8 -0
  629. package/lib/components/PisellTabbar2/components/TabbarLevel.js +366 -0
  630. package/lib/components/PisellTabbar2/components/index.d.ts +1 -0
  631. package/lib/components/PisellTabbar2/components/index.js +39 -0
  632. package/lib/components/PisellTabbar2/constants.d.ts +46 -0
  633. package/lib/components/PisellTabbar2/constants.js +100 -0
  634. package/lib/components/PisellTabbar2/hooks/index.d.ts +2 -0
  635. package/lib/components/PisellTabbar2/hooks/index.js +42 -0
  636. package/lib/components/PisellTabbar2/hooks/useActiveKey.d.ts +50 -0
  637. package/lib/components/PisellTabbar2/hooks/useActiveKey.js +75 -0
  638. package/lib/components/PisellTabbar2/hooks/useExpand.d.ts +41 -0
  639. package/lib/components/PisellTabbar2/hooks/useExpand.js +53 -0
  640. package/lib/components/PisellTabbar2/index.d.ts +6 -0
  641. package/lib/components/PisellTabbar2/index.js +35 -0
  642. package/lib/components/PisellTabbar2/locales.d.ts +15 -0
  643. package/lib/components/PisellTabbar2/locales.js +38 -0
  644. package/lib/components/PisellTabbar2/mock.d.ts +205 -0
  645. package/lib/components/PisellTabbar2/mock.js +2697 -0
  646. package/lib/components/PisellTabbar2/types.d.ts +117 -0
  647. package/lib/components/PisellTabbar2/types.js +17 -0
  648. package/lib/components/PisellTabbar2/utils/index.d.ts +35 -0
  649. package/lib/components/PisellTabbar2/utils/index.js +84 -0
  650. package/lib/components/PisellTabbar3/PisellTabbar.d.ts +20 -0
  651. package/lib/components/PisellTabbar3/PisellTabbar.js +639 -0
  652. package/lib/components/PisellTabbar3/PisellTabbar.less +26 -0
  653. package/lib/components/PisellTabbar3/index.d.ts +6 -0
  654. package/lib/components/PisellTabbar3/index.js +35 -0
  655. package/lib/components/PisellTabbar3/locales.d.ts +15 -0
  656. package/lib/components/PisellTabbar3/locales.js +38 -0
  657. package/lib/components/PisellTabbar3/mock.d.ts +47 -0
  658. package/lib/components/PisellTabbar3/mock.js +1482 -0
  659. package/lib/components/PisellTabbar3/types.d.ts +111 -0
  660. package/lib/components/PisellTabbar3/types.js +17 -0
  661. package/lib/components/Template/PisellSteps.d.ts +0 -0
  662. package/lib/components/Template/PisellSteps.js +0 -0
  663. package/lib/components/Template/PisellSteps.less +1 -0
  664. package/lib/components/Template/components/index.d.ts +0 -0
  665. package/lib/components/Template/components/index.js +0 -0
  666. package/lib/components/Template/hooks/index.d.ts +0 -0
  667. package/lib/components/Template/hooks/index.js +0 -0
  668. package/lib/components/Template/index.d.ts +0 -0
  669. package/lib/components/Template/index.js +0 -0
  670. package/lib/components/Template/types.d.ts +0 -0
  671. package/lib/components/Template/types.js +0 -0
  672. package/lib/components/Template/utils/index.d.ts +0 -0
  673. package/lib/components/Template/utils/index.js +0 -0
  674. package/lib/components/batch-editor/fields/index.d.ts +1 -0
  675. package/lib/components/calendar/index.d.ts +1 -0
  676. package/lib/components/checkbox/index.d.ts +1 -0
  677. package/lib/components/dataSourceComponents/dataSourceForm/BaseForm.js +41 -3
  678. package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingContext.d.ts +1 -0
  679. package/lib/components/dataSourceComponents/dataSourceForm/provider/formSetting/FormSettingProvider.js +5 -3
  680. package/lib/components/dataSourceComponents/dataSourceForm/serve.d.ts +30 -0
  681. package/lib/components/dataSourceComponents/dataSourceForm/serve.js +45 -2
  682. package/lib/components/dataSourceComponents/dataSourceForm/submitButton/index.js +23 -2
  683. package/lib/components/dataSourceComponents/dataSourceForm/type.d.ts +1 -0
  684. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.d.ts +24 -0
  685. package/lib/components/dataSourceComponents/dataSourceForm/urlUtils.js +68 -0
  686. package/lib/components/dataSourceComponents/dataSourceForm/utils.js +3 -3
  687. package/lib/components/dataSourceComponents/dataSourceShow/dataSourceQRCode/index.d.ts +1 -0
  688. package/lib/components/dataSourceComponents/dataSourceTable/BaseTable.js +1 -0
  689. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDataSourceKey.d.ts +1 -0
  690. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useDrawerState.d.ts +2 -35
  691. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +1 -1
  692. package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableQuery.d.ts +1 -0
  693. package/lib/components/dataSourceComponents/fields/Input.Subdomain/index.d.ts +1 -1
  694. package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.d.ts +5 -0
  695. package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.js +52 -0
  696. package/lib/components/dataSourceComponents/fields/Switch/ReadPretty.less +2 -0
  697. package/lib/components/dataSourceComponents/fields/Switch/WithMode.d.ts +3 -0
  698. package/lib/components/dataSourceComponents/fields/Switch/WithMode.js +39 -0
  699. package/lib/components/dataSourceComponents/fields/Switch/index.d.ts +3 -0
  700. package/lib/components/dataSourceComponents/fields/Switch/index.js +42 -0
  701. package/lib/components/dataSourceComponents/fields/Switch/type.d.ts +16 -0
  702. package/lib/components/dataSourceComponents/fields/Switch/type.js +17 -0
  703. package/lib/components/dataSourceComponents/fields/Upload/utils.d.ts +1 -1
  704. package/lib/components/dataSourceComponents/fields/index.d.ts +12 -11
  705. package/lib/components/dataSourceComponents/hooks/useActions.js +3 -0
  706. package/lib/components/dataSourceComponents/provider/dataSource/DataSourceContext.d.ts +1 -0
  707. package/lib/components/date-picker/index.d.ts +1 -0
  708. package/lib/components/filter/components/items/index.d.ts +1 -0
  709. package/lib/components/filter/components/items/text/Editor/index.d.ts +1 -0
  710. package/lib/components/filter/components/items/text/Preview/index.d.ts +1 -0
  711. package/lib/components/filter/components/items/text/index.d.ts +1 -0
  712. package/lib/components/iconfont/index.js +1 -1
  713. package/lib/components/pisell-config-provider/index.js +0 -1
  714. package/lib/components/pisellCardList/index.d.ts +4 -0
  715. package/lib/components/pisellCardList/index.js +5 -1
  716. package/lib/components/pisellDatePicker/index.d.ts +1 -0
  717. package/lib/components/pisellModal/components/index.d.ts +1 -0
  718. package/lib/components/pisellWalletPassCard/index.d.ts +4 -0
  719. package/lib/components/pisellWalletPassCard/index.js +12 -2
  720. package/lib/components/radio/index.d.ts +1 -0
  721. package/lib/components/skeleton/index.d.ts +1 -0
  722. package/lib/components/table/Table/fields/date/index.d.ts +1 -0
  723. package/lib/components/table/Table/fields/image/index.d.ts +1 -0
  724. package/lib/components/table/Table/fields/index.d.ts +3 -2
  725. package/lib/components/table/Table/fields/link/index.d.ts +1 -0
  726. package/lib/components/table/Table/fields/number/index.d.ts +1 -0
  727. package/lib/components/table/Table/fields/numberRange/index.d.ts +1 -0
  728. package/lib/components/table/Table/fields/oldRangePicker/index.d.ts +1 -0
  729. package/lib/components/table/Table/fields/pSwitch/index.d.ts +1 -0
  730. package/lib/components/table/Table/fields/rangePicker/index.d.ts +1 -0
  731. package/lib/components/table/Table/fields/search/index.d.ts +1 -0
  732. package/lib/components/table/Table/fields/select/index.d.ts +1 -0
  733. package/lib/components/table/Table/fields/text/index.d.ts +1 -0
  734. package/lib/components/table/Table/fields/treeSelect/index.d.ts +1 -0
  735. package/lib/components/table/Table/utils.d.ts +1 -1
  736. package/lib/components/time-picker/index.d.ts +1 -0
  737. package/lib/components/upload/index.d.ts +1 -0
  738. package/lib/components/virtual-keyboard/Time/utils.d.ts +1 -0
  739. package/lib/hooks/useMobile.d.ts +8 -0
  740. package/lib/hooks/useMobile.js +48 -0
  741. package/lib/index.d.ts +24 -0
  742. package/lib/index.js +42 -0
  743. package/lib/locales/en-US.d.ts +12 -0
  744. package/lib/locales/en-US.js +14 -1
  745. package/lib/locales/zh-CN.d.ts +12 -0
  746. package/lib/locales/zh-CN.js +14 -1
  747. package/lib/locales/zh-TW.d.ts +12 -0
  748. package/lib/locales/zh-TW.js +14 -1
  749. package/lowcode/data-source-form/constants.ts +3 -0
  750. package/lowcode/data-source-form/meta.ts +90 -31
  751. package/lowcode/data-source-form/utils.ts +132 -19
  752. package/lowcode/form-item-switch/meta.ts +145 -0
  753. package/lowcode/form-item-switch/snippets.ts +15 -0
  754. package/lowcode/graphic-text-card/meta.ts +1145 -0
  755. package/lowcode/graphic-text-card/snippets.ts +74 -0
  756. package/lowcode/multilevel-card/meta.ts +462 -0
  757. package/lowcode/multilevel-card/snippets.ts +18 -0
  758. package/lowcode/pisell-basic-grid/meta.ts +520 -0
  759. package/lowcode/pisell-image-card/meta.ts +529 -0
  760. package/lowcode/pisell-image-card/snippets.ts +40 -0
  761. package/lowcode/pisell-procedure/meta.ts +688 -0
  762. package/lowcode/pisell-procedure/snippets.ts +71 -0
  763. package/lowcode/pisell-scroll-view/meta.ts +654 -0
  764. package/lowcode/pisell-steps/meta.ts +537 -0
  765. package/lowcode/pisell-steps/snippets.ts +118 -0
  766. package/lowcode/pisell-super-tabs/meta.ts +776 -0
  767. package/lowcode/pisell-tabbar/meta.ts +55 -0
  768. package/lowcode/tab-card/README.md +225 -0
  769. package/lowcode/tab-card/meta.ts +588 -0
  770. package/lowcode/tab-card/snippets.ts +82 -0
  771. package/lowcode/text-card/meta.ts +1093 -0
  772. package/lowcode/text-card/snippets.ts +87 -0
  773. package/package.json +8 -5
@@ -0,0 +1,2480 @@
1
+ export default [{
2
+ "id": 1482,
3
+ "shop_id": 9,
4
+ "parent_id": 0,
5
+ "name": "k类别",
6
+ "slug": "k类别",
7
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/d3a3d75f3ccfb3aacc38e7ca7932d7842025_05_06_15_29_12_220_09496441587__1080_1860__.png",
8
+ "status": "published",
9
+ "last_applicable_time": 1758267236,
10
+ "sort": 4294967295,
11
+ "create_account_id": 104,
12
+ "update_account_id": 104,
13
+ "created_at": "2025-09-15 12:05:01",
14
+ "updated_at": "2025-09-19 17:33:56",
15
+ "childrenMaxLevel": 1,
16
+ "children": [{
17
+ "id": 1458,
18
+ "shop_id": 9,
19
+ "parent_id": 1453,
20
+ "name": "Kid's Menu (8-10 pp)",
21
+ "slug": "kid-s-menu-8-10-pp",
22
+ "icon": "",
23
+ "status": "published",
24
+ "last_applicable_time": 1765184806,
25
+ "sort": 0,
26
+ "create_account_id": 6,
27
+ "update_account_id": 14,
28
+ "created_at": "2025-05-14 16:12:27",
29
+ "updated_at": "2025-12-08 20:06:46",
30
+ "childrenMaxLevel": 0
31
+ }, {
32
+ "id": 1457,
33
+ "shop_id": 9,
34
+ "parent_id": 1453,
35
+ "name": "Platter (8-10 pp)",
36
+ "slug": "platter-8-10-pp",
37
+ "icon": "",
38
+ "status": "published",
39
+ "last_applicable_time": 1755161018,
40
+ "sort": 0,
41
+ "create_account_id": 6,
42
+ "update_account_id": 6,
43
+ "created_at": "2025-05-14 16:12:13",
44
+ "updated_at": "2025-08-14 18:43:38",
45
+ "children": []
46
+ }, {
47
+ "id": 1456,
48
+ "shop_id": 9,
49
+ "parent_id": 1453,
50
+ "name": "Snack Platter (8-10 pp)",
51
+ "slug": "snack-platter-8-10-pp",
52
+ "icon": "",
53
+ "status": "published",
54
+ "last_applicable_time": 1747203120,
55
+ "sort": 0,
56
+ "create_account_id": 6,
57
+ "update_account_id": 6,
58
+ "created_at": "2025-05-14 16:12:00",
59
+ "updated_at": "2025-05-14 16:12:00",
60
+ "children": []
61
+ }, {
62
+ "id": 1455,
63
+ "shop_id": 9,
64
+ "parent_id": 1453,
65
+ "name": "Cake",
66
+ "slug": "cake",
67
+ "icon": "",
68
+ "status": "published",
69
+ "last_applicable_time": 1747273684,
70
+ "sort": 0,
71
+ "create_account_id": 6,
72
+ "update_account_id": 6,
73
+ "created_at": "2025-05-14 16:11:35",
74
+ "updated_at": "2025-05-15 11:48:04",
75
+ "children": []
76
+ }, {
77
+ "id": 1454,
78
+ "shop_id": 9,
79
+ "parent_id": 1453,
80
+ "name": "Drink",
81
+ "slug": "drink",
82
+ "icon": "",
83
+ "status": "published",
84
+ "last_applicable_time": 1747203080,
85
+ "sort": 0,
86
+ "create_account_id": 6,
87
+ "update_account_id": 6,
88
+ "created_at": "2025-05-14 16:11:20",
89
+ "updated_at": "2025-05-14 16:11:20",
90
+ "children": []
91
+ }, {
92
+ "id": 1483,
93
+ "shop_id": 9,
94
+ "parent_id": 0,
95
+ "name": "只有一个商品",
96
+ "slug": "只有一个商品",
97
+ "icon": "",
98
+ "status": "published",
99
+ "last_applicable_time": 1763002594,
100
+ "sort": 99999999,
101
+ "create_account_id": 104,
102
+ "update_account_id": 390,
103
+ "created_at": "2025-09-19 13:24:42",
104
+ "updated_at": "2025-11-13 13:56:34",
105
+ "children": []
106
+ }, {
107
+ "id": 1453,
108
+ "shop_id": 9,
109
+ "parent_id": 0,
110
+ "name": "Party Food",
111
+ "slug": "party-food-1",
112
+ "icon": "",
113
+ "status": "published",
114
+ "last_applicable_time": 1764748264,
115
+ "sort": 9999999,
116
+ "create_account_id": 6,
117
+ "update_account_id": 390,
118
+ "created_at": "2025-05-14 16:10:01",
119
+ "updated_at": "2025-12-03 18:51:04"
120
+ }, {
121
+ "id": 1428,
122
+ "shop_id": 9,
123
+ "parent_id": 0,
124
+ "name": "贾-测试kds商品",
125
+ "slug": "贾-测试kds商品",
126
+ "icon": "",
127
+ "status": "published",
128
+ "last_applicable_time": 1755160956,
129
+ "sort": 9999999,
130
+ "create_account_id": 7,
131
+ "update_account_id": 6,
132
+ "created_at": "2025-04-01 14:46:58",
133
+ "updated_at": "2025-08-14 18:42:36",
134
+ "children": []
135
+ }, {
136
+ "id": 1378,
137
+ "shop_id": 9,
138
+ "parent_id": 0,
139
+ "name": "9.26测试箱规分类",
140
+ "slug": "9-26测试箱规分类",
141
+ "icon": "",
142
+ "status": "published",
143
+ "last_applicable_time": 1737699135,
144
+ "sort": 9999999,
145
+ "create_account_id": 7,
146
+ "update_account_id": 6,
147
+ "created_at": "2024-09-26 15:39:40",
148
+ "updated_at": "2025-01-24 17:12:15",
149
+ "children": []
150
+ }, {
151
+ "id": 1364,
152
+ "shop_id": 9,
153
+ "parent_id": 0,
154
+ "name": "燕窝",
155
+ "slug": "燕窝",
156
+ "icon": "",
157
+ "status": "published",
158
+ "last_applicable_time": 1765184806,
159
+ "sort": 4294967,
160
+ "create_account_id": 6,
161
+ "update_account_id": 14,
162
+ "created_at": "2024-08-19 16:12:55",
163
+ "updated_at": "2025-12-08 20:06:46",
164
+ "children": []
165
+ }, {
166
+ "id": 1480,
167
+ "shop_id": 9,
168
+ "parent_id": 0,
169
+ "name": "有定金商品",
170
+ "slug": "有定金商品",
171
+ "icon": "",
172
+ "status": "published",
173
+ "last_applicable_time": 1758766152,
174
+ "sort": 1000000,
175
+ "create_account_id": 7,
176
+ "update_account_id": 83,
177
+ "created_at": "2025-08-28 12:01:09",
178
+ "updated_at": "2025-09-25 12:09:12",
179
+ "children": []
180
+ }, {
181
+ "id": 1391,
182
+ "shop_id": 9,
183
+ "parent_id": 0,
184
+ "name": "10.29勿动",
185
+ "slug": "10-29勿动",
186
+ "icon": "",
187
+ "status": "published",
188
+ "last_applicable_time": 1732010054,
189
+ "sort": 999999,
190
+ "create_account_id": 7,
191
+ "update_account_id": 390,
192
+ "created_at": "2024-10-29 18:42:29",
193
+ "updated_at": "2025-01-08 19:40:58",
194
+ "children": []
195
+ }, {
196
+ "id": 1383,
197
+ "shop_id": 9,
198
+ "parent_id": 0,
199
+ "name": "汉堡",
200
+ "slug": "汉堡",
201
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/38857b46c68d114b4ce073c00ff85cfe2024_09_29_13_17_23_360_03969465097__192_192__.png",
202
+ "status": "published",
203
+ "last_applicable_time": 1758267236,
204
+ "sort": 99999,
205
+ "create_account_id": 104,
206
+ "update_account_id": 104,
207
+ "created_at": "2024-09-29 15:15:43",
208
+ "updated_at": "2025-09-19 17:33:56",
209
+ "children": []
210
+ }, {
211
+ "id": 1379,
212
+ "shop_id": 9,
213
+ "parent_id": 0,
214
+ "name": "Zzzzyyyrrr",
215
+ "slug": "zzzzyyyrrr",
216
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/0b369739de04ee3c08577bf3d8ddca052024_01_24_14_08_16_919_03981626280__340_392__.png",
217
+ "status": "published",
218
+ "last_applicable_time": 1755161018,
219
+ "sort": 99999,
220
+ "create_account_id": 104,
221
+ "update_account_id": 6,
222
+ "created_at": "2024-09-27 17:10:04",
223
+ "updated_at": "2025-08-14 18:43:38",
224
+ "children": []
225
+ }, {
226
+ "id": 685,
227
+ "shop_id": 9,
228
+ "parent_id": 0,
229
+ "name": "空分类有3级分类111",
230
+ "slug": "空分类有3级分类111",
231
+ "icon": "",
232
+ "status": "published",
233
+ "last_applicable_time": 1676860184,
234
+ "sort": 99999,
235
+ "create_account_id": 6,
236
+ "update_account_id": 6,
237
+ "created_at": "2022-08-31 21:57:03",
238
+ "updated_at": "2025-01-08 19:41:28",
239
+ "children": [{
240
+ "id": 686,
241
+ "shop_id": 9,
242
+ "parent_id": 685,
243
+ "name": "空分类有3级分类-2级",
244
+ "slug": "空分类有3级分类-2级",
245
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/5bcb3c0f3f8dc2046683af4b434f37b12022_09_01_15_15_23_371_00131706720__886_864__.png",
246
+ "status": "published",
247
+ "last_applicable_time": 1665306567,
248
+ "sort": 114,
249
+ "create_account_id": 6,
250
+ "update_account_id": 6,
251
+ "created_at": "2022-08-31 21:57:23",
252
+ "updated_at": "2023-05-25 14:01:31",
253
+ "children": []
254
+ }]
255
+ }, {
256
+ "id": 517,
257
+ "shop_id": 9,
258
+ "parent_id": 0,
259
+ "name": "中餐",
260
+ "slug": "中餐",
261
+ "icon": "",
262
+ "status": "published",
263
+ "last_applicable_time": 1649811953,
264
+ "sort": 99999,
265
+ "create_account_id": 14,
266
+ "update_account_id": 14,
267
+ "created_at": "2022-04-13 11:05:53",
268
+ "updated_at": "2025-01-08 19:41:36",
269
+ "children": [{
270
+ "id": 518,
271
+ "shop_id": 9,
272
+ "parent_id": 517,
273
+ "name": "川菜",
274
+ "slug": "川菜",
275
+ "icon": "",
276
+ "status": "published",
277
+ "last_applicable_time": 1649829966,
278
+ "sort": 80,
279
+ "create_account_id": 14,
280
+ "update_account_id": 14,
281
+ "created_at": "2022-04-13 11:17:42",
282
+ "updated_at": "2023-05-25 14:01:14",
283
+ "children": []
284
+ }]
285
+ }, {
286
+ "id": 1384,
287
+ "shop_id": 9,
288
+ "parent_id": 0,
289
+ "name": "饮料",
290
+ "slug": "饮料",
291
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/ae8236b9218d72cd188eab882285efa32024_09_29_13_17_18_875_01433374181__156_192__.png",
292
+ "status": "published",
293
+ "last_applicable_time": 1749094878,
294
+ "sort": 99997,
295
+ "create_account_id": 104,
296
+ "update_account_id": 6,
297
+ "created_at": "2024-09-29 15:15:49",
298
+ "updated_at": "2025-06-05 13:41:18",
299
+ "children": []
300
+ }, {
301
+ "id": 1394,
302
+ "shop_id": 9,
303
+ "parent_id": 0,
304
+ "name": "称重",
305
+ "slug": "称重",
306
+ "icon": "",
307
+ "status": "published",
308
+ "last_applicable_time": 1750297116,
309
+ "sort": 9999,
310
+ "create_account_id": 6,
311
+ "update_account_id": 390,
312
+ "created_at": "2024-11-06 19:56:48",
313
+ "updated_at": "2025-06-19 11:38:36",
314
+ "children": []
315
+ }, {
316
+ "id": 1377,
317
+ "shop_id": 9,
318
+ "parent_id": 0,
319
+ "name": "Newset",
320
+ "slug": "newset",
321
+ "icon": "",
322
+ "status": "published",
323
+ "last_applicable_time": 1727675495,
324
+ "sort": 9999,
325
+ "create_account_id": 104,
326
+ "update_account_id": 104,
327
+ "created_at": "2024-09-25 22:17:19",
328
+ "updated_at": "2024-09-30 15:51:35",
329
+ "children": []
330
+ }, {
331
+ "id": 904,
332
+ "shop_id": 9,
333
+ "parent_id": 0,
334
+ "name": "门票",
335
+ "slug": "门票",
336
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/a9b9c9e194a22eb7402c75caab4434bd2023_11_27_16_05_08_721_06263847904__300_300__.png",
337
+ "status": "published",
338
+ "last_applicable_time": 1747447786,
339
+ "sort": 1000,
340
+ "create_account_id": 6,
341
+ "update_account_id": 15,
342
+ "created_at": "2023-03-20 19:52:49",
343
+ "updated_at": "2025-05-17 12:09:46",
344
+ "children": []
345
+ }, {
346
+ "id": 868,
347
+ "shop_id": 9,
348
+ "parent_id": 0,
349
+ "name": "文件商品",
350
+ "slug": "文件商品",
351
+ "icon": "",
352
+ "status": "published",
353
+ "last_applicable_time": 1684842175,
354
+ "sort": 1000,
355
+ "create_account_id": 6,
356
+ "update_account_id": 6,
357
+ "created_at": "2023-03-13 20:55:39",
358
+ "updated_at": "2023-05-25 14:01:48",
359
+ "children": []
360
+ }, {
361
+ "id": 709,
362
+ "shop_id": 9,
363
+ "parent_id": 0,
364
+ "name": "服务类别",
365
+ "slug": "服务类别",
366
+ "icon": "",
367
+ "status": "pending",
368
+ "last_applicable_time": 1745290942,
369
+ "sort": 1000,
370
+ "create_account_id": 6,
371
+ "update_account_id": 557,
372
+ "created_at": "2022-09-01 17:23:22",
373
+ "updated_at": "2025-04-22 13:02:22",
374
+ "children": []
375
+ }, {
376
+ "id": 1450,
377
+ "shop_id": 9,
378
+ "parent_id": 0,
379
+ "name": "场次商品",
380
+ "slug": "场次商品",
381
+ "icon": "",
382
+ "status": "published",
383
+ "last_applicable_time": 1752558189,
384
+ "sort": 999,
385
+ "create_account_id": 6,
386
+ "update_account_id": 6,
387
+ "created_at": "2025-05-11 12:11:55",
388
+ "updated_at": "2025-07-15 15:43:09",
389
+ "children": []
390
+ }, {
391
+ "id": 1387,
392
+ "shop_id": 9,
393
+ "parent_id": 0,
394
+ "name": "10.11新建",
395
+ "slug": "10-11新建",
396
+ "icon": "",
397
+ "status": "published",
398
+ "last_applicable_time": 1731896159,
399
+ "sort": 999,
400
+ "create_account_id": 373,
401
+ "update_account_id": 506,
402
+ "created_at": "2024-10-11 13:57:36",
403
+ "updated_at": "2024-11-18 13:15:59",
404
+ "children": []
405
+ }, {
406
+ "id": 474,
407
+ "shop_id": 9,
408
+ "parent_id": 0,
409
+ "name": "套餐商品",
410
+ "slug": "套餐商品",
411
+ "icon": "",
412
+ "status": "published",
413
+ "last_applicable_time": 1763948084,
414
+ "sort": 200,
415
+ "create_account_id": 83,
416
+ "update_account_id": 6,
417
+ "created_at": "2022-03-07 22:27:26",
418
+ "updated_at": "2025-11-24 12:34:44",
419
+ "children": []
420
+ }, {
421
+ "id": 839,
422
+ "shop_id": 9,
423
+ "parent_id": 0,
424
+ "name": "sort排序测试",
425
+ "slug": "sort排序测试",
426
+ "icon": "",
427
+ "status": "published",
428
+ "last_applicable_time": 1723796570,
429
+ "sort": 138,
430
+ "create_account_id": 18,
431
+ "update_account_id": 7,
432
+ "created_at": "2023-03-06 18:19:52",
433
+ "updated_at": "2024-08-16 18:22:50",
434
+ "children": []
435
+ }, {
436
+ "id": 808,
437
+ "shop_id": 9,
438
+ "parent_id": 0,
439
+ "name": "party商品",
440
+ "slug": "party商品",
441
+ "icon": "",
442
+ "status": "published",
443
+ "last_applicable_time": 1750728483,
444
+ "sort": 132,
445
+ "create_account_id": 7,
446
+ "update_account_id": 6,
447
+ "created_at": "2023-02-06 13:06:24",
448
+ "updated_at": "2025-06-24 11:28:03",
449
+ "children": []
450
+ }, {
451
+ "id": 800,
452
+ "shop_id": 9,
453
+ "parent_id": 0,
454
+ "name": "售罄",
455
+ "slug": "售罄",
456
+ "icon": "",
457
+ "status": "published",
458
+ "last_applicable_time": 1720493712,
459
+ "sort": 131,
460
+ "create_account_id": 6,
461
+ "update_account_id": 41,
462
+ "created_at": "2023-01-19 16:35:58",
463
+ "updated_at": "2024-07-09 12:55:12",
464
+ "children": []
465
+ }, {
466
+ "id": 766,
467
+ "shop_id": 9,
468
+ "parent_id": 0,
469
+ "name": "预约",
470
+ "slug": "预约",
471
+ "icon": "",
472
+ "status": "published",
473
+ "last_applicable_time": 1751612396,
474
+ "sort": 122,
475
+ "create_account_id": 6,
476
+ "update_account_id": 6,
477
+ "created_at": "2022-10-22 13:47:14",
478
+ "updated_at": "2025-07-04 16:59:56",
479
+ "children": []
480
+ }, {
481
+ "id": 683,
482
+ "shop_id": 9,
483
+ "parent_id": 0,
484
+ "name": "空分类有二级",
485
+ "slug": "空分类有二级",
486
+ "icon": "",
487
+ "status": "published",
488
+ "last_applicable_time": 1661946998,
489
+ "sort": 111,
490
+ "create_account_id": 6,
491
+ "update_account_id": 6,
492
+ "created_at": "2022-08-31 21:56:38",
493
+ "updated_at": "2023-05-25 14:01:30",
494
+ "children": []
495
+ }, {
496
+ "id": 669,
497
+ "shop_id": 9,
498
+ "parent_id": 0,
499
+ "name": "1一级分类",
500
+ "slug": "1一级分类",
501
+ "icon": "",
502
+ "status": "published",
503
+ "last_applicable_time": 1727247151,
504
+ "sort": 102,
505
+ "create_account_id": 6,
506
+ "update_account_id": 104,
507
+ "created_at": "2022-08-30 16:04:00",
508
+ "updated_at": "2024-09-25 16:52:31",
509
+ "childrenMaxLevel": 2,
510
+ "children": [{
511
+ "id": 670,
512
+ "shop_id": 9,
513
+ "parent_id": 669,
514
+ "name": "二级分类",
515
+ "slug": "二级分类",
516
+ "icon": "",
517
+ "status": "published",
518
+ "last_applicable_time": 1720491450,
519
+ "sort": 103,
520
+ "create_account_id": 6,
521
+ "update_account_id": 41,
522
+ "created_at": "2022-08-30 16:04:31",
523
+ "updated_at": "2024-07-09 12:17:30",
524
+ "childrenMaxLevel": 1,
525
+ "children": [{
526
+ "id": 1028,
527
+ "shop_id": 9,
528
+ "parent_id": 670,
529
+ "name": "ES-三级",
530
+ "slug": "es-三级",
531
+ "icon": "",
532
+ "status": "published",
533
+ "last_applicable_time": 1727247151,
534
+ "sort": 0,
535
+ "create_account_id": 6,
536
+ "update_account_id": 104,
537
+ "created_at": "2023-07-18 18:02:45",
538
+ "updated_at": "2024-09-25 16:52:31",
539
+ "children": []
540
+ }]
541
+ }, {
542
+ "id": 965,
543
+ "shop_id": 9,
544
+ "parent_id": 669,
545
+ "name": "2-2",
546
+ "slug": "2-2",
547
+ "icon": "",
548
+ "status": "published",
549
+ "last_applicable_time": 1720491450,
550
+ "sort": 0,
551
+ "create_account_id": 6,
552
+ "update_account_id": 41,
553
+ "created_at": "2023-07-10 14:56:26",
554
+ "updated_at": "2024-07-09 12:17:30",
555
+ "children": []
556
+ }, {
557
+ "id": 964,
558
+ "shop_id": 9,
559
+ "parent_id": 669,
560
+ "name": "2-1",
561
+ "slug": "2-1",
562
+ "icon": "",
563
+ "status": "published",
564
+ "last_applicable_time": 1720491450,
565
+ "sort": 0,
566
+ "create_account_id": 6,
567
+ "update_account_id": 41,
568
+ "created_at": "2023-07-10 14:56:18",
569
+ "updated_at": "2024-07-09 12:17:30",
570
+ "children": []
571
+ }]
572
+ }, {
573
+ "id": 662,
574
+ "shop_id": 9,
575
+ "parent_id": 0,
576
+ "name": "aike测试室",
577
+ "slug": "aike测试室",
578
+ "icon": "",
579
+ "status": "published",
580
+ "last_applicable_time": 1661338550,
581
+ "sort": 101,
582
+ "create_account_id": 41,
583
+ "update_account_id": 41,
584
+ "created_at": "2022-08-24 18:18:57",
585
+ "updated_at": "2023-05-25 14:01:30",
586
+ "children": []
587
+ }, {
588
+ "id": 1370,
589
+ "shop_id": 9,
590
+ "parent_id": 0,
591
+ "name": "Kiosk测试1级",
592
+ "slug": "kiosk测试1级",
593
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/9a4cf0cae4825474e5980fd435b8888d2023_11_27_16_05_07_387_07574262377__300_300__.png",
594
+ "status": "published",
595
+ "last_applicable_time": 1755161019,
596
+ "sort": 99,
597
+ "create_account_id": 104,
598
+ "update_account_id": 6,
599
+ "created_at": "2024-09-24 18:21:25",
600
+ "updated_at": "2025-08-14 18:43:39",
601
+ "children": [{
602
+ "id": 847,
603
+ "shop_id": 9,
604
+ "parent_id": 1370,
605
+ "name": "单规格",
606
+ "slug": "单规格",
607
+ "icon": "",
608
+ "status": "published",
609
+ "last_applicable_time": 1748242774,
610
+ "sort": 20,
611
+ "create_account_id": 6,
612
+ "update_account_id": 104,
613
+ "created_at": "2023-03-11 13:10:12",
614
+ "updated_at": "2025-05-26 16:59:34",
615
+ "children": []
616
+ }, {
617
+ "id": 1072,
618
+ "shop_id": 9,
619
+ "parent_id": 1370,
620
+ "name": "BAKING",
621
+ "slug": "baking",
622
+ "icon": "",
623
+ "status": "published",
624
+ "last_applicable_time": 1745306454,
625
+ "sort": 10,
626
+ "create_account_id": 41,
627
+ "update_account_id": 549,
628
+ "created_at": "2023-07-21 22:25:54",
629
+ "updated_at": "2025-04-22 17:20:54",
630
+ "children": []
631
+ }, {
632
+ "id": 1373,
633
+ "shop_id": 9,
634
+ "parent_id": 1370,
635
+ "name": "kiosk-222级",
636
+ "slug": "kiosk-222级",
637
+ "icon": "",
638
+ "status": "published",
639
+ "last_applicable_time": 1745306454,
640
+ "sort": 0,
641
+ "create_account_id": 104,
642
+ "update_account_id": 549,
643
+ "created_at": "2024-09-24 18:23:17",
644
+ "updated_at": "2025-04-22 17:20:54",
645
+ "children": [{
646
+ "id": 1374,
647
+ "shop_id": 9,
648
+ "parent_id": 1373,
649
+ "name": "Kiosk测试3级",
650
+ "slug": "kiosk测试3级",
651
+ "icon": "",
652
+ "status": "published",
653
+ "last_applicable_time": 1748417495,
654
+ "sort": 0,
655
+ "create_account_id": 104,
656
+ "update_account_id": 318,
657
+ "created_at": "2024-09-25 01:25:55",
658
+ "updated_at": "2025-05-28 17:31:35",
659
+ "children": []
660
+ }]
661
+ }, {
662
+ "id": 1372,
663
+ "shop_id": 9,
664
+ "parent_id": 1370,
665
+ "name": "kiosk-2级",
666
+ "slug": "kiosk-2级",
667
+ "icon": "",
668
+ "status": "published",
669
+ "last_applicable_time": 1747365119,
670
+ "sort": 0,
671
+ "create_account_id": 104,
672
+ "update_account_id": 6,
673
+ "created_at": "2024-09-24 18:23:06",
674
+ "updated_at": "2025-05-16 13:11:59",
675
+ "children": [{
676
+ "id": 1375,
677
+ "shop_id": 9,
678
+ "parent_id": 1372,
679
+ "name": "Kiosk测试333级",
680
+ "slug": "kiosk测试333级",
681
+ "icon": "",
682
+ "status": "published",
683
+ "last_applicable_time": 1748421910,
684
+ "sort": 0,
685
+ "create_account_id": 104,
686
+ "update_account_id": 318,
687
+ "created_at": "2024-09-25 01:26:11",
688
+ "updated_at": "2025-05-28 18:45:10",
689
+ "children": []
690
+ }]
691
+ }, {
692
+ "id": 1026,
693
+ "shop_id": 9,
694
+ "parent_id": 1370,
695
+ "name": "ES",
696
+ "slug": "es",
697
+ "icon": "",
698
+ "status": "published",
699
+ "last_applicable_time": 1727604308,
700
+ "sort": 0,
701
+ "create_account_id": 6,
702
+ "update_account_id": 104,
703
+ "created_at": "2023-07-18 18:00:35",
704
+ "updated_at": "2025-01-08 23:40:14",
705
+ "children": []
706
+ }, {
707
+ "id": 967,
708
+ "shop_id": 9,
709
+ "parent_id": 1370,
710
+ "name": "josie 测试扫码点餐",
711
+ "slug": "josie-测试扫码点餐",
712
+ "icon": "",
713
+ "status": "published",
714
+ "last_applicable_time": 1727604308,
715
+ "sort": 0,
716
+ "create_account_id": 6,
717
+ "update_account_id": 104,
718
+ "created_at": "2023-07-10 21:03:22",
719
+ "updated_at": "2024-09-29 20:05:08",
720
+ "children": []
721
+ }, {
722
+ "id": 956,
723
+ "shop_id": 9,
724
+ "parent_id": 1370,
725
+ "name": "玄",
726
+ "slug": "玄",
727
+ "icon": "",
728
+ "status": "published",
729
+ "last_applicable_time": 1727604309,
730
+ "sort": 0,
731
+ "create_account_id": 6,
732
+ "update_account_id": 104,
733
+ "created_at": "2023-06-30 11:54:01",
734
+ "updated_at": "2024-09-29 20:05:09",
735
+ "children": []
736
+ }, {
737
+ "id": 955,
738
+ "shop_id": 9,
739
+ "parent_id": 1370,
740
+ "name": "晨昇cs",
741
+ "slug": "晨昇cs",
742
+ "icon": "",
743
+ "status": "published",
744
+ "last_applicable_time": 1727604309,
745
+ "sort": 0,
746
+ "create_account_id": 270,
747
+ "update_account_id": 104,
748
+ "created_at": "2023-06-30 02:47:35",
749
+ "updated_at": "2024-09-29 20:05:09",
750
+ "children": []
751
+ }, {
752
+ "id": 953,
753
+ "shop_id": 9,
754
+ "parent_id": 1370,
755
+ "name": "服务1",
756
+ "slug": "服务1",
757
+ "icon": "",
758
+ "status": "published",
759
+ "last_applicable_time": 1727604309,
760
+ "sort": 0,
761
+ "create_account_id": 6,
762
+ "update_account_id": 104,
763
+ "created_at": "2023-06-14 18:00:51",
764
+ "updated_at": "2024-09-29 20:05:09",
765
+ "children": []
766
+ }, {
767
+ "id": 916,
768
+ "shop_id": 9,
769
+ "parent_id": 1370,
770
+ "name": "Fishcakes",
771
+ "slug": "fishcakes",
772
+ "icon": "",
773
+ "status": "published",
774
+ "last_applicable_time": 1727604309,
775
+ "sort": 0,
776
+ "create_account_id": 6,
777
+ "update_account_id": 104,
778
+ "created_at": "2023-04-06 18:47:23",
779
+ "updated_at": "2024-09-29 20:05:09",
780
+ "children": []
781
+ }, {
782
+ "id": 915,
783
+ "shop_id": 9,
784
+ "parent_id": 1370,
785
+ "name": "Mie Kocok",
786
+ "slug": "mie-kocok",
787
+ "icon": "",
788
+ "status": "published",
789
+ "last_applicable_time": 1727604309,
790
+ "sort": 0,
791
+ "create_account_id": 41,
792
+ "update_account_id": 104,
793
+ "created_at": "2023-04-06 18:47:22",
794
+ "updated_at": "2024-09-29 20:05:09",
795
+ "children": []
796
+ }]
797
+ }, {
798
+ "id": 659,
799
+ "shop_id": 9,
800
+ "parent_id": 0,
801
+ "name": "票务",
802
+ "slug": "票务",
803
+ "icon": "",
804
+ "status": "published",
805
+ "last_applicable_time": 1669442336,
806
+ "sort": 98,
807
+ "create_account_id": 83,
808
+ "update_account_id": 83,
809
+ "created_at": "2022-08-01 12:04:42",
810
+ "updated_at": "2023-05-25 14:01:30",
811
+ "children": []
812
+ }, {
813
+ "id": 542,
814
+ "shop_id": 9,
815
+ "parent_id": 0,
816
+ "name": "aike的测试分类",
817
+ "slug": "aike的测试分类",
818
+ "icon": "",
819
+ "status": "published",
820
+ "last_applicable_time": 1674627498,
821
+ "sort": 93,
822
+ "create_account_id": 16,
823
+ "update_account_id": 6,
824
+ "created_at": "2022-04-23 00:28:49",
825
+ "updated_at": "2023-05-25 14:01:15",
826
+ "children": []
827
+ }, {
828
+ "id": 538,
829
+ "shop_id": 9,
830
+ "parent_id": 0,
831
+ "name": "原价显示测试",
832
+ "slug": "原价显示测试",
833
+ "icon": "",
834
+ "status": "published",
835
+ "last_applicable_time": 1674627500,
836
+ "sort": 92,
837
+ "create_account_id": 16,
838
+ "update_account_id": 6,
839
+ "created_at": "2022-04-21 12:30:57",
840
+ "updated_at": "2023-05-25 14:01:15",
841
+ "children": []
842
+ }, {
843
+ "id": 527,
844
+ "shop_id": 9,
845
+ "parent_id": 0,
846
+ "name": "电子",
847
+ "slug": "电子",
848
+ "icon": "",
849
+ "status": "published",
850
+ "last_applicable_time": 1674627500,
851
+ "sort": 88,
852
+ "create_account_id": 16,
853
+ "update_account_id": 14,
854
+ "created_at": "2022-04-13 16:28:21",
855
+ "updated_at": "2023-05-25 14:01:14",
856
+ "children": [{
857
+ "id": 528,
858
+ "shop_id": 9,
859
+ "parent_id": 527,
860
+ "name": "手机",
861
+ "slug": "手机",
862
+ "icon": "",
863
+ "status": "published",
864
+ "last_applicable_time": 1649831312,
865
+ "sort": 89,
866
+ "create_account_id": 14,
867
+ "update_account_id": 14,
868
+ "created_at": "2022-04-13 16:28:32",
869
+ "updated_at": "2023-05-25 14:01:14",
870
+ "children": []
871
+ }]
872
+ }, {
873
+ "id": 522,
874
+ "shop_id": 9,
875
+ "parent_id": 0,
876
+ "name": "水果",
877
+ "slug": "水果",
878
+ "icon": "",
879
+ "status": "published",
880
+ "last_applicable_time": 1649829930,
881
+ "sort": 84,
882
+ "create_account_id": 14,
883
+ "update_account_id": 14,
884
+ "created_at": "2022-04-13 12:56:02",
885
+ "updated_at": "2023-05-25 14:01:14",
886
+ "children": []
887
+ }, {
888
+ "id": 520,
889
+ "shop_id": 9,
890
+ "parent_id": 0,
891
+ "name": "西餐",
892
+ "slug": "西餐",
893
+ "icon": "",
894
+ "status": "published",
895
+ "last_applicable_time": 1724394907,
896
+ "sort": 82,
897
+ "create_account_id": 14,
898
+ "update_account_id": 6,
899
+ "created_at": "2022-04-13 12:53:59",
900
+ "updated_at": "2024-08-23 16:35:07",
901
+ "children": []
902
+ }, {
903
+ "id": 512,
904
+ "shop_id": 9,
905
+ "parent_id": 0,
906
+ "name": "第一级",
907
+ "slug": "第一级",
908
+ "icon": "",
909
+ "status": "published",
910
+ "last_applicable_time": 1649749514,
911
+ "sort": 74,
912
+ "create_account_id": 14,
913
+ "update_account_id": 14,
914
+ "created_at": "2022-04-12 17:45:14",
915
+ "updated_at": "2023-05-25 14:01:13",
916
+ "children": [{
917
+ "id": 514,
918
+ "shop_id": 9,
919
+ "parent_id": 512,
920
+ "name": "第三级",
921
+ "slug": "第三级",
922
+ "icon": "",
923
+ "status": "published",
924
+ "last_applicable_time": 1727166008,
925
+ "sort": 76,
926
+ "create_account_id": 14,
927
+ "update_account_id": 104,
928
+ "created_at": "2022-04-12 18:54:39",
929
+ "updated_at": "2024-09-24 18:20:08",
930
+ "children": []
931
+ }, {
932
+ "id": 513,
933
+ "shop_id": 9,
934
+ "parent_id": 512,
935
+ "name": "第二个",
936
+ "slug": "第二个",
937
+ "icon": "",
938
+ "status": "published",
939
+ "last_applicable_time": 1649753657,
940
+ "sort": 75,
941
+ "create_account_id": 14,
942
+ "update_account_id": 14,
943
+ "created_at": "2022-04-12 18:54:17",
944
+ "updated_at": "2023-05-25 14:01:13",
945
+ "children": [{
946
+ "id": 515,
947
+ "shop_id": 9,
948
+ "parent_id": 513,
949
+ "name": "第三个",
950
+ "slug": "第三个",
951
+ "icon": "",
952
+ "status": "published",
953
+ "last_applicable_time": 1659081650,
954
+ "sort": 77,
955
+ "create_account_id": 14,
956
+ "update_account_id": 14,
957
+ "created_at": "2022-04-12 18:55:24",
958
+ "updated_at": "2023-05-25 14:01:13",
959
+ "children": []
960
+ }, {
961
+ "id": 910,
962
+ "shop_id": 9,
963
+ "parent_id": 513,
964
+ "name": "三级分类",
965
+ "slug": "三级分类",
966
+ "icon": "",
967
+ "status": "published",
968
+ "last_applicable_time": 1727261692,
969
+ "sort": 0,
970
+ "create_account_id": 39,
971
+ "update_account_id": 104,
972
+ "created_at": "2023-03-29 19:11:39",
973
+ "updated_at": "2024-09-25 20:54:52",
974
+ "children": []
975
+ }]
976
+ }, {
977
+ "id": 1027,
978
+ "shop_id": 9,
979
+ "parent_id": 512,
980
+ "name": "ES-2级",
981
+ "slug": "es-2级",
982
+ "icon": "",
983
+ "status": "published",
984
+ "last_applicable_time": 1689667447,
985
+ "sort": 0,
986
+ "create_account_id": 6,
987
+ "update_account_id": 6,
988
+ "created_at": "2023-07-18 18:02:10",
989
+ "updated_at": "2023-08-11 17:22:46",
990
+ "children": []
991
+ }]
992
+ }, {
993
+ "id": 509,
994
+ "shop_id": 9,
995
+ "parent_id": 0,
996
+ "name": "简约日常",
997
+ "slug": "简约日常",
998
+ "icon": "",
999
+ "status": "published",
1000
+ "last_applicable_time": 1650004713,
1001
+ "sort": 73,
1002
+ "create_account_id": 104,
1003
+ "update_account_id": 0,
1004
+ "created_at": "2022-03-21 18:12:09",
1005
+ "updated_at": "2023-05-25 14:01:12",
1006
+ "children": [{
1007
+ "id": 516,
1008
+ "shop_id": 9,
1009
+ "parent_id": 509,
1010
+ "name": "日常百货",
1011
+ "slug": "日常百货",
1012
+ "icon": "",
1013
+ "status": "published",
1014
+ "last_applicable_time": 1649753758,
1015
+ "sort": 78,
1016
+ "create_account_id": 14,
1017
+ "update_account_id": 14,
1018
+ "created_at": "2022-04-12 18:55:58",
1019
+ "updated_at": "2023-05-25 14:01:13",
1020
+ "children": []
1021
+ }]
1022
+ }, {
1023
+ "id": 475,
1024
+ "shop_id": 9,
1025
+ "parent_id": 0,
1026
+ "name": "V7套餐",
1027
+ "slug": "v7套餐",
1028
+ "icon": "",
1029
+ "status": "published",
1030
+ "last_applicable_time": 1733365842,
1031
+ "sort": 72,
1032
+ "create_account_id": 6,
1033
+ "update_account_id": 6,
1034
+ "created_at": "2022-03-07 22:27:26",
1035
+ "updated_at": "2024-12-05 13:30:42",
1036
+ "children": []
1037
+ }, {
1038
+ "id": 460,
1039
+ "shop_id": 9,
1040
+ "parent_id": 0,
1041
+ "name": "商品类别",
1042
+ "slug": "商品类别",
1043
+ "icon": "",
1044
+ "status": "published",
1045
+ "last_applicable_time": 1649740781,
1046
+ "sort": 70,
1047
+ "create_account_id": 6,
1048
+ "update_account_id": 0,
1049
+ "created_at": "2022-02-14 20:01:04",
1050
+ "updated_at": "2023-05-25 14:01:06",
1051
+ "children": []
1052
+ }, {
1053
+ "id": 459,
1054
+ "shop_id": 9,
1055
+ "parent_id": 0,
1056
+ "name": "Cat Toys",
1057
+ "slug": "cat-toys",
1058
+ "icon": "",
1059
+ "status": "published",
1060
+ "last_applicable_time": 1648103782,
1061
+ "sort": 69,
1062
+ "create_account_id": 6,
1063
+ "update_account_id": 0,
1064
+ "created_at": "2022-02-09 17:41:22",
1065
+ "updated_at": "2023-05-25 14:01:06",
1066
+ "children": []
1067
+ }, {
1068
+ "id": 433,
1069
+ "shop_id": 9,
1070
+ "parent_id": 0,
1071
+ "name": "手工",
1072
+ "slug": "手工",
1073
+ "icon": "",
1074
+ "status": "published",
1075
+ "last_applicable_time": 1666165462,
1076
+ "sort": 68,
1077
+ "create_account_id": 294,
1078
+ "update_account_id": 0,
1079
+ "created_at": "2022-01-12 18:56:49",
1080
+ "updated_at": "2023-05-25 14:01:03",
1081
+ "children": []
1082
+ }, {
1083
+ "id": 420,
1084
+ "shop_id": 9,
1085
+ "parent_id": 0,
1086
+ "name": "男装",
1087
+ "slug": "男装",
1088
+ "icon": "",
1089
+ "status": "published",
1090
+ "last_applicable_time": 1668992649,
1091
+ "sort": 67,
1092
+ "create_account_id": 39,
1093
+ "update_account_id": 0,
1094
+ "created_at": "2022-01-10 18:20:28",
1095
+ "updated_at": "2023-05-25 14:01:01",
1096
+ "children": []
1097
+ }, {
1098
+ "id": 419,
1099
+ "shop_id": 9,
1100
+ "parent_id": 0,
1101
+ "name": "运动户外",
1102
+ "slug": "运动户外",
1103
+ "icon": "",
1104
+ "status": "published",
1105
+ "last_applicable_time": 1668992649,
1106
+ "sort": 66,
1107
+ "create_account_id": 39,
1108
+ "update_account_id": 0,
1109
+ "created_at": "2022-01-10 18:20:28",
1110
+ "updated_at": "2023-05-25 14:01:01",
1111
+ "children": []
1112
+ }, {
1113
+ "id": 418,
1114
+ "shop_id": 9,
1115
+ "parent_id": 0,
1116
+ "name": "配件",
1117
+ "slug": "配件",
1118
+ "icon": "",
1119
+ "status": "published",
1120
+ "last_applicable_time": 1668992664,
1121
+ "sort": 65,
1122
+ "create_account_id": 39,
1123
+ "update_account_id": 0,
1124
+ "created_at": "2022-01-10 18:20:28",
1125
+ "updated_at": "2023-05-25 14:01:00",
1126
+ "children": []
1127
+ }, {
1128
+ "id": 1237,
1129
+ "shop_id": 9,
1130
+ "parent_id": 0,
1131
+ "name": "钱柜商品",
1132
+ "slug": "钱柜商品",
1133
+ "icon": "",
1134
+ "status": "published",
1135
+ "last_applicable_time": 1731896158,
1136
+ "sort": 52,
1137
+ "create_account_id": 373,
1138
+ "update_account_id": 506,
1139
+ "created_at": "2023-10-12 13:04:19",
1140
+ "updated_at": "2024-11-18 13:15:58",
1141
+ "children": []
1142
+ }, {
1143
+ "id": 1185,
1144
+ "shop_id": 9,
1145
+ "parent_id": 0,
1146
+ "name": "Appointment类型",
1147
+ "slug": "appointment类型",
1148
+ "icon": "",
1149
+ "status": "published",
1150
+ "last_applicable_time": 1756274929,
1151
+ "sort": 51,
1152
+ "create_account_id": 6,
1153
+ "update_account_id": 6,
1154
+ "created_at": "2023-08-08 11:51:26",
1155
+ "updated_at": "2025-08-27 16:08:49",
1156
+ "children": []
1157
+ }, {
1158
+ "id": 824,
1159
+ "shop_id": 9,
1160
+ "parent_id": 0,
1161
+ "name": "ipos",
1162
+ "slug": "ipos",
1163
+ "icon": "",
1164
+ "status": "published",
1165
+ "last_applicable_time": 1720491451,
1166
+ "sort": 36,
1167
+ "create_account_id": 41,
1168
+ "update_account_id": 41,
1169
+ "created_at": "2023-02-22 15:14:16",
1170
+ "updated_at": "2024-07-09 12:17:31",
1171
+ "children": []
1172
+ }, {
1173
+ "id": 823,
1174
+ "shop_id": 9,
1175
+ "parent_id": 0,
1176
+ "name": "组合规格",
1177
+ "slug": "组合规格",
1178
+ "icon": "",
1179
+ "status": "published",
1180
+ "last_applicable_time": 1750995864,
1181
+ "sort": 35,
1182
+ "create_account_id": 83,
1183
+ "update_account_id": 6,
1184
+ "created_at": "2023-02-21 18:12:58",
1185
+ "updated_at": "2025-06-27 13:44:24",
1186
+ "children": []
1187
+ }, {
1188
+ "id": 815,
1189
+ "shop_id": 9,
1190
+ "parent_id": 0,
1191
+ "name": "报价单预约",
1192
+ "slug": "报价单预约",
1193
+ "icon": "",
1194
+ "status": "published",
1195
+ "last_applicable_time": 1676096457,
1196
+ "sort": 29,
1197
+ "create_account_id": 6,
1198
+ "update_account_id": 6,
1199
+ "created_at": "2023-02-11 17:20:57",
1200
+ "updated_at": "2023-05-25 14:01:42",
1201
+ "children": [{
1202
+ "id": 814,
1203
+ "shop_id": 9,
1204
+ "parent_id": 815,
1205
+ "name": "报价单预约票务",
1206
+ "slug": "报价单预约票务",
1207
+ "icon": "",
1208
+ "status": "published",
1209
+ "last_applicable_time": 1676963977,
1210
+ "sort": 134,
1211
+ "create_account_id": 6,
1212
+ "update_account_id": 6,
1213
+ "created_at": "2023-02-11 17:18:36",
1214
+ "updated_at": "2023-05-25 14:01:42",
1215
+ "children": []
1216
+ }, {
1217
+ "id": 813,
1218
+ "shop_id": 9,
1219
+ "parent_id": 815,
1220
+ "name": "报价单预约party",
1221
+ "slug": "报价单预约party",
1222
+ "icon": "",
1223
+ "status": "published",
1224
+ "last_applicable_time": 1686708091,
1225
+ "sort": 133,
1226
+ "create_account_id": 270,
1227
+ "update_account_id": 6,
1228
+ "created_at": "2023-02-11 15:26:50",
1229
+ "updated_at": "2023-06-14 12:01:31",
1230
+ "children": []
1231
+ }]
1232
+ }]
1233
+ }, {
1234
+ "id": 1483,
1235
+ "shop_id": 9,
1236
+ "parent_id": 0,
1237
+ "name": "只有一个商品",
1238
+ "slug": "只有一个商品",
1239
+ "icon": "",
1240
+ "status": "published",
1241
+ "last_applicable_time": 1763002594,
1242
+ "sort": 99999999,
1243
+ "create_account_id": 104,
1244
+ "update_account_id": 390,
1245
+ "created_at": "2025-09-19 13:24:42",
1246
+ "updated_at": "2025-11-13 13:56:34",
1247
+ "children": []
1248
+ }, {
1249
+ "id": 1453,
1250
+ "shop_id": 9,
1251
+ "parent_id": 0,
1252
+ "name": "Party Food",
1253
+ "slug": "party-food-1",
1254
+ "icon": "",
1255
+ "status": "published",
1256
+ "last_applicable_time": 1764748264,
1257
+ "sort": 9999999,
1258
+ "create_account_id": 6,
1259
+ "update_account_id": 390,
1260
+ "created_at": "2025-05-14 16:10:01",
1261
+ "updated_at": "2025-12-03 18:51:04",
1262
+ "childrenMaxLevel": 2,
1263
+ "children": [{
1264
+ "id": 1458,
1265
+ "shop_id": 9,
1266
+ "parent_id": 1453,
1267
+ "name": "Kid's Menu (8-10 pp)",
1268
+ "slug": "kid-s-menu-8-10-pp",
1269
+ "icon": "",
1270
+ "status": "published",
1271
+ "last_applicable_time": 1765184806,
1272
+ "sort": 0,
1273
+ "create_account_id": 6,
1274
+ "update_account_id": 14,
1275
+ "created_at": "2025-05-14 16:12:27",
1276
+ "updated_at": "2025-12-08 20:06:46",
1277
+ "childrenMaxLevel": 1,
1278
+ "children": [{
1279
+ "id": 1468,
1280
+ "shop_id": 9,
1281
+ "parent_id": 1458,
1282
+ "name": "3级类别",
1283
+ "slug": "3级类别",
1284
+ "icon": "",
1285
+ "status": "published",
1286
+ "last_applicable_time": 1748414187,
1287
+ "sort": 0,
1288
+ "create_account_id": 318,
1289
+ "update_account_id": 318,
1290
+ "created_at": "2025-05-28 16:36:14",
1291
+ "updated_at": "2025-05-28 16:36:27",
1292
+ "children": []
1293
+ }]
1294
+ }, {
1295
+ "id": 1457,
1296
+ "shop_id": 9,
1297
+ "parent_id": 1453,
1298
+ "name": "Platter (8-10 pp)",
1299
+ "slug": "platter-8-10-pp",
1300
+ "icon": "",
1301
+ "status": "published",
1302
+ "last_applicable_time": 1755161018,
1303
+ "sort": 0,
1304
+ "create_account_id": 6,
1305
+ "update_account_id": 6,
1306
+ "created_at": "2025-05-14 16:12:13",
1307
+ "updated_at": "2025-08-14 18:43:38",
1308
+ "children": []
1309
+ }, {
1310
+ "id": 1456,
1311
+ "shop_id": 9,
1312
+ "parent_id": 1453,
1313
+ "name": "Snack Platter (8-10 pp)",
1314
+ "slug": "snack-platter-8-10-pp",
1315
+ "icon": "",
1316
+ "status": "published",
1317
+ "last_applicable_time": 1747203120,
1318
+ "sort": 0,
1319
+ "create_account_id": 6,
1320
+ "update_account_id": 6,
1321
+ "created_at": "2025-05-14 16:12:00",
1322
+ "updated_at": "2025-05-14 16:12:00",
1323
+ "children": []
1324
+ }, {
1325
+ "id": 1455,
1326
+ "shop_id": 9,
1327
+ "parent_id": 1453,
1328
+ "name": "Cake",
1329
+ "slug": "cake",
1330
+ "icon": "",
1331
+ "status": "published",
1332
+ "last_applicable_time": 1747273684,
1333
+ "sort": 0,
1334
+ "create_account_id": 6,
1335
+ "update_account_id": 6,
1336
+ "created_at": "2025-05-14 16:11:35",
1337
+ "updated_at": "2025-05-15 11:48:04",
1338
+ "children": []
1339
+ }, {
1340
+ "id": 1454,
1341
+ "shop_id": 9,
1342
+ "parent_id": 1453,
1343
+ "name": "Drink",
1344
+ "slug": "drink",
1345
+ "icon": "",
1346
+ "status": "published",
1347
+ "last_applicable_time": 1747203080,
1348
+ "sort": 0,
1349
+ "create_account_id": 6,
1350
+ "update_account_id": 6,
1351
+ "created_at": "2025-05-14 16:11:20",
1352
+ "updated_at": "2025-05-14 16:11:20",
1353
+ "children": []
1354
+ }]
1355
+ }, {
1356
+ "id": 1428,
1357
+ "shop_id": 9,
1358
+ "parent_id": 0,
1359
+ "name": "贾-测试kds商品",
1360
+ "slug": "贾-测试kds商品",
1361
+ "icon": "",
1362
+ "status": "published",
1363
+ "last_applicable_time": 1755160956,
1364
+ "sort": 9999999,
1365
+ "create_account_id": 7,
1366
+ "update_account_id": 6,
1367
+ "created_at": "2025-04-01 14:46:58",
1368
+ "updated_at": "2025-08-14 18:42:36",
1369
+ "children": []
1370
+ }, {
1371
+ "id": 1378,
1372
+ "shop_id": 9,
1373
+ "parent_id": 0,
1374
+ "name": "9.26测试箱规分类",
1375
+ "slug": "9-26测试箱规分类",
1376
+ "icon": "",
1377
+ "status": "published",
1378
+ "last_applicable_time": 1737699135,
1379
+ "sort": 9999999,
1380
+ "create_account_id": 7,
1381
+ "update_account_id": 6,
1382
+ "created_at": "2024-09-26 15:39:40",
1383
+ "updated_at": "2025-01-24 17:12:15",
1384
+ "children": []
1385
+ }, {
1386
+ "id": 1364,
1387
+ "shop_id": 9,
1388
+ "parent_id": 0,
1389
+ "name": "燕窝",
1390
+ "slug": "燕窝",
1391
+ "icon": "",
1392
+ "status": "published",
1393
+ "last_applicable_time": 1765184806,
1394
+ "sort": 4294967,
1395
+ "create_account_id": 6,
1396
+ "update_account_id": 14,
1397
+ "created_at": "2024-08-19 16:12:55",
1398
+ "updated_at": "2025-12-08 20:06:46",
1399
+ "children": []
1400
+ }, {
1401
+ "id": 1480,
1402
+ "shop_id": 9,
1403
+ "parent_id": 0,
1404
+ "name": "有定金商品",
1405
+ "slug": "有定金商品",
1406
+ "icon": "",
1407
+ "status": "published",
1408
+ "last_applicable_time": 1758766152,
1409
+ "sort": 1000000,
1410
+ "create_account_id": 7,
1411
+ "update_account_id": 83,
1412
+ "created_at": "2025-08-28 12:01:09",
1413
+ "updated_at": "2025-09-25 12:09:12",
1414
+ "children": []
1415
+ }, {
1416
+ "id": 1391,
1417
+ "shop_id": 9,
1418
+ "parent_id": 0,
1419
+ "name": "10.29勿动",
1420
+ "slug": "10-29勿动",
1421
+ "icon": "",
1422
+ "status": "published",
1423
+ "last_applicable_time": 1732010054,
1424
+ "sort": 999999,
1425
+ "create_account_id": 7,
1426
+ "update_account_id": 390,
1427
+ "created_at": "2024-10-29 18:42:29",
1428
+ "updated_at": "2025-01-08 19:40:58",
1429
+ "children": []
1430
+ }, {
1431
+ "id": 1383,
1432
+ "shop_id": 9,
1433
+ "parent_id": 0,
1434
+ "name": "汉堡",
1435
+ "slug": "汉堡",
1436
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/38857b46c68d114b4ce073c00ff85cfe2024_09_29_13_17_23_360_03969465097__192_192__.png",
1437
+ "status": "published",
1438
+ "last_applicable_time": 1758267236,
1439
+ "sort": 99999,
1440
+ "create_account_id": 104,
1441
+ "update_account_id": 104,
1442
+ "created_at": "2024-09-29 15:15:43",
1443
+ "updated_at": "2025-09-19 17:33:56",
1444
+ "children": []
1445
+ }, {
1446
+ "id": 1379,
1447
+ "shop_id": 9,
1448
+ "parent_id": 0,
1449
+ "name": "Zzzzyyyrrr",
1450
+ "slug": "zzzzyyyrrr",
1451
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/0b369739de04ee3c08577bf3d8ddca052024_01_24_14_08_16_919_03981626280__340_392__.png",
1452
+ "status": "published",
1453
+ "last_applicable_time": 1755161018,
1454
+ "sort": 99999,
1455
+ "create_account_id": 104,
1456
+ "update_account_id": 6,
1457
+ "created_at": "2024-09-27 17:10:04",
1458
+ "updated_at": "2025-08-14 18:43:38",
1459
+ "children": []
1460
+ }, {
1461
+ "id": 685,
1462
+ "shop_id": 9,
1463
+ "parent_id": 0,
1464
+ "name": "空分类有3级分类111",
1465
+ "slug": "空分类有3级分类111",
1466
+ "icon": "",
1467
+ "status": "published",
1468
+ "last_applicable_time": 1676860184,
1469
+ "sort": 99999,
1470
+ "create_account_id": 6,
1471
+ "update_account_id": 6,
1472
+ "created_at": "2022-08-31 21:57:03",
1473
+ "updated_at": "2025-01-08 19:41:28",
1474
+ "children": [{
1475
+ "id": 686,
1476
+ "shop_id": 9,
1477
+ "parent_id": 685,
1478
+ "name": "空分类有3级分类-2级",
1479
+ "slug": "空分类有3级分类-2级",
1480
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/5bcb3c0f3f8dc2046683af4b434f37b12022_09_01_15_15_23_371_00131706720__886_864__.png",
1481
+ "status": "published",
1482
+ "last_applicable_time": 1665306567,
1483
+ "sort": 114,
1484
+ "create_account_id": 6,
1485
+ "update_account_id": 6,
1486
+ "created_at": "2022-08-31 21:57:23",
1487
+ "updated_at": "2023-05-25 14:01:31",
1488
+ "children": []
1489
+ }]
1490
+ }, {
1491
+ "id": 517,
1492
+ "shop_id": 9,
1493
+ "parent_id": 0,
1494
+ "name": "中餐",
1495
+ "slug": "中餐",
1496
+ "icon": "",
1497
+ "status": "published",
1498
+ "last_applicable_time": 1649811953,
1499
+ "sort": 99999,
1500
+ "create_account_id": 14,
1501
+ "update_account_id": 14,
1502
+ "created_at": "2022-04-13 11:05:53",
1503
+ "updated_at": "2025-01-08 19:41:36",
1504
+ "children": [{
1505
+ "id": 518,
1506
+ "shop_id": 9,
1507
+ "parent_id": 517,
1508
+ "name": "川菜",
1509
+ "slug": "川菜",
1510
+ "icon": "",
1511
+ "status": "published",
1512
+ "last_applicable_time": 1649829966,
1513
+ "sort": 80,
1514
+ "create_account_id": 14,
1515
+ "update_account_id": 14,
1516
+ "created_at": "2022-04-13 11:17:42",
1517
+ "updated_at": "2023-05-25 14:01:14",
1518
+ "children": []
1519
+ }]
1520
+ }, {
1521
+ "id": 1384,
1522
+ "shop_id": 9,
1523
+ "parent_id": 0,
1524
+ "name": "饮料",
1525
+ "slug": "饮料",
1526
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/ae8236b9218d72cd188eab882285efa32024_09_29_13_17_18_875_01433374181__156_192__.png",
1527
+ "status": "published",
1528
+ "last_applicable_time": 1749094878,
1529
+ "sort": 99997,
1530
+ "create_account_id": 104,
1531
+ "update_account_id": 6,
1532
+ "created_at": "2024-09-29 15:15:49",
1533
+ "updated_at": "2025-06-05 13:41:18",
1534
+ "children": []
1535
+ }, {
1536
+ "id": 1394,
1537
+ "shop_id": 9,
1538
+ "parent_id": 0,
1539
+ "name": "称重",
1540
+ "slug": "称重",
1541
+ "icon": "",
1542
+ "status": "published",
1543
+ "last_applicable_time": 1750297116,
1544
+ "sort": 9999,
1545
+ "create_account_id": 6,
1546
+ "update_account_id": 390,
1547
+ "created_at": "2024-11-06 19:56:48",
1548
+ "updated_at": "2025-06-19 11:38:36",
1549
+ "children": []
1550
+ }, {
1551
+ "id": 1377,
1552
+ "shop_id": 9,
1553
+ "parent_id": 0,
1554
+ "name": "Newset",
1555
+ "slug": "newset",
1556
+ "icon": "",
1557
+ "status": "published",
1558
+ "last_applicable_time": 1727675495,
1559
+ "sort": 9999,
1560
+ "create_account_id": 104,
1561
+ "update_account_id": 104,
1562
+ "created_at": "2024-09-25 22:17:19",
1563
+ "updated_at": "2024-09-30 15:51:35",
1564
+ "children": []
1565
+ }, {
1566
+ "id": 904,
1567
+ "shop_id": 9,
1568
+ "parent_id": 0,
1569
+ "name": "门票",
1570
+ "slug": "门票",
1571
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/a9b9c9e194a22eb7402c75caab4434bd2023_11_27_16_05_08_721_06263847904__300_300__.png",
1572
+ "status": "published",
1573
+ "last_applicable_time": 1747447786,
1574
+ "sort": 1000,
1575
+ "create_account_id": 6,
1576
+ "update_account_id": 15,
1577
+ "created_at": "2023-03-20 19:52:49",
1578
+ "updated_at": "2025-05-17 12:09:46",
1579
+ "children": []
1580
+ }, {
1581
+ "id": 868,
1582
+ "shop_id": 9,
1583
+ "parent_id": 0,
1584
+ "name": "文件商品",
1585
+ "slug": "文件商品",
1586
+ "icon": "",
1587
+ "status": "published",
1588
+ "last_applicable_time": 1684842175,
1589
+ "sort": 1000,
1590
+ "create_account_id": 6,
1591
+ "update_account_id": 6,
1592
+ "created_at": "2023-03-13 20:55:39",
1593
+ "updated_at": "2023-05-25 14:01:48",
1594
+ "children": []
1595
+ }, {
1596
+ "id": 709,
1597
+ "shop_id": 9,
1598
+ "parent_id": 0,
1599
+ "name": "服务类别",
1600
+ "slug": "服务类别",
1601
+ "icon": "",
1602
+ "status": "pending",
1603
+ "last_applicable_time": 1745290942,
1604
+ "sort": 1000,
1605
+ "create_account_id": 6,
1606
+ "update_account_id": 557,
1607
+ "created_at": "2022-09-01 17:23:22",
1608
+ "updated_at": "2025-04-22 13:02:22",
1609
+ "children": []
1610
+ }, {
1611
+ "id": 1450,
1612
+ "shop_id": 9,
1613
+ "parent_id": 0,
1614
+ "name": "场次商品",
1615
+ "slug": "场次商品",
1616
+ "icon": "",
1617
+ "status": "published",
1618
+ "last_applicable_time": 1752558189,
1619
+ "sort": 999,
1620
+ "create_account_id": 6,
1621
+ "update_account_id": 6,
1622
+ "created_at": "2025-05-11 12:11:55",
1623
+ "updated_at": "2025-07-15 15:43:09",
1624
+ "children": []
1625
+ }, {
1626
+ "id": 1387,
1627
+ "shop_id": 9,
1628
+ "parent_id": 0,
1629
+ "name": "10.11新建",
1630
+ "slug": "10-11新建",
1631
+ "icon": "",
1632
+ "status": "published",
1633
+ "last_applicable_time": 1731896159,
1634
+ "sort": 999,
1635
+ "create_account_id": 373,
1636
+ "update_account_id": 506,
1637
+ "created_at": "2024-10-11 13:57:36",
1638
+ "updated_at": "2024-11-18 13:15:59",
1639
+ "children": []
1640
+ }, {
1641
+ "id": 474,
1642
+ "shop_id": 9,
1643
+ "parent_id": 0,
1644
+ "name": "套餐商品",
1645
+ "slug": "套餐商品",
1646
+ "icon": "",
1647
+ "status": "published",
1648
+ "last_applicable_time": 1763948084,
1649
+ "sort": 200,
1650
+ "create_account_id": 83,
1651
+ "update_account_id": 6,
1652
+ "created_at": "2022-03-07 22:27:26",
1653
+ "updated_at": "2025-11-24 12:34:44",
1654
+ "children": []
1655
+ }, {
1656
+ "id": 839,
1657
+ "shop_id": 9,
1658
+ "parent_id": 0,
1659
+ "name": "sort排序测试",
1660
+ "slug": "sort排序测试",
1661
+ "icon": "",
1662
+ "status": "published",
1663
+ "last_applicable_time": 1723796570,
1664
+ "sort": 138,
1665
+ "create_account_id": 18,
1666
+ "update_account_id": 7,
1667
+ "created_at": "2023-03-06 18:19:52",
1668
+ "updated_at": "2024-08-16 18:22:50",
1669
+ "children": []
1670
+ }, {
1671
+ "id": 808,
1672
+ "shop_id": 9,
1673
+ "parent_id": 0,
1674
+ "name": "party商品",
1675
+ "slug": "party商品",
1676
+ "icon": "",
1677
+ "status": "published",
1678
+ "last_applicable_time": 1750728483,
1679
+ "sort": 132,
1680
+ "create_account_id": 7,
1681
+ "update_account_id": 6,
1682
+ "created_at": "2023-02-06 13:06:24",
1683
+ "updated_at": "2025-06-24 11:28:03",
1684
+ "children": []
1685
+ }, {
1686
+ "id": 800,
1687
+ "shop_id": 9,
1688
+ "parent_id": 0,
1689
+ "name": "售罄",
1690
+ "slug": "售罄",
1691
+ "icon": "",
1692
+ "status": "published",
1693
+ "last_applicable_time": 1720493712,
1694
+ "sort": 131,
1695
+ "create_account_id": 6,
1696
+ "update_account_id": 41,
1697
+ "created_at": "2023-01-19 16:35:58",
1698
+ "updated_at": "2024-07-09 12:55:12",
1699
+ "children": []
1700
+ }, {
1701
+ "id": 766,
1702
+ "shop_id": 9,
1703
+ "parent_id": 0,
1704
+ "name": "预约",
1705
+ "slug": "预约",
1706
+ "icon": "",
1707
+ "status": "published",
1708
+ "last_applicable_time": 1751612396,
1709
+ "sort": 122,
1710
+ "create_account_id": 6,
1711
+ "update_account_id": 6,
1712
+ "created_at": "2022-10-22 13:47:14",
1713
+ "updated_at": "2025-07-04 16:59:56",
1714
+ "children": []
1715
+ }, {
1716
+ "id": 683,
1717
+ "shop_id": 9,
1718
+ "parent_id": 0,
1719
+ "name": "空分类有二级",
1720
+ "slug": "空分类有二级",
1721
+ "icon": "",
1722
+ "status": "published",
1723
+ "last_applicable_time": 1661946998,
1724
+ "sort": 111,
1725
+ "create_account_id": 6,
1726
+ "update_account_id": 6,
1727
+ "created_at": "2022-08-31 21:56:38",
1728
+ "updated_at": "2023-05-25 14:01:30",
1729
+ "children": []
1730
+ }, {
1731
+ "id": 669,
1732
+ "shop_id": 9,
1733
+ "parent_id": 0,
1734
+ "name": "一级分类",
1735
+ "slug": "一级分类",
1736
+ "icon": "",
1737
+ "status": "published",
1738
+ "last_applicable_time": 1727247151,
1739
+ "sort": 102,
1740
+ "create_account_id": 6,
1741
+ "update_account_id": 104,
1742
+ "created_at": "2022-08-30 16:04:00",
1743
+ "updated_at": "2024-09-25 16:52:31",
1744
+ "children": [{
1745
+ "id": 670,
1746
+ "shop_id": 9,
1747
+ "parent_id": 669,
1748
+ "name": "二级分类",
1749
+ "slug": "二级分类",
1750
+ "icon": "",
1751
+ "status": "published",
1752
+ "last_applicable_time": 1720491450,
1753
+ "sort": 103,
1754
+ "create_account_id": 6,
1755
+ "update_account_id": 41,
1756
+ "created_at": "2022-08-30 16:04:31",
1757
+ "updated_at": "2024-07-09 12:17:30",
1758
+ "children": [{
1759
+ "id": 1028,
1760
+ "shop_id": 9,
1761
+ "parent_id": 670,
1762
+ "name": "ES-三级",
1763
+ "slug": "es-三级",
1764
+ "icon": "",
1765
+ "status": "published",
1766
+ "last_applicable_time": 1727247151,
1767
+ "sort": 0,
1768
+ "create_account_id": 6,
1769
+ "update_account_id": 104,
1770
+ "created_at": "2023-07-18 18:02:45",
1771
+ "updated_at": "2024-09-25 16:52:31",
1772
+ "children": []
1773
+ }]
1774
+ }, {
1775
+ "id": 965,
1776
+ "shop_id": 9,
1777
+ "parent_id": 669,
1778
+ "name": "2-2",
1779
+ "slug": "2-2",
1780
+ "icon": "",
1781
+ "status": "published",
1782
+ "last_applicable_time": 1720491450,
1783
+ "sort": 0,
1784
+ "create_account_id": 6,
1785
+ "update_account_id": 41,
1786
+ "created_at": "2023-07-10 14:56:26",
1787
+ "updated_at": "2024-07-09 12:17:30",
1788
+ "children": []
1789
+ }, {
1790
+ "id": 964,
1791
+ "shop_id": 9,
1792
+ "parent_id": 669,
1793
+ "name": "2-1",
1794
+ "slug": "2-1",
1795
+ "icon": "",
1796
+ "status": "published",
1797
+ "last_applicable_time": 1720491450,
1798
+ "sort": 0,
1799
+ "create_account_id": 6,
1800
+ "update_account_id": 41,
1801
+ "created_at": "2023-07-10 14:56:18",
1802
+ "updated_at": "2024-07-09 12:17:30",
1803
+ "children": []
1804
+ }]
1805
+ }, {
1806
+ "id": 662,
1807
+ "shop_id": 9,
1808
+ "parent_id": 0,
1809
+ "name": "aike测试室",
1810
+ "slug": "aike测试室",
1811
+ "icon": "",
1812
+ "status": "published",
1813
+ "last_applicable_time": 1661338550,
1814
+ "sort": 101,
1815
+ "create_account_id": 41,
1816
+ "update_account_id": 41,
1817
+ "created_at": "2022-08-24 18:18:57",
1818
+ "updated_at": "2023-05-25 14:01:30",
1819
+ "children": []
1820
+ }, {
1821
+ "id": 1370,
1822
+ "shop_id": 9,
1823
+ "parent_id": 0,
1824
+ "name": "Kiosk测试1级",
1825
+ "slug": "kiosk测试1级",
1826
+ "icon": "https://file.mypisell-dev.com/pisel/image/9/9a4cf0cae4825474e5980fd435b8888d2023_11_27_16_05_07_387_07574262377__300_300__.png",
1827
+ "status": "published",
1828
+ "last_applicable_time": 1755161019,
1829
+ "sort": 99,
1830
+ "create_account_id": 104,
1831
+ "update_account_id": 6,
1832
+ "created_at": "2024-09-24 18:21:25",
1833
+ "updated_at": "2025-08-14 18:43:39",
1834
+ "children": [{
1835
+ "id": 847,
1836
+ "shop_id": 9,
1837
+ "parent_id": 1370,
1838
+ "name": "单规格",
1839
+ "slug": "单规格",
1840
+ "icon": "",
1841
+ "status": "published",
1842
+ "last_applicable_time": 1748242774,
1843
+ "sort": 20,
1844
+ "create_account_id": 6,
1845
+ "update_account_id": 104,
1846
+ "created_at": "2023-03-11 13:10:12",
1847
+ "updated_at": "2025-05-26 16:59:34",
1848
+ "children": []
1849
+ }, {
1850
+ "id": 1072,
1851
+ "shop_id": 9,
1852
+ "parent_id": 1370,
1853
+ "name": "BAKING",
1854
+ "slug": "baking",
1855
+ "icon": "",
1856
+ "status": "published",
1857
+ "last_applicable_time": 1745306454,
1858
+ "sort": 10,
1859
+ "create_account_id": 41,
1860
+ "update_account_id": 549,
1861
+ "created_at": "2023-07-21 22:25:54",
1862
+ "updated_at": "2025-04-22 17:20:54",
1863
+ "children": []
1864
+ }, {
1865
+ "id": 1373,
1866
+ "shop_id": 9,
1867
+ "parent_id": 1370,
1868
+ "name": "kiosk-222级",
1869
+ "slug": "kiosk-222级",
1870
+ "icon": "",
1871
+ "status": "published",
1872
+ "last_applicable_time": 1745306454,
1873
+ "sort": 0,
1874
+ "create_account_id": 104,
1875
+ "update_account_id": 549,
1876
+ "created_at": "2024-09-24 18:23:17",
1877
+ "updated_at": "2025-04-22 17:20:54",
1878
+ "children": [{
1879
+ "id": 1374,
1880
+ "shop_id": 9,
1881
+ "parent_id": 1373,
1882
+ "name": "Kiosk测试3级",
1883
+ "slug": "kiosk测试3级",
1884
+ "icon": "",
1885
+ "status": "published",
1886
+ "last_applicable_time": 1748417495,
1887
+ "sort": 0,
1888
+ "create_account_id": 104,
1889
+ "update_account_id": 318,
1890
+ "created_at": "2024-09-25 01:25:55",
1891
+ "updated_at": "2025-05-28 17:31:35",
1892
+ "children": []
1893
+ }]
1894
+ }, {
1895
+ "id": 1372,
1896
+ "shop_id": 9,
1897
+ "parent_id": 1370,
1898
+ "name": "kiosk-2级",
1899
+ "slug": "kiosk-2级",
1900
+ "icon": "",
1901
+ "status": "published",
1902
+ "last_applicable_time": 1747365119,
1903
+ "sort": 0,
1904
+ "create_account_id": 104,
1905
+ "update_account_id": 6,
1906
+ "created_at": "2024-09-24 18:23:06",
1907
+ "updated_at": "2025-05-16 13:11:59",
1908
+ "children": [{
1909
+ "id": 1375,
1910
+ "shop_id": 9,
1911
+ "parent_id": 1372,
1912
+ "name": "Kiosk测试333级",
1913
+ "slug": "kiosk测试333级",
1914
+ "icon": "",
1915
+ "status": "published",
1916
+ "last_applicable_time": 1748421910,
1917
+ "sort": 0,
1918
+ "create_account_id": 104,
1919
+ "update_account_id": 318,
1920
+ "created_at": "2024-09-25 01:26:11",
1921
+ "updated_at": "2025-05-28 18:45:10",
1922
+ "children": []
1923
+ }]
1924
+ }, {
1925
+ "id": 1026,
1926
+ "shop_id": 9,
1927
+ "parent_id": 1370,
1928
+ "name": "ES",
1929
+ "slug": "es",
1930
+ "icon": "",
1931
+ "status": "published",
1932
+ "last_applicable_time": 1727604308,
1933
+ "sort": 0,
1934
+ "create_account_id": 6,
1935
+ "update_account_id": 104,
1936
+ "created_at": "2023-07-18 18:00:35",
1937
+ "updated_at": "2025-01-08 23:40:14",
1938
+ "children": []
1939
+ }, {
1940
+ "id": 967,
1941
+ "shop_id": 9,
1942
+ "parent_id": 1370,
1943
+ "name": "josie 测试扫码点餐",
1944
+ "slug": "josie-测试扫码点餐",
1945
+ "icon": "",
1946
+ "status": "published",
1947
+ "last_applicable_time": 1727604308,
1948
+ "sort": 0,
1949
+ "create_account_id": 6,
1950
+ "update_account_id": 104,
1951
+ "created_at": "2023-07-10 21:03:22",
1952
+ "updated_at": "2024-09-29 20:05:08",
1953
+ "children": []
1954
+ }, {
1955
+ "id": 956,
1956
+ "shop_id": 9,
1957
+ "parent_id": 1370,
1958
+ "name": "玄",
1959
+ "slug": "玄",
1960
+ "icon": "",
1961
+ "status": "published",
1962
+ "last_applicable_time": 1727604309,
1963
+ "sort": 0,
1964
+ "create_account_id": 6,
1965
+ "update_account_id": 104,
1966
+ "created_at": "2023-06-30 11:54:01",
1967
+ "updated_at": "2024-09-29 20:05:09",
1968
+ "children": []
1969
+ }, {
1970
+ "id": 955,
1971
+ "shop_id": 9,
1972
+ "parent_id": 1370,
1973
+ "name": "晨昇cs",
1974
+ "slug": "晨昇cs",
1975
+ "icon": "",
1976
+ "status": "published",
1977
+ "last_applicable_time": 1727604309,
1978
+ "sort": 0,
1979
+ "create_account_id": 270,
1980
+ "update_account_id": 104,
1981
+ "created_at": "2023-06-30 02:47:35",
1982
+ "updated_at": "2024-09-29 20:05:09",
1983
+ "children": []
1984
+ }, {
1985
+ "id": 953,
1986
+ "shop_id": 9,
1987
+ "parent_id": 1370,
1988
+ "name": "服务1",
1989
+ "slug": "服务1",
1990
+ "icon": "",
1991
+ "status": "published",
1992
+ "last_applicable_time": 1727604309,
1993
+ "sort": 0,
1994
+ "create_account_id": 6,
1995
+ "update_account_id": 104,
1996
+ "created_at": "2023-06-14 18:00:51",
1997
+ "updated_at": "2024-09-29 20:05:09",
1998
+ "children": []
1999
+ }, {
2000
+ "id": 916,
2001
+ "shop_id": 9,
2002
+ "parent_id": 1370,
2003
+ "name": "Fishcakes",
2004
+ "slug": "fishcakes",
2005
+ "icon": "",
2006
+ "status": "published",
2007
+ "last_applicable_time": 1727604309,
2008
+ "sort": 0,
2009
+ "create_account_id": 6,
2010
+ "update_account_id": 104,
2011
+ "created_at": "2023-04-06 18:47:23",
2012
+ "updated_at": "2024-09-29 20:05:09",
2013
+ "children": []
2014
+ }, {
2015
+ "id": 915,
2016
+ "shop_id": 9,
2017
+ "parent_id": 1370,
2018
+ "name": "Mie Kocok",
2019
+ "slug": "mie-kocok",
2020
+ "icon": "",
2021
+ "status": "published",
2022
+ "last_applicable_time": 1727604309,
2023
+ "sort": 0,
2024
+ "create_account_id": 41,
2025
+ "update_account_id": 104,
2026
+ "created_at": "2023-04-06 18:47:22",
2027
+ "updated_at": "2024-09-29 20:05:09",
2028
+ "children": []
2029
+ }]
2030
+ }, {
2031
+ "id": 659,
2032
+ "shop_id": 9,
2033
+ "parent_id": 0,
2034
+ "name": "票务",
2035
+ "slug": "票务",
2036
+ "icon": "",
2037
+ "status": "published",
2038
+ "last_applicable_time": 1669442336,
2039
+ "sort": 98,
2040
+ "create_account_id": 83,
2041
+ "update_account_id": 83,
2042
+ "created_at": "2022-08-01 12:04:42",
2043
+ "updated_at": "2023-05-25 14:01:30",
2044
+ "children": []
2045
+ }, {
2046
+ "id": 542,
2047
+ "shop_id": 9,
2048
+ "parent_id": 0,
2049
+ "name": "aike的测试分类",
2050
+ "slug": "aike的测试分类",
2051
+ "icon": "",
2052
+ "status": "published",
2053
+ "last_applicable_time": 1674627498,
2054
+ "sort": 93,
2055
+ "create_account_id": 16,
2056
+ "update_account_id": 6,
2057
+ "created_at": "2022-04-23 00:28:49",
2058
+ "updated_at": "2023-05-25 14:01:15",
2059
+ "children": []
2060
+ }, {
2061
+ "id": 538,
2062
+ "shop_id": 9,
2063
+ "parent_id": 0,
2064
+ "name": "原价显示测试",
2065
+ "slug": "原价显示测试",
2066
+ "icon": "",
2067
+ "status": "published",
2068
+ "last_applicable_time": 1674627500,
2069
+ "sort": 92,
2070
+ "create_account_id": 16,
2071
+ "update_account_id": 6,
2072
+ "created_at": "2022-04-21 12:30:57",
2073
+ "updated_at": "2023-05-25 14:01:15",
2074
+ "children": []
2075
+ }, {
2076
+ "id": 527,
2077
+ "shop_id": 9,
2078
+ "parent_id": 0,
2079
+ "name": "电子",
2080
+ "slug": "电子",
2081
+ "icon": "",
2082
+ "status": "published",
2083
+ "last_applicable_time": 1674627500,
2084
+ "sort": 88,
2085
+ "create_account_id": 16,
2086
+ "update_account_id": 14,
2087
+ "created_at": "2022-04-13 16:28:21",
2088
+ "updated_at": "2023-05-25 14:01:14",
2089
+ "children": [{
2090
+ "id": 528,
2091
+ "shop_id": 9,
2092
+ "parent_id": 527,
2093
+ "name": "手机",
2094
+ "slug": "手机",
2095
+ "icon": "",
2096
+ "status": "published",
2097
+ "last_applicable_time": 1649831312,
2098
+ "sort": 89,
2099
+ "create_account_id": 14,
2100
+ "update_account_id": 14,
2101
+ "created_at": "2022-04-13 16:28:32",
2102
+ "updated_at": "2023-05-25 14:01:14",
2103
+ "children": []
2104
+ }]
2105
+ }, {
2106
+ "id": 522,
2107
+ "shop_id": 9,
2108
+ "parent_id": 0,
2109
+ "name": "水果",
2110
+ "slug": "水果",
2111
+ "icon": "",
2112
+ "status": "published",
2113
+ "last_applicable_time": 1649829930,
2114
+ "sort": 84,
2115
+ "create_account_id": 14,
2116
+ "update_account_id": 14,
2117
+ "created_at": "2022-04-13 12:56:02",
2118
+ "updated_at": "2023-05-25 14:01:14",
2119
+ "children": []
2120
+ }, {
2121
+ "id": 520,
2122
+ "shop_id": 9,
2123
+ "parent_id": 0,
2124
+ "name": "西餐",
2125
+ "slug": "西餐",
2126
+ "icon": "",
2127
+ "status": "published",
2128
+ "last_applicable_time": 1724394907,
2129
+ "sort": 82,
2130
+ "create_account_id": 14,
2131
+ "update_account_id": 6,
2132
+ "created_at": "2022-04-13 12:53:59",
2133
+ "updated_at": "2024-08-23 16:35:07",
2134
+ "children": []
2135
+ }, {
2136
+ "id": 512,
2137
+ "shop_id": 9,
2138
+ "parent_id": 0,
2139
+ "name": "第一级",
2140
+ "slug": "第一级",
2141
+ "icon": "",
2142
+ "status": "published",
2143
+ "last_applicable_time": 1649749514,
2144
+ "sort": 74,
2145
+ "create_account_id": 14,
2146
+ "update_account_id": 14,
2147
+ "created_at": "2022-04-12 17:45:14",
2148
+ "updated_at": "2023-05-25 14:01:13",
2149
+ "children": [{
2150
+ "id": 514,
2151
+ "shop_id": 9,
2152
+ "parent_id": 512,
2153
+ "name": "第三级",
2154
+ "slug": "第三级",
2155
+ "icon": "",
2156
+ "status": "published",
2157
+ "last_applicable_time": 1727166008,
2158
+ "sort": 76,
2159
+ "create_account_id": 14,
2160
+ "update_account_id": 104,
2161
+ "created_at": "2022-04-12 18:54:39",
2162
+ "updated_at": "2024-09-24 18:20:08",
2163
+ "children": []
2164
+ }, {
2165
+ "id": 513,
2166
+ "shop_id": 9,
2167
+ "parent_id": 512,
2168
+ "name": "第二个",
2169
+ "slug": "第二个",
2170
+ "icon": "",
2171
+ "status": "published",
2172
+ "last_applicable_time": 1649753657,
2173
+ "sort": 75,
2174
+ "create_account_id": 14,
2175
+ "update_account_id": 14,
2176
+ "created_at": "2022-04-12 18:54:17",
2177
+ "updated_at": "2023-05-25 14:01:13",
2178
+ "children": [{
2179
+ "id": 515,
2180
+ "shop_id": 9,
2181
+ "parent_id": 513,
2182
+ "name": "第三个",
2183
+ "slug": "第三个",
2184
+ "icon": "",
2185
+ "status": "published",
2186
+ "last_applicable_time": 1659081650,
2187
+ "sort": 77,
2188
+ "create_account_id": 14,
2189
+ "update_account_id": 14,
2190
+ "created_at": "2022-04-12 18:55:24",
2191
+ "updated_at": "2023-05-25 14:01:13",
2192
+ "children": []
2193
+ }, {
2194
+ "id": 910,
2195
+ "shop_id": 9,
2196
+ "parent_id": 513,
2197
+ "name": "三级分类",
2198
+ "slug": "三级分类",
2199
+ "icon": "",
2200
+ "status": "published",
2201
+ "last_applicable_time": 1727261692,
2202
+ "sort": 0,
2203
+ "create_account_id": 39,
2204
+ "update_account_id": 104,
2205
+ "created_at": "2023-03-29 19:11:39",
2206
+ "updated_at": "2024-09-25 20:54:52",
2207
+ "children": []
2208
+ }]
2209
+ }, {
2210
+ "id": 1027,
2211
+ "shop_id": 9,
2212
+ "parent_id": 512,
2213
+ "name": "ES-2级",
2214
+ "slug": "es-2级",
2215
+ "icon": "",
2216
+ "status": "published",
2217
+ "last_applicable_time": 1689667447,
2218
+ "sort": 0,
2219
+ "create_account_id": 6,
2220
+ "update_account_id": 6,
2221
+ "created_at": "2023-07-18 18:02:10",
2222
+ "updated_at": "2023-08-11 17:22:46",
2223
+ "children": []
2224
+ }]
2225
+ }, {
2226
+ "id": 509,
2227
+ "shop_id": 9,
2228
+ "parent_id": 0,
2229
+ "name": "简约日常",
2230
+ "slug": "简约日常",
2231
+ "icon": "",
2232
+ "status": "published",
2233
+ "last_applicable_time": 1650004713,
2234
+ "sort": 73,
2235
+ "create_account_id": 104,
2236
+ "update_account_id": 0,
2237
+ "created_at": "2022-03-21 18:12:09",
2238
+ "updated_at": "2023-05-25 14:01:12",
2239
+ "children": [{
2240
+ "id": 516,
2241
+ "shop_id": 9,
2242
+ "parent_id": 509,
2243
+ "name": "日常百货",
2244
+ "slug": "日常百货",
2245
+ "icon": "",
2246
+ "status": "published",
2247
+ "last_applicable_time": 1649753758,
2248
+ "sort": 78,
2249
+ "create_account_id": 14,
2250
+ "update_account_id": 14,
2251
+ "created_at": "2022-04-12 18:55:58",
2252
+ "updated_at": "2023-05-25 14:01:13",
2253
+ "children": []
2254
+ }]
2255
+ }, {
2256
+ "id": 475,
2257
+ "shop_id": 9,
2258
+ "parent_id": 0,
2259
+ "name": "V7套餐",
2260
+ "slug": "v7套餐",
2261
+ "icon": "",
2262
+ "status": "published",
2263
+ "last_applicable_time": 1733365842,
2264
+ "sort": 72,
2265
+ "create_account_id": 6,
2266
+ "update_account_id": 6,
2267
+ "created_at": "2022-03-07 22:27:26",
2268
+ "updated_at": "2024-12-05 13:30:42",
2269
+ "children": []
2270
+ }, {
2271
+ "id": 460,
2272
+ "shop_id": 9,
2273
+ "parent_id": 0,
2274
+ "name": "商品类别",
2275
+ "slug": "商品类别",
2276
+ "icon": "",
2277
+ "status": "published",
2278
+ "last_applicable_time": 1649740781,
2279
+ "sort": 70,
2280
+ "create_account_id": 6,
2281
+ "update_account_id": 0,
2282
+ "created_at": "2022-02-14 20:01:04",
2283
+ "updated_at": "2023-05-25 14:01:06",
2284
+ "children": []
2285
+ }, {
2286
+ "id": 459,
2287
+ "shop_id": 9,
2288
+ "parent_id": 0,
2289
+ "name": "Cat Toys",
2290
+ "slug": "cat-toys",
2291
+ "icon": "",
2292
+ "status": "published",
2293
+ "last_applicable_time": 1648103782,
2294
+ "sort": 69,
2295
+ "create_account_id": 6,
2296
+ "update_account_id": 0,
2297
+ "created_at": "2022-02-09 17:41:22",
2298
+ "updated_at": "2023-05-25 14:01:06",
2299
+ "children": []
2300
+ }, {
2301
+ "id": 433,
2302
+ "shop_id": 9,
2303
+ "parent_id": 0,
2304
+ "name": "手工",
2305
+ "slug": "手工",
2306
+ "icon": "",
2307
+ "status": "published",
2308
+ "last_applicable_time": 1666165462,
2309
+ "sort": 68,
2310
+ "create_account_id": 294,
2311
+ "update_account_id": 0,
2312
+ "created_at": "2022-01-12 18:56:49",
2313
+ "updated_at": "2023-05-25 14:01:03",
2314
+ "children": []
2315
+ }, {
2316
+ "id": 420,
2317
+ "shop_id": 9,
2318
+ "parent_id": 0,
2319
+ "name": "男装",
2320
+ "slug": "男装",
2321
+ "icon": "",
2322
+ "status": "published",
2323
+ "last_applicable_time": 1668992649,
2324
+ "sort": 67,
2325
+ "create_account_id": 39,
2326
+ "update_account_id": 0,
2327
+ "created_at": "2022-01-10 18:20:28",
2328
+ "updated_at": "2023-05-25 14:01:01",
2329
+ "children": []
2330
+ }, {
2331
+ "id": 419,
2332
+ "shop_id": 9,
2333
+ "parent_id": 0,
2334
+ "name": "运动户外",
2335
+ "slug": "运动户外",
2336
+ "icon": "",
2337
+ "status": "published",
2338
+ "last_applicable_time": 1668992649,
2339
+ "sort": 66,
2340
+ "create_account_id": 39,
2341
+ "update_account_id": 0,
2342
+ "created_at": "2022-01-10 18:20:28",
2343
+ "updated_at": "2023-05-25 14:01:01",
2344
+ "children": []
2345
+ }, {
2346
+ "id": 418,
2347
+ "shop_id": 9,
2348
+ "parent_id": 0,
2349
+ "name": "配件",
2350
+ "slug": "配件",
2351
+ "icon": "",
2352
+ "status": "published",
2353
+ "last_applicable_time": 1668992664,
2354
+ "sort": 65,
2355
+ "create_account_id": 39,
2356
+ "update_account_id": 0,
2357
+ "created_at": "2022-01-10 18:20:28",
2358
+ "updated_at": "2023-05-25 14:01:00",
2359
+ "children": []
2360
+ }, {
2361
+ "id": 1237,
2362
+ "shop_id": 9,
2363
+ "parent_id": 0,
2364
+ "name": "钱柜商品",
2365
+ "slug": "钱柜商品",
2366
+ "icon": "",
2367
+ "status": "published",
2368
+ "last_applicable_time": 1731896158,
2369
+ "sort": 52,
2370
+ "create_account_id": 373,
2371
+ "update_account_id": 506,
2372
+ "created_at": "2023-10-12 13:04:19",
2373
+ "updated_at": "2024-11-18 13:15:58",
2374
+ "children": []
2375
+ }, {
2376
+ "id": 1185,
2377
+ "shop_id": 9,
2378
+ "parent_id": 0,
2379
+ "name": "Appointment类型",
2380
+ "slug": "appointment类型",
2381
+ "icon": "",
2382
+ "status": "published",
2383
+ "last_applicable_time": 1756274929,
2384
+ "sort": 51,
2385
+ "create_account_id": 6,
2386
+ "update_account_id": 6,
2387
+ "created_at": "2023-08-08 11:51:26",
2388
+ "updated_at": "2025-08-27 16:08:49",
2389
+ "children": []
2390
+ }, {
2391
+ "id": 824,
2392
+ "shop_id": 9,
2393
+ "parent_id": 0,
2394
+ "name": "ipos",
2395
+ "slug": "ipos",
2396
+ "icon": "",
2397
+ "status": "published",
2398
+ "last_applicable_time": 1720491451,
2399
+ "sort": 36,
2400
+ "create_account_id": 41,
2401
+ "update_account_id": 41,
2402
+ "created_at": "2023-02-22 15:14:16",
2403
+ "updated_at": "2024-07-09 12:17:31",
2404
+ "children": []
2405
+ }, {
2406
+ "id": 823,
2407
+ "shop_id": 9,
2408
+ "parent_id": 0,
2409
+ "name": "组合规格",
2410
+ "slug": "组合规格",
2411
+ "icon": "",
2412
+ "status": "published",
2413
+ "last_applicable_time": 1750995864,
2414
+ "sort": 35,
2415
+ "create_account_id": 83,
2416
+ "update_account_id": 6,
2417
+ "created_at": "2023-02-21 18:12:58",
2418
+ "updated_at": "2025-06-27 13:44:24",
2419
+ "children": []
2420
+ }, {
2421
+ "id": 815,
2422
+ "shop_id": 9,
2423
+ "parent_id": 0,
2424
+ "name": "报价单预约",
2425
+ "slug": "报价单预约",
2426
+ "icon": "",
2427
+ "status": "published",
2428
+ "last_applicable_time": 1676096457,
2429
+ "sort": 29,
2430
+ "create_account_id": 6,
2431
+ "update_account_id": 6,
2432
+ "created_at": "2023-02-11 17:20:57",
2433
+ "updated_at": "2023-05-25 14:01:42",
2434
+ "children": [{
2435
+ "id": 814,
2436
+ "shop_id": 9,
2437
+ "parent_id": 815,
2438
+ "name": "报价单预约票务",
2439
+ "slug": "报价单预约票务",
2440
+ "icon": "",
2441
+ "status": "published",
2442
+ "last_applicable_time": 1676963977,
2443
+ "sort": 134,
2444
+ "create_account_id": 6,
2445
+ "update_account_id": 6,
2446
+ "created_at": "2023-02-11 17:18:36",
2447
+ "updated_at": "2023-05-25 14:01:42",
2448
+ "children": []
2449
+ }, {
2450
+ "id": 813,
2451
+ "shop_id": 9,
2452
+ "parent_id": 815,
2453
+ "name": "报价单预约party",
2454
+ "slug": "报价单预约party",
2455
+ "icon": "",
2456
+ "status": "published",
2457
+ "last_applicable_time": 1686708091,
2458
+ "sort": 133,
2459
+ "create_account_id": 270,
2460
+ "update_account_id": 6,
2461
+ "created_at": "2023-02-11 15:26:50",
2462
+ "updated_at": "2023-06-14 12:01:31",
2463
+ "children": []
2464
+ }]
2465
+ }, {
2466
+ "id": 809,
2467
+ "shop_id": 9,
2468
+ "parent_id": 0,
2469
+ "name": "票务商品",
2470
+ "slug": "票务商品",
2471
+ "icon": "",
2472
+ "status": "published",
2473
+ "last_applicable_time": 1675649199,
2474
+ "sort": 27,
2475
+ "create_account_id": 7,
2476
+ "update_account_id": 7,
2477
+ "created_at": "2023-02-06 13:06:39",
2478
+ "updated_at": "2023-05-25 14:01:42",
2479
+ "children": []
2480
+ }];