uniapp小程序实现主题切换功能多端适配

uniapp小程序实现主题切换功能

业务场景:小程序中切换主题,如:白天,夜间,暗夜等。实现常规版与老年版界面的切换。

思路

  1. 原理:通过css-var变量的方式实现主题切换
  2. 定义主题样式至vuex中,通过vuex的mutations封装函数改变主题样式
  3. 使用mixins混入全局组件中,注册主题样式
  4. 在页面使用变量:style={theme}引入
  5. 使用scss简化var变量写法

实现代码

1、store/index.js

css-var变量不支持rpx单位,需要通过uni.upx2px()方法转换为px

js 复制代码
// 页面路径:store/index.js 
import Vue from 'vue'
import Vuex from 'vuex'

Vue.use(Vuex);//vue的插件机制

function rpxTopx(rpx) {
	return `${uni.upx2px(rpx)}px`;
}
//Vuex.Store 构造器选项
const store = new Vuex.Store({
	state: {
		themeName: uni.getStorageSync("theme"),
		themeStyle: {
			"nature": `--title-size:${rpxTopx(32)};--info-size:${rpxTopx(28)};
			`,
			"older": `--title-size:${rpxTopx(44)};--info-size:${rpxTopx(36)};
			`
		}
	},
	getters: {
		theme(state) {
			return state.themeStyle[state.themeName]
		}
	},
	mutations: {
    // 切换主题方法
		setTheme(state, themeName) {
			state.themeName = themeName
		}
	}
})
export default store

2、mixins/theme.js

每个页面都需要获取相应主题的var变量字符串,使用mixin进行简化写法

js 复制代码
import {
  mapState,
  mapGetters
} from 'vuex'
export default {
  install(Vue) {
    Vue.mixin({
      computed: {
        ...mapState({
          themeName: 'themeName'
        }),
        ...mapGetters({
          theme: "theme"
        })
      }
    })
  }
}

3、main.js中导入store与mixin

js 复制代码
import Vue from 'vue'
import App from './App'
import store from './store'
import mixin from '@/mixins/theme.js'
Vue.use(mixin)
App.mpType = 'app'
const app = new Vue({
  store,
  ...App,
  // 启用动态插槽名支持
  scopedSlotsCompiler: 'augmented'
})

4、uni.scss中使用var变量

scss 复制代码
$title-size :var(--title-size); //标题字体大小
$info-size:var(--info-size);

5、在页面中使用

html 复制代码
<template>
  <view :style="theme" class="page">
    <button @click="setTheme('nature')" class="btn">常规版</button>
    <button @click="setTheme('older')" class="btn">老年版</button>
  </view>
</template>
<script>
export default {
  data() {
    return {}
  },
  methods: {
    setTheme(theme) {
      this.$store.commit('setTheme', theme)
      uni.showToast({
        title: '切换成功',
        duration: 2000
      })
    }
  }
}
</script>
<style lang="scss" scoped>
  .tool_text {
    margin-top: 25rpx;
    font-size: $title-size;
    color: #ffffff;
    line-height: 48rpx;
  }
<style>

总结

实现有没难度,目前需要每个页面都引入style:{theme},小程序App.vue中不能书写视图,目前没有找到解决方法。

相关推荐
qq_124987075317 小时前
基于微信小程序的校园跑腿系统的设计与实现(源码+论文+部署+安装)
spring boot·微信小程序·小程序·毕业设计·计算机毕业设计
大大花猫19 小时前
我用AI写了个小程序,却被人说没有底线…
前端·微信小程序·交互设计
计算机毕设指导620 小时前
基于微信小程序的设备报修系统【源码文末联系】
java·spring boot·微信小程序·小程序·tomcat·maven·intellij-idea
qq_124987075320 小时前
悦读圈图书共享微信小程序(源码+论文+部署+安装)
spring boot·后端·微信小程序·小程序·毕业设计·计算机毕业设计
wan1042 天前
用户隐私协议URL
微信小程序
Z单单2 天前
微信小程序订单信息录入路径设置
微信小程序·小程序
码界奇点2 天前
基于Spring Boot和微信小程序的小程序商城系统设计与实现
spring boot·微信小程序·小程序·毕业设计·源代码管理
计算机毕设指导62 天前
基于微信小程序的智慧社区娱乐服务管理系统【源码文末联系】
java·spring boot·微信小程序·小程序·tomcat·maven·娱乐
赵庆明老师2 天前
uniapp 微信小程序页面JS模板
javascript·微信小程序·uni-app
项目題供诗2 天前
微信小程序黑马优购(项目)(九)
微信小程序·小程序