mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2025-12-15 12:22:49 +00:00
288 lines
8.9 KiB
Markdown
288 lines
8.9 KiB
Markdown
```
|
|
src
|
|
├─ assets
|
|
│ ├─ header.png
|
|
│ ├─ form.png
|
|
│ ├─ footer.png
|
|
│ ├─ icon.png
|
|
│ ├─ picture.png
|
|
├─ components
|
|
│ ├─ BackTop
|
|
│ │ └─ index.js
|
|
│ ├─ BasicShop
|
|
│ │ ├─ BasicComponents
|
|
│ │ │ ├─ Card
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Carousel
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Footer
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Form
|
|
│ │ │ │ ├─ BaseForm.tsx
|
|
│ │ │ │ ├─ BasePopoverForm.tsx
|
|
│ │ │ │ ├─ baseForm.less
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Header
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Icon
|
|
│ │ │ │ ├─ icon.ts
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Image
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ LongText
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Nav
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Notice
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Qrcode
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ RichText
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Text
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ WhiteTpl
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ XButton
|
|
│ │ │ │ ├─ Modal.tsx
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ schema.ts
|
|
│ │ │ └─ template.ts
|
|
│ │ ├─ MediaComponents
|
|
│ │ │ ├─ Audio
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Calendar
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Map
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Video
|
|
│ │ │ │ ├─ index.css
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ schema.ts
|
|
│ │ │ └─ template.ts
|
|
│ │ ├─ ShopComponents
|
|
│ │ │ ├─ CardLabel
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Coupons
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ List
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Tab
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ ZhuanLan
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ schema.ts
|
|
│ │ │ └─ template.ts
|
|
│ │ ├─ VisualComponents
|
|
│ │ │ ├─ Area
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Chart
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Funnel
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Line
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Pie
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ Radar
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ WordCloud
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ XProgress
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ ├─ index.tsx
|
|
│ │ │ │ ├─ schema.ts
|
|
│ │ │ │ └─ template.ts
|
|
│ │ │ ├─ schema.ts
|
|
│ │ │ └─ template.ts
|
|
│ │ ├─ common.ts
|
|
│ │ └─ schema.ts
|
|
│ ├─ Calibration
|
|
│ │ ├─ index.less
|
|
│ │ └─ index.tsx
|
|
│ ├─ ErrorBundaries
|
|
│ │ └─ index.tsx
|
|
│ ├─ LoadingCp
|
|
│ │ └─ index.tsx
|
|
│ ├─ ModalTpl
|
|
│ │ ├─ cate.js
|
|
│ │ ├─ index.js
|
|
│ │ └─ index.less
|
|
│ └─ Zan
|
|
│ ├─ index.less
|
|
│ └─ index.tsx
|
|
├─ core
|
|
│ ├─ FormComponents
|
|
│ │ ├─ CardPicker
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ Color
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ DataList
|
|
│ │ │ ├─ editorModal.tsx
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ FormItems
|
|
│ │ │ ├─ EditorModal.tsx
|
|
│ │ │ ├─ FormItems.tsx
|
|
│ │ │ ├─ formItems.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ InteractionData
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ MutiText
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ Pos
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ Table
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ Upload
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ ├─ XEditor
|
|
│ │ │ ├─ index.less
|
|
│ │ │ └─ index.tsx
|
|
│ │ └─ types.ts
|
|
│ ├─ DynamicEngine.tsx
|
|
│ ├─ FormRender.tsx
|
|
│ ├─ ViewRender.tsx
|
|
│ └─ viewRender.less
|
|
├─ layouts
|
|
│ ├─ __tests__
|
|
│ │ └─ index.test.js
|
|
│ ├─ index.less
|
|
│ └─ index.tsx
|
|
├─ pages
|
|
│ ├─ __tests__
|
|
│ │ └─ index.test.js
|
|
│ ├─ editor
|
|
│ │ ├─ components
|
|
│ │ │ ├─ AvatorGroup
|
|
│ │ │ │ └─ index.tsx
|
|
│ │ │ ├─ CanvasControl
|
|
│ │ │ │ ├─ index.less
|
|
│ │ │ │ └─ index.tsx
|
|
│ │ │ └─ Header
|
|
│ │ │ ├─ index.js
|
|
│ │ │ └─ index.less
|
|
│ │ ├─ models
|
|
│ │ │ └─ editorModal.js
|
|
│ │ ├─ services
|
|
│ │ │ └─ editorService.js
|
|
│ │ ├─ Container.js
|
|
│ │ ├─ SourceBox.tsx
|
|
│ │ ├─ TargetBox.js
|
|
│ │ ├─ index.js
|
|
│ │ ├─ index.less
|
|
│ │ └─ preview.tsx
|
|
│ ├─ help
|
|
│ │ ├─ index.less
|
|
│ │ └─ index.tsx
|
|
│ ├─ home
|
|
│ │ ├─ index.less
|
|
│ │ └─ index.tsx
|
|
│ ├─ ide
|
|
│ │ ├─ _draft.tsx
|
|
│ │ ├─ index.less
|
|
│ │ └─ index.tsx
|
|
│ ├─ login
|
|
│ │ ├─ index.less
|
|
│ │ └─ index.tsx
|
|
│ ├─ document.ejs
|
|
│ └─ mobileTip.js
|
|
├─ utils
|
|
│ ├─ req.ts
|
|
│ └─ tool.ts
|
|
├─ app.tsx
|
|
└─ global.css
|
|
|
|
```
|