# xawebadmina01 **Repository Path**: dylweb/xawebadmina01 ## Basic Information - **Project Name**: xawebadmina01 - **Description**: 仓库后台前端程序 a01 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-11-08 - **Last Updated**: 2025-12-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # xawebadmina01 #### 介绍 仓库后台前端程序 a01 #### 项目介绍 本项目为雄安小管家-后台前端页面仓库。 #### 接口访问信息 接口开发地址: 接口线上地址: 接口文档对接平台 #### 项目运行情况 node -v v22.21.1 npm -v 10.9.4 #### 组件版本 依赖版本冲突 项目依赖的 swiper 是 6.8.4,但是 vue-awesome-swiper@4.1.1 需要 swiper 的版本是 ^5.2.0。npm 默认的行为是遇到这种冲突时报错,以免安装后出现运行时错误 解决办法: npm install swiper@^6.3.3 #安装 npm update 或 npm install #也可以忽略 npm install --legacy-peer-deps 这个命令会忽略 peer dependency 冲突继续安装 #方法二 手动解决冲突 json { "dependencies": { "swiper": "^6.3.3", "vue-awesome-swiper": "^4.1.1" } } #方法三 使用yarn yarn install #清理缓存 npm cache clean --force rm -rf node_modules package-lock.json npm install #运行 npm run dev