|
@@ -393,9 +393,9 @@ export default {
|
|
|
firstProperty: {},
|
|
|
secondProperty: {}
|
|
|
};
|
|
|
- console.log("this.quesModel:", this.quesModel);
|
|
|
if (
|
|
|
this.quesModel.quesProperties === undefined ||
|
|
|
+ this.quesModel.quesProperties === null ||
|
|
|
this.quesModel.quesProperties.length == 0
|
|
|
) {
|
|
|
this.quesModel.quesProperties = [];
|
|
@@ -423,7 +423,6 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
//判断是否有二级属性
|
|
|
- console.log("this.secondPropertyList:", this.secondPropertyList);
|
|
|
if (
|
|
|
this.secondPropertyList != undefined &&
|
|
|
this.secondPropertyList.length > 0
|