康巴易测肤/伤疤uniapp小程序类
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
524B

  1. <script>
  2. export default {
  3. onShow() {
  4. // #ifdef APP-PLUS
  5. // 请勿删除此代码块
  6. plus.runtime.quit = () => {
  7. };
  8. // 请勿删除此代码块,
  9. // #endif
  10. let data = uni.getStorageSync(`Default_Vuex_Storage`);
  11. console.log("data", data);
  12. if (data) {
  13. this.$store.commit('setAll', JSON.parse(data));
  14. }
  15. },
  16. }
  17. </script>
  18. <style lang="scss">
  19. /* 引入uView基础样式,注意要写在第一行,同时给style标签加入lang="scss"属性 */
  20. @import "uview-ui/index.scss";
  21. </style>