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中不能书写视图,目前没有找到解决方法。

相关推荐
盛夏绽放33 分钟前
关于 uni-app 与原生微信小程序中的生命周期 —— 一次“生命旅程”的解读
微信小程序·小程序·uni-app
流水线上的指令侠1 小时前
使用C#写微信小程序后端——电商微信小程序
微信小程序·小程序·c#·visual studio
知识分享小能手1 小时前
uni-app 入门学习教程,从入门到精通,uni-app 基础知识详解 (2)
前端·javascript·windows·学习·微信小程序·小程序·uni-app
小岛前端4 小时前
🔥Vue3 移动端组件精选!满足各种场景!
前端·vue.js·微信小程序
從南走到北8 小时前
JAVA代泊车接机送机服务代客泊车系统源码支持小程序+APP+H5
java·开发语言·微信小程序·小程序
木易 士心14 小时前
组织架构树形选择组件使用说明(Vue3 + UniApp)
微信小程序·钉钉·notepad++
软件技术员15 小时前
微信小程序电子测宅堪墓风水罗盘
微信小程序·小程序
Q_Q51100828515 小时前
python+uniapp基于微信小程序的旅游信息系统
spring boot·python·微信小程序·django·flask·uni-app·node.js
努力就够了20 小时前
微信小程序:日常零售供应系统
微信小程序·erp·接单·零售系统
peachSoda721 小时前
封装一个不同跳转方式的通用方法(跳转外部链接,跳转其他小程序,跳转半屏小程序)
前端·javascript·微信小程序·小程序