ソースを参照

Merge branch 'master' of https://git.steerinfo.com/DAL-DAZHOU/icore-pass

liyg 2 年 前
コミット
3edb9cb67b

+ 1 - 4
src/views/RMS/components/addPort.vue

@@ -26,10 +26,7 @@ export default {
   mounted() {},
   methods: {
     makeSure() {
-      console.log(this.form1);
-      //   let RmsCapacity = {
-
-      //   };
+  
       let RmsCapacity = this.form1;
       console.log(RmsCapacity);
       if (RmsCapacity.portName == null || RmsCapacity.portTypeId == null)

+ 5 - 1
src/views/sale/components/transport_excute/tms-offsite/receiptResult.vue

@@ -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);
+        }
        });
        
     },