1 Star 31 Fork 5

ainow/official-website-template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MulanPSL-2.0

1. 相关链接

2. 项目概要

  • keywords(全): vue3,vite,vant,Element Plus,json-server,Axios,Pinia,Vuex,Vue Router,...
  • 采用vue3,vite开发的通用型官方网站模板,而且还提供了许多小demo,帮助你快速上手vue3工程化开发!

3. 项目详情

3.1. 前,后端简述

  • 前端: vue3,vite,vant,Element Plus,json-server,Axios,Pinia,Vuex,Vue Router,......
    • 采用vue3,vite工程化,语言基于html + js + css
    • 库和工具: Vant,Element Plus,layui-vue,json-server,Axios,Pinia,Vuex,Vue Router......
    • 知识点: less,组件mixins,导航守卫,pinia持久化,请求/响应拦截器,api模块封装,第三方库的按需引入,模拟后端接口(json-sever,mock-sever),......
    • 知识点-UI: clip-path剪裁任意形状,带偏移且平滑滚动的hash定位,
  • 后端:
    • 后端接口还未完工,可先参考 Q免签支付
    • 库和工具: Hutool-captcha,......

3.2. 前端部分详述

Vant,Element Plus,layui-vue按需引入,及组件推荐

  • Vant4Element Pluslayui-vue
  • 弹出层:layui-vue弹层
  • 图片,图片预览:el-image,el-image-viewer
  • 滚动条:默认 > el-scrollbar
    • main content的滚动条使用document的滚动条而非改到main div,否则可能会有一系列问题,如会影响整个document的高度,影响懒加载机制,document的scroll监听失效等问题,
    • 只有局部滚动的时候才开启局部div的滚动条
  • 骨架:el-skeleton
  • 地图:百度地图
  • index管理
    • 999 弹出层,图片预览

路由配置



/*
* 注意
* name重复的路由只会注册靠后的
* path重复的路由,匹配靠前的
* */

import HomeView from "@/a-main-app/home/HomeView.vue";

const routes = {
    path: '/home',
    // route level code-splitting
    // this generates a separate chunk (About.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import('@/a-layout/homeLayout/HomeLayout.vue'),
    redirect: '/',
    //如果父级路由设置component,访问子路由会先在app.vue的RouterView(路由出口)中显示该组件,然后再在该组件的RouterView显示子组件,若该组件没有RouterView,子组件应该显示的位置会空白
    //若未设置component,访问子路由就直接在app.vue的RouterView中显示子组件
    // component: () => import('@/components/views/DemoView.vue'),
    meta: {
        title: 'Q享-齐分享,同乐趣,共进步!', // 设置该路由在侧边栏和面包屑中展示的名字
        // icon: 'el-icon-s-help' // 设置该路由的图标,对应路径src/assets/icons/svg
        // hidden: true, // 如果设置为true,则不会在侧边栏出现
        // noCache: true // 如果设置为true,则不会被 <keep-alive> 缓存(默认 false)
        // breadcrumb: false // 如果设置为false,则不会在breadcrumb面包屑中显示
        // affix: true // 如果设置为true,则标签将永远显示在左侧
        // activeMenu: '/demo/note' // 如果设置路径,侧边栏将突出显示您设置的路径
        // roles: ['admin','editor'] // 设置该路由进入的权限,支持多个权限叠加
    },
    children: [
        {
            path: '/',
            name: 'home',
            component: HomeView,
            meta: {
                title: 'Q享-菜单',
                transition: 'fade',
                anchorTopOffset: 200
            },
        },
        {
            path: '/demo',
            name: 'demo',
            children: [
                // 动态路由传参,?为参数可选符,不加的话表示必须传参,否则匹配不到组件,如/demo/note,/demo/note/显示空白
                {
                    path: '/note/:words?', name: 'note',
                    component: () => import('@/a-main-app/home/note/NoteCompositionApiSimple.vue')
                },
            ]
        },
    ]
}

mock/json-sever 后端接口模拟

