From c0d012eef8d08f24647e0786ac48b30b0248b980 Mon Sep 17 00:00:00 2001 From: baize <3533151373@qq.com> Date: Sat, 1 Jun 2024 20:32:00 +0800 Subject: [PATCH] =?UTF-8?q?feat():=20=E5=A2=9E=E5=8A=A0=E7=94=B5=E5=AD=90?= =?UTF-8?q?=E5=9B=B4=E6=A0=8F=E5=A2=9E=E5=88=A0=E6=94=B9=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 4 +- .env.production | 4 +- .env.staging | 4 +- package.json | 3 +- public/index.html | 3 + src/api/customerBusiness/fence.js | 44 ++ src/api/customerBusiness/vehicle.js | 44 ++ src/views/customerBusiness/atlas/index.vue | 143 ++++++ src/views/customerBusiness/fence/index.vue | 274 ++++++++++++ src/views/customerBusiness/vehicle/index.vue | 431 +++++++++++++++++++ src/views/index.vue | 2 +- vue.config.js | 2 +- 12 files changed, 949 insertions(+), 9 deletions(-) create mode 100644 src/api/customerBusiness/fence.js create mode 100644 src/api/customerBusiness/vehicle.js create mode 100644 src/views/customerBusiness/atlas/index.vue create mode 100644 src/views/customerBusiness/fence/index.vue create mode 100644 src/views/customerBusiness/vehicle/index.vue diff --git a/.env.development b/.env.development index 302ecd1..164df16 100644 --- a/.env.development +++ b/.env.development @@ -1,10 +1,10 @@ # 页面标题 -VUE_APP_TITLE = 若依管理系统 +VUE_APP_TITLE = 客户业务系统 # 开发环境配置 ENV = 'development' -# 若依管理系统/开发环境 +# 客户业务系统/开发环境 VUE_APP_BASE_API = '/dev-api' # 路由懒加载 diff --git a/.env.production b/.env.production index b4893b0..2565459 100644 --- a/.env.production +++ b/.env.production @@ -1,8 +1,8 @@ # 页面标题 -VUE_APP_TITLE = 若依管理系统 +VUE_APP_TITLE = 客户业务系统 # 生产环境配置 ENV = 'production' -# 若依管理系统/生产环境 +# 客户业务系统/生产环境 VUE_APP_BASE_API = '/prod-api' diff --git a/.env.staging b/.env.staging index 361859f..cb921e9 100644 --- a/.env.staging +++ b/.env.staging @@ -1,10 +1,10 @@ # 页面标题 -VUE_APP_TITLE = 若依管理系统 +VUE_APP_TITLE = 客户业务系统 NODE_ENV = production # 测试环境配置 ENV = 'staging' -# 若依管理系统/测试环境 +# 客户业务系统/测试环境 VUE_APP_BASE_API = '/stage-api' diff --git a/package.json b/package.json index 1aa9f70..b4d4077 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "muyu", "version": "3.6.3", - "description": "若依管理系统", + "description": "客户业务系统", "author": "若依", "license": "MIT", "scripts": { @@ -36,6 +36,7 @@ "url": "https://gitee.com/y_project/MuYu-Cloud.git" }, "dependencies": { + "@amap/amap-jsapi-loader": "^1.0.1", "@riophae/vue-treeselect": "0.4.0", "axios": "0.24.0", "clipboard": "2.0.8", diff --git a/public/index.html b/public/index.html index 99f7ed8..69506b1 100644 --- a/public/index.html +++ b/public/index.html @@ -7,8 +7,11 @@
- 一直想做一款后台管理系统,看了很多优秀的开源项目但是发现没有合适自己的。于是利用空闲休息时间开始自己写一套后台系统。如此有了若依管理系统,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。 + 一直想做一款后台管理系统,看了很多优秀的开源项目但是发现没有合适自己的。于是利用空闲休息时间开始自己写一套后台系统。如此有了客户业务系统,她可以用于所有的Web应用程序,如网站管理后台,网站会员中心,CMS,CRM,OA等等,当然,您也可以对她进行深度定制,以做出更强系统。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。
当前版本: v{{ version }} diff --git a/vue.config.js b/vue.config.js index dd8b15d..9746c44 100644 --- a/vue.config.js +++ b/vue.config.js @@ -7,7 +7,7 @@ function resolve(dir) { const CompressionPlugin = require('compression-webpack-plugin') -const name = process.env.VUE_APP_TITLE || '若依管理系统' // 网页标题 +const name = process.env.VUE_APP_TITLE || '客户业务系统' // 网页标题 const port = process.env.port || process.env.npm_config_port || 80 // 端口