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