mock 参考
json-sever 参考官网
上述方案实现要么全部用模拟接口,要么全部用正式接口,适合团队开发
个人开发一般是采用后端完善的接口则直接使用,没完善的接口则使用模拟数据:即直接在封装请求的方法中返回模拟数据,这样开发环境,生产环境都能正常使用,工作量也会减少,这也是本项目最终采用的方法

Anxios请求/响应拦截器

在请求或响应被 then 或 catch 处理前拦截它们,实现统一处理请求和响应的逻辑,减少代码冗余,提高代码的可维护性和灵活性。

// 添加请求拦截器  
axios.interceptors.request.use(function (config) {  
// 在发送请求之前做些什么  
return config;  
}, function (error) {  
// 对请求错误做些什么  
return Promise.reject(error);  
});  

// 添加响应拦截器  
axios.interceptors.response.use(function (response) {  
// 2xx 范围内的状态码都会触发该函数。  
// 对响应数据做点什么  
return response;  
}, function (error) {  
// 超出 2xx 范围的状态码都会触发该函数。  
// 对响应错误做点什么  
return Promise.reject(error);  
});

Less支持

  • less是一种动态样式表语言,它扩展了 CSS 的功能,增加了变量、嵌套规则、运算等功能。
  • vue工程化,可通过包管理器引入less,less-loader使得在组件样式支持less

组件 Mixins

  • 组件 Mixins 是 Vue.js 中用于复用组件逻辑的一种机制。通过将共享的代码块定义为 mixin,并在多个组件中引入该 mixin,可以避免重复编写相同的逻辑。这有助于减少代码冗余,提高代码的可维护性和复用性。Mixins 可以包含组件选项,如 data、methods、computed 等,使得这些选项能够在多个组件之间共享。

clip-path: polygon div形状剪裁,自定义

//实现缺角矩形div
clip-path: polygon( 0 0,100% 0,100% 100%,70% 100%,0 30%)

vuex,pinia状态管理库选择

  • Vuex是Vue.js官方出品的状态管理库,
  • Pinia则是一个较新的状态管理库,相比Vuex,
    • 简化了核心概念
    • setup store 与 Vue 组合式 API 的 setup 函数 有异曲同工之妙,而且也提供options store保留Vuex用法
    • 插件支持,如持久化
    • 极致轻量化,开发工具支持
    • ......

VueRouter 导航守卫

  • 导航守卫是 Vue Router 提供的一种机制,用于在路由发生变化时执行特定的逻辑。通过定义导航守卫,可以在路由进入、离开或更新前后执行一些操作,如权限验证、数据获取、页面跳转/取消跳转等。
router.beforeEach((to, from, next) => {
  if (to.name !== 'Login' && !isAuthenticated) next({ name: 'Login' })
  else next()
})

3.2. 前端踩坑

这些坑都会消耗或多或少时间,精力,【笑哭,泪目】

父子组件生命周期执行流程

不要自以为父组件的生命周期先于子组件执行 参考文章-子组件调用父组件的接口回调数据的坑

......

3.3. 后端详述

Hutool-captcha

  • Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅
  • Hutool-captcha Hutool中加入验证码生成和校验功能
//定义图形验证码的长、宽、验证码字符数、干扰线宽度
ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(200, 100, 4, 4);
//ShearCaptcha captcha = new ShearCaptcha(200, 100, 4, 4);
//图形验证码写出,可以写出到文件,也可以写出到流
captcha.write("d:/shear.png");
//验证图形验证码的有效性,返回boolean值
captcha.verify("1234");

4. 功能,特点,优化

4.1. 功能,效果:

  • music player affix
  • 全响应式布局(各种分辨率的屏幕都能友好显示)
  • Header组件封装
    • 可切换模式:自动隐藏,总是显示,标题模式
    • 导航高亮,手机适配方案
  • 平滑滚动的hash定位,backToTop

4.2. 后期完善功能

  • 邮箱验证码登录
  • 图形验证码
  • 图片懒加载

4.3. 交互效果

  • 优化——响应速度,性能优化,用户体验,
    • loading 蒙层
    • 静态资源压缩处理
  • 待优化
    • 图片懒加载
    • audio未配置缓存,每次切换源,都会从网络加载

