0.0.1 • Published 5 years ago

vue-element-demo-tools-view v0.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
5 years ago

某某功能组件

####内置功能点

  • vue
  • axios
  • webpack
  • elementui

目录

  • 数据字典
  • 列表数据展示
  • 分页功能
  • ...

####数据字典(Dictionary)

通用参数:?
  • type 选填 标签类型,select/radio/checkbox,默认select
  • code 必填 数据字典类型
  • apiUrl 必填 api接口的环境变量
  • sewidth 选填 默认值为vue默认宽度
  • dicvalue 传参 表单值 为数组形式(字符串,字符串+数组)

#####示例 html

<ll-item-dictionary  :code="'trade_type'" :dicvalue.sync="form.dicValue1" :apiUrl="'apiUrl'" :sewidth="'300px'"></ll-item-dictionary >
<ll-item-dictionary  type='checkbox'  :code="'trade_type'" :dicvalue.sync="form.dicValue2" :apiUrl="'apiUrl'"></ll-item-dictionary >

js

export default {
    data() {
        return {
                dicValue1:"",
                dicValue1:[],
        };
    },
};