npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

yustore-base-form-v2

v0.1.7

Published

vue2.x+element-表单组件

Downloads

131

Readme

yustore-baseform

更新 package.json version
npm run lib
npm login 如果没有登录
npm publish

elementui 2.x form el-select-v2 form

yu-base-form

配置表单 cols

| 参数 | 说明 | 类型 | 可选值 | 默认值 | | ---- | ---- | ---- | ---- | ---- | | label | 表单项标题 | String | -- | -- | | type | 表单项类型 | String | div、input、h1、slot | -- | | field | 表单项字段 formData 包含属性名 | Object | -- | -- | | required | 表单项是否必填 | Boolean | -- | false | | hidden | 表单项是否显影 | Boolean | -- | false | | retentionData | 表单项隐藏时是否将数据保留 | -- | -- | -- | | options | 表单项选择雷荣,如 select radio checkbox | Array[{label: '', value: ''}] | -- | -- | | props | 表单项各种属性 | Object | -- | -- | | on | 表单项原生事件绑定 | Object | -- | -- | | readonly | 是否只读,显示文本 | Boolean | -- | -- | | fieldAttrs | 绑定attrs | Object | -- | -- |

<yu-base-form
    ref="BaseForm"
    :cols="cols"
    :form-data="detailData"
    label-width="130px"
>
    <el-form-item slot="idCardImage">
    </el-form-item>
</yu-base-form>

cols() {
    return [
        {
            label: '员工基本信息',
            type: 'h1'
        },
        {
            label: '员工姓名',
            type: 'input',
            field: 'name',
            readonly: true,
            props: {
                width: 300
            }
        },
        {
            label: '员工性别',
            type: 'select',
            field: 'gender',
            options: [
                { label: '男', value: 1 },
                { label: '女', value: 2 }
            ],
            readonly: true
        },
        
        {
            label: '身份证照片',
            type: 'slot',
            field: 'idCardImage'
        }
    ]
}

dialog form

弹框表单返回一个Promise

| 参数 | 说明 | 类型 | 可选值 | 默认值 | | ---- | ---- | ---- | ---- | ---- | | dialogAttrs | 弹框属性 | Object | -- | -- | | formData | 默认回显的表单数据 | Object | -- | -- | | formAttrs | 表单属性 | Object | -- | -- | | request | 可选 Fnction,表单验证通过后执行 | Function(formData) => Promise | -- | -- | | cols | 表单配置项 base-form | Array | -- | -- |

let cols = [
    {
        label: '操作原因',
        type: 'input',
        field: 'reason',
        props: {
            type: 'textarea',
            rows: 4,
            maxlength: 1000,
            showWordLimit: true,
            autosize: { minRows: 3, maxRows: 15 }
        },
        required: true
    }
]
await this.$optionsDialog({
    dialogAttrs: {
        title: `确认吗`
    },
    formAttrs: {
        labelWidth: '100px'
    },
    request: (formData) => {
        return api(formData)
    },
    cols
})
this.$message.success('提交成功')

directives

v-tableHeight="{ subHeight: 76 }"
subHeight: 减去高度,默认减去76
表格最低高度500

<div v-tableHeight>
    <el-table
        height="100%"
    >
    </el-table>
</div>