Socket
Socket
Sign inDemoInstall

hfun-element-plus

Package Overview
Dependencies
61
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.4 to 0.0.5

2

package.json
{
"name": "hfun-element-plus",
"version": "0.0.4",
"version": "0.0.5",
"description": "一个vue3业务型组件库",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -5,3 +5,3 @@ <!--

* @Date: 2022-03-01 15:08:25
* @LastEditTime: 2022-03-03 15:49:59
* @LastEditTime: 2022-03-03 16:08:59
* @FilePath: /hfun-element-plus/src/hfunUI/packages/hfun-searchFrom/README.md

@@ -59,4 +59,3 @@ -->

<template>
<!-- 搜索框 -->
<hfunSearchForm
<hfunSearchFrom
:mSearchForm="searchfromdata"

@@ -68,16 +67,15 @@ @toQueryResult="toQueryResult"

<script setup>
import { ref, reactive } from "vue";
// 搜索表单form对象
let searchfromdata=reactive({
// 视图层绑定项
modelData: {
chanpinLeixing: "", //产品类型
chanpinHaoma: "", //产品号码
chanpin: "", //产品
kehuMingcheng: "", //客户名称
zhuangjiWeizhi: "", //装机位置
},
// 搜索表单配置项
optionData: [
import { ref, reactive, onMounted } from "vue";
//测试搜索组件
let searchfromdata = reactive({
// 视图层绑定项
modelData: {
chanpinLeixing: "", //产品类型
chanpinHaoma: "", //产品号码
chanpin: "", //产品
kehuMingcheng: "", //客户名称
zhuangjiWeizhi: "", //装机位置
},
// 搜索表单配置项
optionData: [
{

@@ -108,3 +106,3 @@ type: "select",

},
{

@@ -147,17 +145,3 @@ type: "colorpicker",

],
},
{
value: 'navigation',
label: 'Navigation',
children: [
{
value: 'side nav',
label: 'Side Navigation',
},
{
value: 'top nav',
label: 'Top Navigation',
},
],
},
}
],

@@ -170,227 +154,49 @@ },

{
value: 'basic',
label: 'Basic',
children: [
{
value: 'layout',
label: 'Layout',
},
{
value: 'color',
label: 'Color',
},
{
value: 'typography',
label: 'Typography',
},
{
value: 'icon',
label: 'Icon',
},
{
value: 'button',
label: 'Button',
},
],
value: 'basic',
label: 'Basic',
children: [
{
value: 'layout',
label: 'Layout',
}
],
},
{
value: 'form',
label: 'Form',
children: [
{
value: 'radio',
label: 'Radio',
},
{
value: 'checkbox',
label: 'Checkbox',
},
{
value: 'input',
label: 'Input',
},
{
value: 'input-number',
label: 'InputNumber',
},
{
value: 'select',
label: 'Select',
},
{
value: 'cascader',
label: 'Cascader',
},
{
value: 'switch',
label: 'Switch',
},
{
value: 'slider',
label: 'Slider',
},
{
value: 'time-picker',
label: 'TimePicker',
},
{
value: 'date-picker',
label: 'DatePicker',
},
{
value: 'datetime-picker',
label: 'DateTimePicker',
},
{
value: 'upload',
label: 'Upload',
},
{
value: 'rate',
label: 'Rate',
},
{
value: 'form',
label: 'Form',
},
],
},
{
value: 'data',
label: 'Data',
children: [
{
value: 'table',
label: 'Table',
},
{
value: 'tag',
label: 'Tag',
},
{
value: 'progress',
label: 'Progress',
},
{
value: 'tree',
label: 'Tree',
},
{
value: 'pagination',
label: 'Pagination',
},
{
value: 'badge',
label: 'Badge',
},
],
},
{
value: 'notice',
label: 'Notice',
children: [
{
value: 'alert',
label: 'Alert',
},
{
value: 'loading',
label: 'Loading',
},
{
value: 'message',
label: 'Message',
},
{
value: 'message-box',
label: 'MessageBox',
},
{
value: 'notification',
label: 'Notification',
},
],
},
{
value: 'navigation',
label: 'Navigation',
children: [
{
value: 'menu',
label: 'Menu',
},
{
value: 'tabs',
label: 'Tabs',
},
{
value: 'breadcrumb',
label: 'Breadcrumb',
},
{
value: 'dropdown',
label: 'Dropdown',
},
{
value: 'steps',
label: 'Steps',
},
],
},
{
value: 'others',
label: 'Others',
children: [
{
value: 'dialog',
label: 'Dialog',
},
{
value: 'tooltip',
label: 'Tooltip',
},
{
value: 'popover',
label: 'Popover',
},
{
value: 'card',
label: 'Card',
},
{
value: 'carousel',
label: 'Carousel',
},
{
value: 'collapse',
label: 'Collapse',
},
],
},
children: [
{
value: 'radio',
label: 'Radio',
},
{
value: 'form',
label: 'Form',
},
],
}
],
},
},
]
}
],
})
/**
* @Description: 点击查询按钮回调函数
* @Author:
*/
const toQueryResult = () => {
]
})
}
/**
* @Description: 点击查询按钮回调函数
* @Author:
*/
const toQueryResult = () => {
/**
* @Description: 点击新增按钮的回调函数
* @Author:
*/
const toShowAddOrEditDialog = () => {
}
}
/**
* @Description: 点击新增按钮的回调函数
* @Author:
*/
const toShowAddOrEditDialog = () => {
}
</script>
<br>
<br>

@@ -5,3 +5,3 @@ <!--

* @Date: 2022-03-01 15:08:25
* @LastEditTime: 2022-03-03 15:37:03
* @LastEditTime: 2022-03-03 15:56:12
* @FilePath: /hfun-element-plus/src/hfunUI/README.md

@@ -14,2 +14,3 @@ -->

<br>

@@ -26,2 +27,6 @@ <br>

## 安装
npm i hfun-element-plus
### 完整引入

@@ -28,0 +33,0 @@ // main.js

@@ -5,3 +5,3 @@ /*

* @Date: 2022-02-14 17:30:38
* @LastEditTime: 2022-03-03 15:53:33
* @LastEditTime: 2022-03-03 16:10:16
* @FilePath: /hfun-element-plus/src/hfunUI/src/index.js

@@ -27,3 +27,3 @@ */

const hfun_element_plus = {
version: "0.0.4",
version: "0.0.5",
install

@@ -30,0 +30,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc