Browse Source

营销模块添加

sxb 1 year ago
parent
commit
526690dd80
4 changed files with 22 additions and 4 deletions
  1. 7 1
      README.md
  2. 6 1
      src/router/_import.js
  3. 2 2
      src/utils/request.js
  4. 7 0
      src/views/mis/mishomepage/index.vue

+ 7 - 1
README.md

@@ -116,4 +116,10 @@ node_modules\echarts-gl下的文件将依赖路径中 echarts/lib/……改为 e
 
 # 删除 , 重装
 npm uninstall echarts-gl
-npm install echarts-gl@1
+npm install echarts-gl@1
+
+
+# 内存溢出 => FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
+1、全局安装:npm install -g increase-memory-limit
+2、项目目录下执行命令:increase-memory-limit
+3、去除 "webpack.cmd"、vue-cli-service.cmd、webpack-dev-server.cmd 使用 "%_prog%" 替换为  %_prog% 

+ 6 - 1
src/router/_import.js

@@ -22,7 +22,12 @@ const map = {
   moduleAnalysis: () => import('@/views/currentSystem/authorityManagement/moduleAnalysis/index'), // 模块分析
   userBindManage: () => import('@/views/currentSystem/authorityManagement/userBind/index'), // 抄表用户管理
 
-  // 营销业务管理系统
+   //mis营收业务管理系统
+   mishomepage: () => import('@/views/mis/mishomepage/index'), // Mis营销首页
+  //  userlist: () => import('@/views/collectfees/homepage/index'), // Mis营销首页
+
+
+  // 工单业务管理系统
   register: () => import('@/views/currentSystem/work/order/register/index'), // 工单登记
   WorkList: () => import('@/views/currentSystem/work/WorkList/work/index'), // 工单汇总
   handle: () => import('@/views/currentSystem/work/order/handle/index'), // 认证处置

+ 2 - 2
src/utils/request.js

@@ -6,9 +6,9 @@ import qs from 'qs'
 import router from '@/router'
 
 // 创建axios实例
-export const IP = 'http://36.138.232.124:10085'
+export const IP ='http://192.168.2.233:10085' //'http://36.138.232.124:10085' 
 //export const IP = 'http://221.182.8.141:10085'
-export const NewIp = 'http://58.17.241.6:1212'
+export const NewIp = 'http://58.17.241.6:1212' //不用
 const service = axios.create({
   baseURL: IP,
   withCredentials: true, // 跨域请求时发送cookiesokies

+ 7 - 0
src/views/mis/mishomepage/index.vue

@@ -0,0 +1,7 @@
+<template>
+    <div>首页</div>
+</template>
+<script>
+</script>
+<style>
+</style>