zkt-form2

2.25.2 • Public • Published

表单引擎

用于后台表单的快速生成,本项目为表单引擎的基本包,其他有依赖的富组件请根据业务采用扩展方式实现

功能

  1. 支持基本表单控件:输入框、文本框、多选、单选、下拉、布尔、静态html
  2. 支持表单扩展: 通过继承扩展更多字段和功能
  3. 支持自定义页眉和页脚
  4. 支持样式自定义
  5. 支持获取单个字段
  6. 支持事件绑定
  7. 支持嵌套字段
  8. 支持校验和自定义校验规则
  9. 支持多列布局

使用方法

调用form

<Form v-model="model" :fields="fields" :validation="validation" ref="form" @submit="onSubmit" />

获取单个字段

var form = this.$refs.form
var name = 'fieldName' // model fields validation中的name一一对应
var field = form.getField(name)

绑定事件

field1.$on('change', () => {
  field2.value = 'other value'
})

扩展表单

import Form from './Form.vue'
import FormOtherField from './OtherField.vue'
export default {
  extends: Form,
  components: {
    FormOtherField
  }
}
// 在fields中
{
  name: 'otherfield',
  tagName: 'OtherField'
}

Build Setup

# install dependencies
npm install
 
# serve with hot reload at localhost:8080
npm run dev
 
# build for production with minification
npm run build

For detailed explanation on how things work, consult the docs for vue-loader.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.25.20latest

Version History

VersionDownloads (Last 7 Days)Published
2.25.20
2.25.10
2.25.00
2.24.00
2.23.20
2.23.10
2.23.00
2.22.60
2.22.50
2.22.40
2.22.30
2.22.20
2.22.10
2.22.00
2.21.70
2.21.60
2.21.50
2.21.40
2.21.30
2.21.10
2.21.00
2.20.70
2.20.60
2.20.50
2.20.40
2.20.30
2.20.21
2.20.10
2.20.00
2.17.40
2.17.30
2.17.20
2.17.10
2.17.00
2.16.10
2.16.00
2.15.00
2.14.60
2.14.50
2.14.40
2.14.30
2.14.20
2.14.10
2.14.00
2.13.00
2.12.60
2.12.50
2.12.40
2.12.30
2.12.20
2.12.10
2.12.00
2.11.00
2.10.80
2.9.00
2.8.60
2.8.50
2.8.40
2.8.30
2.8.20
2.8.10
2.8.00
2.7.00
2.6.00
2.5.00
2.4.20
2.4.10
2.4.00
2.3.00
2.2.10
2.2.00
2.1.40
2.1.30
2.1.20
2.1.10
2.0.00

Package Sidebar

Install

npm i zkt-form2

Weekly Downloads

1

Version

2.25.2

License

MIT

Unpacked Size

547 kB

Total Files

13

Last publish

Collaborators

  • renyufei