|
@@ -329,7 +329,8 @@ export default {
|
|
|
this.axios
|
|
|
.post("/api/v1/otms/getReceivingPhotoByUrl?orderNumber="+orderNumber)
|
|
|
.then((res)=>{
|
|
|
- console.log(res.data)
|
|
|
+ if(res.data.code==200){
|
|
|
+ console.log(res.data.data);
|
|
|
this.isShow=true;
|
|
|
this.srcList=[];
|
|
|
this.src=res.data.resultSignedNotePhoto;
|
|
@@ -347,6 +348,9 @@ export default {
|
|
|
if(res.data.otherPhoto3!=null){
|
|
|
this.srcList.push(res.data.otherPhoto3);
|
|
|
}
|
|
|
+ }else{
|
|
|
+ this.$message.warning(res.data.message);
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
},
|