vue2-client 1.8.438 → 1.8.439
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
CHANGED
|
@@ -271,9 +271,9 @@ export default {
|
|
|
271
271
|
getFromItem (formItems, formJson) {
|
|
272
272
|
const _formItems = formItems || formJson
|
|
273
273
|
if (typeof formItems === 'string') {
|
|
274
|
-
|
|
274
|
+
return JSON.parse(_formItems)
|
|
275
275
|
} else {
|
|
276
|
-
|
|
276
|
+
return JSON.parse(JSON.stringify(_formItems))
|
|
277
277
|
}
|
|
278
278
|
},
|
|
279
279
|
// 时间组件赋默认值
|