0.1.0 • Published 2 years ago

zenith-form-designer v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

zenith-form-designer

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Run your tests

yarn run test

Lints and fixes files

yarn run lint

Customize configuration

See Configuration Reference.

目录结构
├─ .git
│  ├─ COMMIT_EDITMSG
│  ├─ config
│  ├─ description
│  ├─ HEAD
│  ├─ hooks
│  │  ├─ applypatch-msg
│  │  ├─ applypatch-msg.sample
│  │  ├─ commit-msg
│  │  ├─ commit-msg.sample
│  │  ├─ fsmonitor-watchman.sample
│  │  ├─ post-applypatch
│  │  ├─ post-checkout
│  │  ├─ post-commit
│  │  ├─ post-merge
│  │  ├─ post-receive
│  │  ├─ post-rewrite
│  │  ├─ post-update
│  │  ├─ post-update.sample
│  │  ├─ pre-applypatch
│  │  ├─ pre-applypatch.sample
│  │  ├─ pre-auto-gc
│  │  ├─ pre-commit
│  │  ├─ pre-commit.sample
│  │  ├─ pre-merge-commit.sample
│  │  ├─ pre-push
│  │  ├─ pre-push.sample
│  │  ├─ pre-rebase
│  │  ├─ pre-rebase.sample
│  │  ├─ pre-receive
│  │  ├─ pre-receive.sample
│  │  ├─ prepare-commit-msg
│  │  ├─ prepare-commit-msg.sample
│  │  ├─ push-to-checkout
│  │  ├─ push-to-checkout.sample
│  │  ├─ sendemail-validate
│  │  ├─ update
│  │  └─ update.sample
│  ├─ index
│  ├─ info
│  │  └─ exclude
│  ├─ logs
│  │  ├─ HEAD
│  │  └─ refs
│  │     └─ heads
│  │        └─ master
│  ├─ objects
│  │  ├─ 0d
│  │  │  └─ db12340a29f4d20ca8454a0cb29437bbb84ab2
│  │  ├─ 2f
│  │  │  └─ 55008ad23405efaf71674d46571740c90eee2b
│  │  ├─ 31
│  │  │  └─ 5dea52d033b2de168945c42cda588df7b05e94
│  │  ├─ 3e
│  │  │  └─ 5a13962197105f2078d2a224cc57dfa09b4893
│  │  ├─ 40
│  │  │  └─ 3adbc1e527906a4aa59558cd582c20bcd1d738
│  │  ├─ 4a
│  │  │  └─ afc5f6ed86fe6dff8d4b6be59290cbdeb61656
│  │  ├─ 55
│  │  │  └─ df315325bff60798291a7a13720ef273f6c3bb
│  │  ├─ 5b
│  │  │  └─ 768af2a4865afb25a6c1abb3a455ac95a2659e
│  │  ├─ 5c
│  │  │  └─ 51d842e9b19074ba31846ef253857289c8fc3b
│  │  ├─ 63
│  │  │  └─ eb05f711c8cb5cda45128882fa69c351f105fb
│  │  ├─ 64
│  │  │  └─ afaea7e0f99e8262f35bd394af63c86e2c04b3
│  │  ├─ 65
│  │  │  └─ 10c6a45035b6573151ff6196e4bdea78deb75d
│  │  ├─ 87
│  │  │  └─ 9051a29739fdfb17ae82ed23b53fac251c2b7e
│  │  ├─ 94
│  │  │  └─ 890dfdda1497124ed564a919f6d7b510790ed2
│  │  ├─ 99
│  │  │  └─ bf960e214e73e5513e054ac34c331b6d4b1a46
│  │  ├─ df
│  │  │  └─ 36fcfb72584e00488330b560ebcf34a41c64c2
│  │  ├─ e0
│  │  │  └─ 60a59220135d83e7ac04ecc50b22f3b3389ced
│  │  ├─ e9
│  │  │  └─ 558405fdcc02f12d757acb308e02937a7444f1
│  │  ├─ f3
│  │  │  └─ d2503fc2a44b5053b0837ebea6e87a2d339a43
│  │  ├─ info
│  │  └─ pack
│  └─ refs
│     ├─ heads
│     │  └─ master
│     └─ tags
├─ .gitignore           git管理忽略配置项
├─ babel.config.js
├─ examples
│  ├─ App.vue
│  ├─ assets
│  │  └─ logo.png
│  └─ main.js           入口文件
├─ package-lock.json
├─ package.json         脚手架配置文件,建议不要手动更改,使用yarn add/remove等命令进行操作 
├─ public
│  ├─ favicon.ico
│  └─ index.html
├─ README.md
├─ vue.config.js        配置入口文件
├─ yarn.lock            引入包版本锁定,用于版本控制用
└─ ZtForm               表单设计器
   ├─ common            公共文件目录 css/imgages/js/icon
   │  ├─ css            
   │  ├─ icon           
   │  ├─ img            
   │  ├─ js             
   │  └─ mixins
   ├─ index.js
   ├─ ZtEleform         pc端
   │  ├─ components     pc端组件
   │  ├─ index.js
   │  ├─ index.vue
   │  ├─ mixins         pc端混入对象
   │  └─ tools          pc端工具js
   ├─ ZtFormDesigner    表单设计部分
   │  ├─ config         配置信息
   │  ├─ index.js
   │  ├─ index.vue
   │  └─ views          页面信息
   │     ├─ left        表单设计页面左边组件展示部分
   │     ├─ main        表单设计页面中间效果展示部分
   │     └─ right       表单设计页面右边属性设置部分
   └─ ZtVantform         移动端
      ├─ components      移动端组件
      ├─ index.js
      ├─ index.vue
      ├─ mixins          移动端混入对象
      └─ tools           移动端工具js