4.4. 待探究

  • 为了实现解耦/功能点组合,对统一属性开多个watch,性能消耗情况
    • 建议使用function来组合功能点

4. 简单使用

  • install node https://nodejs.org (npm,yarn)
  • node -v; npm -v; yarn -v;
  • Project Setup
    • yarn install | npm install
  • Compile and Hot-Reload for Development
    • yarn dev | npm run dev
  • Compile and Minify for Production
    npm run build
    npm run preview
    

常见问题

  • build 打包失败
    • 由于我没把一些demo dir/files 推送到git,所以导致 vite.config.js 中 build.rollupOptions.input配置会导致找不到文件
    • 解决办法:注释掉,例如
      // p1: resolve(__dirname, './pages-demo/sub/index.html'),

已经到文章末尾了,感谢您的阅读!

木兰宽松许可证, 第2版 木兰宽松许可证, 第2版 2020年1月 http://license.coscl.org.cn/MulanPSL2 您对“软件”的复制、使用、修改及分发受木兰宽松许可证,第2版(“本许可证”)的如下条款的约束: 0. 定义 “软件”是指由“贡献”构成的许可在“本许可证”下的程序和相关文档的集合。 “贡献”是指由任一“贡献者”许可在“本许可证”下的受版权法保护的作品。 “贡献者”是指将受版权法保护的作品许可在“本许可证”下的自然人或“法人实体”。 “法人实体”是指提交贡献的机构及其“关联实体”。 “关联实体”是指,对“本许可证”下的行为方而言,控制、受控制或与其共同受控制的机构,此处的控制是指有受控方或共同受控方至少50%直接或间接的投票权、资金或其他有价证券。 1. 授予版权许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的版权许可,您可以复制、使用、修改、分发其“贡献”,不论修改与否。 2. 授予专利许可 每个“贡献者”根据“本许可证”授予您永久性的、全球性的、免费的、非独占的、不可撤销的(根据本条规定撤销除外)专利许可,供您制造、委托制造、使用、许诺销售、销售、进口其“贡献”或以其他方式转移其“贡献”。前述专利许可仅限于“贡献者”现在或将来拥有或控制的其“贡献”本身或其“贡献”与许可“贡献”时的“软件”结合而将必然会侵犯的专利权利要求,不包括对“贡献”的修改或包含“贡献”的其他结合。如果您或您的“关联实体”直接或间接地,就“软件”或其中的“贡献”对任何人发起专利侵权诉讼(包括反诉或交叉诉讼)或其他专利维权行动,指控其侵犯专利权,则“本许可证”授予您对“软件”的专利许可自您提起诉讼或发起维权行动之日终止。 3. 无商标许可 “本许可证”不提供对“贡献者”的商品名称、商标、服务标志或产品名称的商标许可,但您为满足第4条规定的声明义务而必须使用除外。 4. 分发限制 您可以在任何媒介中将“软件”以源程序形式或可执行形式重新分发,不论修改与否,但您必须向接收者提供“本许可证”的副本,并保留“软件”中的版权、商标、专利及免责声明。 5. 免责声明与责任限制 “软件”及其中的“贡献”在提供时不带任何明示或默示的担保。在任何情况下,“贡献者”或版权所有者不对任何人因使用“软件”或其中的“贡献”而引发的任何直接或间接损失承担责任,不论因何种原因导致或者基于何种法律理论,即使其曾被建议有此种损失的可能性。 6. 语言 “本许可证”以中英文双语表述,中英文版本具有同等法律效力。如果中英文版本存在任何冲突不一致,以中文版为准。 条款结束 如何将木兰宽松许可证,第2版,应用到您的软件 如果您希望将木兰宽松许可证,第2版,应用到您的新软件,为了方便接收者查阅,建议您完成如下三步: 1, 请您补充如下声明中的空白,包括软件名、软件的首次发表年份以及您作为版权人的名字; 2, 请您在软件包的一级目录下创建以“LICENSE”为名的文件,将整个许可证文本放入该文件中; 3, 请将如下声明文本放入每个源文件的头部注释中。 Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details. Mulan Permissive Software License,Version 2 Mulan Permissive Software License,Version 2 (Mulan PSL v2) January 2020 http://license.coscl.org.cn/MulanPSL2 Your reproduction, use, modification and distribution of the Software shall be subject to Mulan PSL v2 (this License) with the following terms and conditions: 0. Definition Software means the program and related documents which are licensed under this License and comprise all Contribution(s). Contribution means the copyrightable work licensed by a particular Contributor under this License. Contributor means the Individual or Legal Entity who licenses its copyrightable work under this License. Legal Entity means the entity making a Contribution and all its Affiliates. Affiliates means entities that control, are controlled by, or are under common control with the acting entity under this License, ‘control’ means direct or indirect ownership of at least fifty percent (50%) of the voting power, capital or other securities of controlled or commonly controlled entity. 1. Grant of Copyright License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable copyright license to reproduce, use, modify, or distribute its Contribution, with modification or not. 2. Grant of Patent License Subject to the terms and conditions of this License, each Contributor hereby grants to you a perpetual, worldwide, royalty-free, non-exclusive, irrevocable (except for revocation under this Section) patent license to make, have made, use, offer for sale, sell, import or otherwise transfer its Contribution, where such patent license is only limited to the patent claims owned or controlled by such Contributor now or in future which will be necessarily infringed by its Contribution alone, or by combination of the Contribution with the Software to which the Contribution was contributed. The patent license shall not apply to any modification of the Contribution, and any other combination which includes the Contribution. If you or your Affiliates directly or indirectly institute patent litigation (including a cross claim or counterclaim in a litigation) or other patent enforcement activities against any individual or entity by alleging that the Software or any Contribution in it infringes patents, then any patent license granted to you under this License for the Software shall terminate as of the date such litigation or activity is filed or taken. 3. No Trademark License No trademark license is granted to use the trade names, trademarks, service marks, or product names of Contributor, except as required to fulfill notice requirements in Section 4. 4. Distribution Restriction You may distribute the Software in any medium with or without modification, whether in source or executable forms, provided that you provide recipients with a copy of this License and retain copyright, patent, trademark and disclaimer statements in the Software. 5. Disclaimer of Warranty and Limitation of Liability THE SOFTWARE AND CONTRIBUTION IN IT ARE PROVIDED WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. IN NO EVENT SHALL ANY CONTRIBUTOR OR COPYRIGHT HOLDER BE LIABLE TO YOU FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO ANY DIRECT, OR INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING FROM YOUR USE OR INABILITY TO USE THE SOFTWARE OR THE CONTRIBUTION IN IT, NO MATTER HOW IT’S CAUSED OR BASED ON WHICH LEGAL THEORY, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 6. Language THIS LICENSE IS WRITTEN IN BOTH CHINESE AND ENGLISH, AND THE CHINESE VERSION AND ENGLISH VERSION SHALL HAVE THE SAME LEGAL EFFECT. IN THE CASE OF DIVERGENCE BETWEEN THE CHINESE AND ENGLISH VERSIONS, THE CHINESE VERSION SHALL PREVAIL. END OF THE TERMS AND CONDITIONS How to Apply the Mulan Permissive Software License,Version 2 (Mulan PSL v2) to Your Software To apply the Mulan PSL v2 to your work, for easy identification by recipients, you are suggested to complete following three steps: i Fill in the blanks in following statement, including insert your software name, the year of the first publication of your software, and your name identified as the copyright owner; ii Create a file named “LICENSE” which contains the whole context of this License in the first directory of your software package; iii Attach the statement to the appropriate annotated syntax at the beginning of each source file. Copyright (c) [Year] [name of copyright holder] [Software Name] is licensed under Mulan PSL v2. You can use this software according to the terms and conditions of the Mulan PSL v2. You may obtain a copy of Mulan PSL v2 at: http://license.coscl.org.cn/MulanPSL2 THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. See the Mulan PSL v2 for more details.

简介

基于vue3,vite开发的通用型官方网站模板。 展开 收起
Vue 等 4 种语言
MulanPSL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ainowr/official-website-template.git
git@gitee.com:ainowr/official-website-template.git
ainowr
official-website-template
official-website-template
master

搜索帮助