康巴易测肤/伤疤uniapp小程序类
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1 个月前
1 个月前
1 个月前
1234567891011121314151617181920212223
  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>