sh-tools 2.2.16 → 2.2.17
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/package.json +1 -1
- package/packages/utils/other.js +1 -4
package/package.json
CHANGED
package/packages/utils/other.js
CHANGED
|
@@ -148,7 +148,7 @@ export default {
|
|
|
148
148
|
// editable: 是否对返回值进行修正 默认 否
|
|
149
149
|
let rvalue, rtext, rname
|
|
150
150
|
let { $vUtils, $vxePluginNames } = renderContext
|
|
151
|
-
let { min, max, digits, type, multiple, split, options,
|
|
151
|
+
let { min, max, digits, type, multiple, split, options, format, nodeKey, labelField, moneyUnit, openValue, openLabel, closeValue, closeLabel, defaultValue } = renderProps || {}
|
|
152
152
|
let defaultDateFormat = {
|
|
153
153
|
date: 'yyyy-MM-dd',
|
|
154
154
|
time: 'HH:mm:ss',
|
|
@@ -265,9 +265,6 @@ export default {
|
|
|
265
265
|
if ($vUtils.isString(rvalue)) {
|
|
266
266
|
rvalue = $vUtils.replaceNutrim(rvalue)
|
|
267
267
|
}
|
|
268
|
-
if (formula && !callvalue) {
|
|
269
|
-
$vUtils.set(rowData, key, rvalue)
|
|
270
|
-
}
|
|
271
268
|
if ($vUtils.isNone(rtext) && !$vUtils.isNone(rvalue)) {
|
|
272
269
|
rtext = rvalue
|
|
273
270
|
}
|