vue2-client 1.15.40 → 1.15.41
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
@@ -924,16 +924,11 @@ export default {
|
|
924
924
|
showSubmitBtn: false
|
925
925
|
})
|
926
926
|
// 初始化的数据渲染(流程第一步)
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
.
|
931
|
-
|
932
|
-
console.log('转换后的数据-对象', JSON.parse(res[0].f_data))
|
933
|
-
this.$refs.xAddForm.setForm(JSON.parse(res[0].f_data))
|
934
|
-
}, err => {
|
935
|
-
console.log(err)
|
936
|
-
})
|
927
|
+
console.log('导入的原始数据-json', this.stepsForChild[0].f_data)
|
928
|
+
console.log('转换后的数据-对象', JSON.parse(this.stepsForChild[0].f_data))
|
929
|
+
if (stepId === 1) {
|
930
|
+
this.$refs.xAddForm.setForm(JSON.parse(this.stepsForChild[0].f_data))
|
931
|
+
}
|
937
932
|
})
|
938
933
|
} else {
|
939
934
|
this.showForm = false
|