general-basic-form 1.0.23 → 1.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -91,6 +91,20 @@
91
91
  type: "date-picker",
92
92
  "value-format": "yyyyMMdd"
93
93
  },
94
+ {
95
+ label: "二次工艺成本价格(人民币分)",
96
+ prop: "spCost",
97
+ type: "input-number",
98
+ "controls-position": "right",
99
+ min: 0,
100
+ rules: [
101
+ {
102
+ required: true,
103
+ message: "请输入二次工艺成本价格",
104
+ trigger: "blur",
105
+ },
106
+ ],
107
+ },
94
108
  {
95
109
  label: "分类",
96
110
  prop: "分类",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "general-basic-form",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -1,7 +1,7 @@
1
1
  <!--
2
2
  * @Author: 陈德立*******419287484@qq.com
3
3
  * @Date: 2021-08-20 17:14:53
4
- * @LastEditTime: 2021-11-18 16:23:02
4
+ * @LastEditTime: 2021-11-23 17:49:55
5
5
  * @LastEditors: 陈德立*******419287484@qq.com
6
6
  * @Github: https://github.com/Alan1034
7
7
  * @Description:
@@ -90,6 +90,7 @@
90
90
  :min="item.min"
91
91
  :max="item.max"
92
92
  :controls-position="item['controls-position']"
93
+ :step-strictly="item['step-strictly']"
93
94
  />
94
95
  </el-form-item>
95
96
  <slot></slot>