Commit fd55c9f6d27efb602ed7e80191040036beedbf87
Merge branch 'fix/show-requestok' into 'main_dev'
fix: 修改登录时显示requeust:ok的问题 See merge request yunteng/thingskit-app!111
Showing
3 changed files
with
14 additions
and
3 deletions
... | ... | @@ -98,14 +98,17 @@ |
98 | 98 | }, |
99 | 99 | }); |
100 | 100 | //#endif |
101 | + uni.setStorageSync('getConfiguration', { | |
102 | + isConfiguration: false | |
103 | + }); | |
101 | 104 | }, |
102 | 105 | computed: { |
103 | 106 | ...mapState(["plateInfo"]), |
104 | 107 | }, |
105 | - mounted() { | |
106 | - this.getPlateForm(); | |
107 | - }, | |
108 | 108 | onShow() { |
109 | + uni.setStorageSync('getConfiguration', { | |
110 | + isConfiguration: false | |
111 | + }); | |
109 | 112 | this.getPlateForm(); |
110 | 113 | }, |
111 | 114 | methods: { | ... | ... |