whycq0520
2022-03-23 2c654514f26557b074f5b2a983aa270d839c142b
pages/basics/sale.vue
@@ -108,6 +108,26 @@
               }
            ]
         }
      },
      mounted(){
         const UIP = uni.getStorageSync('UIP');
         this.baseIP = UIP;
         const UPORT = uni.getStorageSync('UPORT');
         this.basePORT = UPORT;
         let that = this;
         uni.request({
            url: that.baseHttp + that.baseIP + ':' +that.basePORT + that.baseUrl + "/receiveDetl/list/auth",
            header:{'token':uni.getStorageSync('token')},
            success(res) {
               console.log(res)
            }
         })
      },
      onLoad() {
      },
      methods: {
      }
   }
</script>