@baosight/erm 1.0.75 → 1.0.76
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/lib/index.common.js +9 -0
- package/lib/index.common.js.map +1 -1
- package/lib/index.esm.css +60 -61
- package/lib/index.esm.js +1 -1
- package/lib/index.umd.js +9 -0
- package/lib/index.umd.js.map +1 -1
- package/lib/index.umd.min.js +1 -1
- package/lib/index.umd.min.js.map +1 -1
- package/lib/utils/ermHelper.d.ts +7 -0
- package/package.json +1 -1
package/lib/index.common.js
CHANGED
|
@@ -57528,6 +57528,15 @@ class ermFormHelper {
|
|
|
57528
57528
|
static deleteRow(ref, rowNo) {
|
|
57529
57529
|
return ref.value.deleteRow(rowNo);
|
|
57530
57530
|
}
|
|
57531
|
+
/**
|
|
57532
|
+
* 获取表单某行某字段描述
|
|
57533
|
+
* @param ref 组件实例
|
|
57534
|
+
* @param rowNo 行号
|
|
57535
|
+
* @param itemCode 字段名
|
|
57536
|
+
*/
|
|
57537
|
+
static getGridCellText(ref, rowNo, itemCode) {
|
|
57538
|
+
return ref.value.getGridCellText(rowNo, itemCode);
|
|
57539
|
+
}
|
|
57531
57540
|
}
|
|
57532
57541
|
;// CONCATENATED MODULE: ./packages/index.ts
|
|
57533
57542
|
// 全局样式
|