|
@@ -231,6 +231,7 @@ export default {
|
|
|
// 不跳转问题
|
|
|
this.preQuestionPart = false
|
|
|
this.preMaterialPart = true
|
|
|
+ this.currMaterialMemo = ''
|
|
|
this.currMaterial = matterData.material ? matterData.material : {}
|
|
|
this.dealWithPrintInfo()
|
|
|
}
|
|
@@ -275,6 +276,7 @@ export default {
|
|
|
// 不跳转问题
|
|
|
this.preQuestionPart = false
|
|
|
this.preMaterialPart = true
|
|
|
+ this.currMaterialMemo = ''
|
|
|
this.currMaterial = data.material ? data.material : {}
|
|
|
this.dealWithPrintInfo()
|
|
|
return
|
|
@@ -335,7 +337,7 @@ export default {
|
|
|
/** 材料清单点击事件 **/
|
|
|
handleMaterialItem(item) {
|
|
|
if (item) {
|
|
|
- this.currMaterialMemo = item.memo
|
|
|
+ this.currMaterialMemo = item.memo ? item.memo : '无数据'
|
|
|
}
|
|
|
},
|
|
|
/** 打印材料事件 **/
|