2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00
2025-05-29 13:57:03 +08:00

助企云站pc

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for development

npm run build:dev

Compiles and minifies for production

npm run build:prod

Lints and fixes files

npm run lint

Project structure

.
├── README.md
├── babel.config.js
├── jsconfig.json
├── package-lock.json
├── package.json
├── public
│   ├── favicon.ico
│   └── index.html    
├── src
│   ├── App.vue
│   ├── main.js
│   ├── api
│   │   ├── lib
│   │   │   └── request.js                // request封装
│   │   ├── alarmManage.js                // 企业报警api
│   │   ├── businessManage.js             // 辖区企业api
│   │   ├── groundingManage.js            // 服务管理api
│   │   ├── case.js                       // 案件预警提醒api
│   │   ├── systemManage.js               // 系统管理api
│   │   ├── user.js                       // 用户api
│   │   └── public.js                     // 公共api
│   ├── assets
│   │   ├── fontFamily
│   │   ├── icons                         // svg
│   │   ├── images                        // 项目图片
│   │   │   ├── layout
│   │   │   ├── corporateHelpdesk
│   │   │   ├── login  
│   │   │   └── public
│   │   └── style
│   │       ├── mixin.scss
│   │       ├── global.scss
│   │       ├── publicAdmin.scss          // 后台公共样式
│   │       └── variables.scss
│   ├── components
│   │   ├── AppLink
│   │   ├── Pagination                    // 分页器
│   │   ├── QyDetail                      // 企业详情页 
│   │   └── SvgIcon
│   ├── layout
│   │   ├── components
│   │   │   ├── AppMain.vue
│   │   │   ├── Breadcrumb.vue
│   │   │   ├── LayoutHead.vue
│   │   │   └── MenuItem.vue
│   │   └── index.vue                    
│   ├── router                            
│   │   ├── modules
│   │   │   └── main.js                 
│   │   ├── permission.js
│   │   └── index.js
│   ├── store
│   │   └── index.js
│   ├── utils
│   │   ├── mixin.js
│   │   └── validate.js
│   └── views
│       ├── achievementTotal              // 成果统计  
│       │   ├── events.vue
│       │   ├── service.vue
│       │   ├── login.vue                
│       │   └── index.vue
│       ├── alarmMange                    // 企业办事                  
│       │   ├── detail.vue
│       │   ├── dialogCom.vue
│       │   └── index.vue
│       ├── businessManage                // 企业管理
│       │   ├── detail.vue
│       │   └── index.vue
│       ├── businessConsulting            // 企业咨询
│       │   └── index.vue
│       ├── caseReminder                  // 一案一提醒
│       │   └── index.vue
│       ├── caseWarning                   // 类案预警
│       │   └── index.vue
│       ├── groundingManage               // 服务管理--内容上架
│       │   ├── advert                    // 宣传专栏
│       │   │   ├── add.vue               
│       │   │   ├── edit.vue            
│       │   │   └── list.vue          
│       │   ├── course                    // 公安课堂
│       │   │   ├── add.vue        
│       │   │   ├── edit.vue      
│       │   │   └── list.vue  
│       │   ├── example                   // 案例介绍
│       │   │   ├── add.vue        
│       │   │   ├── edit.vue      
│       │   │   └── list.vue      
│       │   └── index.vue
│       ├── groundingTotal                // 服务管理--上架统计
│       │   ├── advert.vue                // 宣传专栏        
│       │   ├── course.vue                // 公安课堂
│       │   └── example.vue               // 案例介绍
│       │── systemManage                  // 系统管理
│       │   ├── menus                     // 菜单管理
│       │   │   └── index.vue 
│       │   ├── roles                     // 角色管理
│       │   │   └── index.vue 
│       │   └── users                     // 用户管理
│       │       └── index.vue 
│       │── lawyerManage                  // 律师管理
│       │   │── add.vue
│       │   │── edit.vue
│       │   │── detail.vue
│       │   │── list.vue
│       │   └── chart.vue
│       │── 404.vue                       // 404             
│       │── identify.vue                  // 登录验证码
│       └── login.vue                     // 登录
│── .gitignore.js
│── .env.development.js
│── .env.production.js
└── vue.config.js

Description
ifms web的pc端
Readme 6.3 MiB
Languages
Vue 93.6%
JavaScript 4.6%
SCSS 1.6%
HTML 0.2%