提交 7a1724ed 编写于 作者: llz's avatar llz

加载远端数据时,取消反序列化操作。

上级 e4bb3478
......@@ -63,8 +63,7 @@ export default class AvueCustomForm extends Vue {
* @type {any}
* @memberof AvueCustomForm
*/
@Prop()
public formData: any;
@Prop() public formData: any;
/**
* 表单状态
......@@ -193,7 +192,7 @@ export default class AvueCustomForm extends Vue {
const get: Promise<any> = this.$http.get(this.url);
get.then((response: any) => {
if (response && response.data) {
that.formOption = JSON.parse(response.data);
that.formOption = response.data;
if (this.isFormData) that.getFormData();
}
});
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册