whycq0520
2022-03-23 2c654514f26557b074f5b2a983aa270d839c142b
# sale.vue
1个文件已修改
20 ■■■■■ 已修改文件
pages/basics/sale.vue 20 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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>