dfws-ve-taro-request 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +9 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +9 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
    
        package/dist/index.esm.js
    CHANGED
    
    | @@ -6807,6 +6807,14 @@ var onErrorMsgRrport = function (response, options, Taro) { | |
| 6807 6807 | 
             
            var checkStatus = function (response, options, Taro) {
         | 
| 6808 6808 | 
             
                var statusCode = response.statusCode, data = response.data;
         | 
| 6809 6809 | 
             
                if (statusCode >= 200 && statusCode < 300) {
         | 
| 6810 | 
            +
                    if (data.code == 400) {
         | 
| 6811 | 
            +
                        Taro.showToast({
         | 
| 6812 | 
            +
                            title: data.msg,
         | 
| 6813 | 
            +
                            icon: 'none',
         | 
| 6814 | 
            +
                        });
         | 
| 6815 | 
            +
                        data.status = 0;
         | 
| 6816 | 
            +
                        return data;
         | 
| 6817 | 
            +
                    }
         | 
| 6810 6818 | 
             
                    data.status = 1;
         | 
| 6811 6819 | 
             
                    data.errMsg = "";
         | 
| 6812 6820 | 
             
                    return data;
         | 
| @@ -6815,6 +6823,7 @@ var checkStatus = function (response, options, Taro) { | |
| 6815 6823 | 
             
                    Taro.clearStorage(); // 清除token
         | 
| 6816 6824 | 
             
                    Taro.removeStorage({ key: 'ticket' });
         | 
| 6817 6825 | 
             
                    Taro.removeStorage({ key: 'user_id' });
         | 
| 6826 | 
            +
                    Taro.removeStorage({ key: 'openid' });
         | 
| 6818 6827 | 
             
                    data.status = 0;
         | 
| 6819 6828 | 
             
                    data.errMsg = "";
         | 
| 6820 6829 | 
             
                    return data;
         |