diff --git a/src/api/manage/group.js b/src/api/manage/group.js
deleted file mode 100644
index 03d3e92..0000000
--- a/src/api/manage/group.js
+++ /dev/null
@@ -1,98 +0,0 @@
-import request from '@/router/axios';
-/**获取集团列表 */
-export const getList =
- (current, size, params) => {
- return request({
- url: '/api/jobslink-api/tenant/companysGroup/list',
- method: 'get',
- params: {
- ...params,
- current,
- size,
- }
- })
- }
-
-/**添加集团 */
-export const addCompanysGroup = (groupName) => {
- return request({
- url: '/api/jobslink-api/tenant/companysGroup/save',
- method: 'post',
- data: {
- groupName
- }
- })
-}
-
-/**修改集团信息 */
-export const editGroup = (id,groupName) => {
- return request({
- url: '/api/jobslink-api/tenant/companysGroup/update',
- method: 'post',
- data: {
- id, groupName
- }
- })
-}
-
-/**获取所有企业列表 */
-export const getAllCompanysList =
- (current, size, params,platformId) => {
- return request({
- url: '/api/jobslink-api/tenant/companysGroup/company/search',
- method: 'get',
- params: {
- ...params,
- current,
- size,
- platformId
- }
- })
- }
-
-/**获取集团下所属企业列表 */
-export const getCompanysList = (current, size, params, platformId) => {
- return request({
- url: '/api/jobslink-api/tenant/companysGroup/companys/list',
- method: 'get',
- params: {
- ...params,
- current,
- size,
- platformId
- }
- })
-}
-
-/**集团添加下属企业--添加关联关系 */
-export const addCompanies=(companyIds,platformId,groupName)=>{
- return request({
- url:'/api/jobslink-api/tenant/companysGroup/companys/add',
- method:'get',
- params:{
- companyIds,platformId,groupName
- }
- })
-}
-/**去除关联关系 */
-export const removeRelations=(companyIds,platformId)=>{
- return request({
- url:'/api/jobslink-api/tenant/companysGroup/companys/remove',
- method:'get',
- params:{
- companyIds,platformId
- }
- })
-}
-
-
-/**将企业设置为集团的主ID */
-export const setGroupMainId=(id,companyId)=>{
- return request({
- url:'/api/jobslink-api/tenant/companysGroup/companys/setMainId',
- method:'get',
- params:{
- id,companyId
- }
- })
-}
diff --git a/src/views/manage/group/Dialog/addCompany.vue b/src/views/manage/group/Dialog/addCompany.vue
deleted file mode 100644
index 2b37b94..0000000
--- a/src/views/manage/group/Dialog/addCompany.vue
+++ /dev/null
@@ -1,253 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- 搜 索
- 清 空
-
-
-
-
-
-
- {{ cityId(row.cityId)[0] }}/{{ cityId(row.cityId)[1] }}/{{
- cityId(row.cityId)[2]
- }}
-
-
-
- 批量添加
-
-
-
-
- 添加
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/manage/group/Dialog/addGroup.vue b/src/views/manage/group/Dialog/addGroup.vue
deleted file mode 100644
index 934fd8c..0000000
--- a/src/views/manage/group/Dialog/addGroup.vue
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/manage/group/Dialog/cmpList.vue b/src/views/manage/group/Dialog/cmpList.vue
deleted file mode 100644
index f2b1e18..0000000
--- a/src/views/manage/group/Dialog/cmpList.vue
+++ /dev/null
@@ -1,277 +0,0 @@
-
-
-
-
-
-
-
- 主ID
-
- 副ID
-
-
-
- 添加企业
-
-
-
-
- 设为主ID
-
-
- 移除
-
-
-
- {{ cityId(row.cityId)[0] }}/{{ cityId(row.cityId)[1] }}/{{
- cityId(row.cityId)[2]
- }}
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/manage/group/groupList.vue b/src/views/manage/group/groupList.vue
deleted file mode 100644
index 4f407d5..0000000
--- a/src/views/manage/group/groupList.vue
+++ /dev/null
@@ -1,168 +0,0 @@
-
-
-
-
-
- 添加集团
-
-
-
-
- 添加企业
-
-
-
- {{
- row.platformUrl
- }}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/views/report/main/innovation.vue b/src/views/report/main/innovation.vue
index bb515b0..2a3b19b 100644
--- a/src/views/report/main/innovation.vue
+++ b/src/views/report/main/innovation.vue
@@ -21,12 +21,11 @@ import CustomLoading from "@/components/Custom-Loading/index.vue";
import { dateFormat } from "@/util/date";
import { deepClone } from "@/util/util";
const columnEnum = {
- "data1": "推送总人数",
- "data2": "推送服务中总人数",
- "data3": "推送任务总数",
- "data4": "推送岗位总数",
- "data5": "跟踪服务总次数",
- "data6": "服务成功次数"
+ "data1": "服务总人数",
+ "data2": "推送政策总人次",
+ "data3": "推送岗位总人次",
+ "data4": "跟踪服务总次数",
+ "data5": "服务成功总次数"
}
const pages = { total: 0, size: 10, currentPage: 1 }
const baseOptions = {
diff --git a/src/views/report/main/unemployment.vue b/src/views/report/main/unemployment.vue
index 8532335..5d9810e 100644
--- a/src/views/report/main/unemployment.vue
+++ b/src/views/report/main/unemployment.vue
@@ -22,12 +22,11 @@ import { dateFormat } from "@/util/date";
import search from "@/page/index/search.vue";
import {deepClone} from "@/util/util";
const columnEnum = {
- "data1": "推送总人数",
- "data2": "推送服务中总人数",
- "data3": "推送任务总数",
- "data4": "推送岗位总数",
- "data5": "跟踪服务总次数",
- "data6": "服务成功次数"
+ "data1": "服务总人数",
+ "data2": "推送政策总人次",
+ "data3": "推送岗位总人次",
+ "data4": "跟踪服务总次数",
+ "data5": "服务成功总次数"
}
const pages = { total: 0, size: 10, currentPage: 1 }
const baseOptions = {
diff --git a/src/views/report/main/vocational.vue b/src/views/report/main/vocational.vue
index 2af2c31..ae1e357 100644
--- a/src/views/report/main/vocational.vue
+++ b/src/views/report/main/vocational.vue
@@ -22,12 +22,11 @@ import { dateFormat } from "@/util/date";
import search from "@/page/index/search.vue";
import {deepClone} from "@/util/util";
const columnEnum = {
- "data1": "推送总人数",
- "data2": "推送服务中总人数",
- "data3": "推送任务总数",
- "data4": "推送岗位总数",
- "data5": "跟踪服务总次数",
- "data6": "服务成功次数"
+ "data1": "服务总人数",
+ "data2": "推送政策总人次",
+ "data3": "推送岗位总人次",
+ "data4": "跟踪服务总次数",
+ "data5": "服务成功总次数"
}
const pages = { total: 0, size: 10, currentPage: 1 }
const baseOptions = {
diff --git a/src/views/report/main/vocationalTraining.vue b/src/views/report/main/vocationalTraining.vue
index 49929d3..3404fd2 100644
--- a/src/views/report/main/vocationalTraining.vue
+++ b/src/views/report/main/vocationalTraining.vue
@@ -22,12 +22,11 @@ import { dateFormat } from "@/util/date";
import search from "@/page/index/search.vue";
import {deepClone} from "@/util/util";
const columnEnum = {
- "data1": "推送总人数",
- "data2": "推送服务中总人数",
- "data3": "推送任务总数",
- "data4": "推送岗位总数",
- "data5": "跟踪服务总次数",
- "data6": "服务成功次数"
+ "data1": "服务总人数",
+ "data2": "推送政策总人次",
+ "data3": "推送岗位总人次",
+ "data4": "跟踪服务总次数",
+ "data5": "服务成功总次数"
}
const pages = { total: 0, size: 10, currentPage: 1 }
const baseOptions = {
diff --git a/src/views/report/postInfo.vue b/src/views/report/postInfo.vue
index 50da404..5b0cf61 100644
--- a/src/views/report/postInfo.vue
+++ b/src/views/report/postInfo.vue
@@ -61,7 +61,7 @@ export default {
search:true,
},
{
- label: '发布岗位数',
+ label: '发布岗位总数',
prop: 'data1',
},
{
diff --git a/vue.config.js b/vue.config.js
index daacde0..90ff354 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -23,7 +23,7 @@ module.exports = {
port: 1888,
proxy: {
"/api": {
- target: 'http://10.165.0.173:8000',
+ target: 'http://localhost:8000',
ws: true,
changeOrigin: true,
pathRewrite: {