【v3.4.0】 1、【新增】页面全局圆角可配置化;2、【优化】首页心灵鸡汤语录;3、【优化】底部公司信息写法;

This commit is contained in:
zhuoda
2024-05-05 20:42:49 +08:00
parent 9ad5a5a5b5
commit a4e0855f0a
11 changed files with 68 additions and 47 deletions

View File

@@ -1,11 +1,11 @@
<!--
* 主应用页面
*
* @Author: 1024创新实验室-主任卓大
* @Date: 2022-09-12 23:46:47
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
*
* @Author: 1024创新实验室-主任卓大
* @Date: 2022-09-12 23:46:47
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
-->
<template>
@@ -19,6 +19,7 @@
colorLinkActive: themeColors[colorIndex].activeColor,
colorLinkHover: themeColors[colorIndex].hoverColor,
colorIcon: themeColors[colorIndex].primaryColor,
borderRadius: borderRadius,
},
components: {
Button: {
@@ -62,4 +63,8 @@
const colorIndex = computed(() => {
return useAppConfigStore().colorIndex;
});
// 圆角
const borderRadius = computed(() => {
return useAppConfigStore().borderRadius;
});
</script>