flat: 权限
This commit is contained in:
@@ -49,11 +49,11 @@ export const detail =
|
|||||||
|
|
||||||
/*获取分组*/
|
/*获取分组*/
|
||||||
export const getDept =
|
export const getDept =
|
||||||
() => {
|
(params = {}) => {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/jobslink-api/tenant/talents/group/listAll',
|
url: '/api/jobslink-api/tenant/talents/group/listAll',
|
||||||
method: 'get',
|
method: 'get',
|
||||||
params: {}
|
params
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
size="mini" @click="() => updateGroups('edit', data)">
|
size="mini" @click="() => updateGroups('edit', data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-delete"
|
<el-button icon="el-icon-delete"
|
||||||
v-if="vaildData(permission.tenant_main_label_index_delete, false)"
|
v-if="vaildData(permission.tenant_main_label_index_groupdelete, false)"
|
||||||
type="text" size="mini" @click="() => removeGroups(data)">
|
type="text" size="mini" @click="() => removeGroups(data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
@@ -43,6 +43,7 @@
|
|||||||
<el-button
|
<el-button
|
||||||
type="text"
|
type="text"
|
||||||
icon="el-icon-plus"
|
icon="el-icon-plus"
|
||||||
|
v-if="vaildData(permission.tenant_main_label_index_groupadd, false)"
|
||||||
@click="updateGroups('add')">
|
@click="updateGroups('add')">
|
||||||
新建分组</el-button>
|
新建分组</el-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -251,14 +252,8 @@ export default {
|
|||||||
return {
|
return {
|
||||||
addBtn: this.vaildData(this.permission.tenant_main_label_index_add, false),
|
addBtn: this.vaildData(this.permission.tenant_main_label_index_add, false),
|
||||||
viewBtn: true,
|
viewBtn: true,
|
||||||
delBtn: this.vaildData(
|
delBtn: this.vaildData(this.permission.tenant_main_label_index_del, false),
|
||||||
this.permission.tenant_main_label_index_edit,
|
editBtn: this.vaildData(this.permission.tenant_main_label_index_edit, false),
|
||||||
false
|
|
||||||
),
|
|
||||||
editBtn: this.vaildData(
|
|
||||||
this.permission.tenant_main_label_index_edit,
|
|
||||||
false
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
ids() {
|
ids() {
|
||||||
|
|||||||
@@ -26,16 +26,20 @@
|
|||||||
</span>
|
</span>
|
||||||
<!-- </el-tooltip> -->
|
<!-- </el-tooltip> -->
|
||||||
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
||||||
<el-button type="text" icon="el-icon-edit" size="mini" @click="() => updateGroups('edit', data)">
|
<el-button type="text" icon="el-icon-edit" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_policy_index_groupedit, false)"
|
||||||
|
@click="() => updateGroups('edit', data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-delete" type="text" size="mini" @click="() => removeGroups(data)">
|
<el-button icon="el-icon-delete" type="text" size="mini" @click="() => removeGroups(data)"
|
||||||
|
v-if="vaildData(permission.tenant_main_policy_index_groupdel, false)">
|
||||||
</el-button>
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
||||||
<div class="footer" style="padding-left: 6px">
|
<div class="footer" style="padding-left: 6px">
|
||||||
<el-button type="text" icon="el-icon-plus" @click="updateGroups('add')">新建分组</el-button>
|
<el-button type="text" icon="el-icon-plus" v-if="vaildData(permission.tenant_main_policy_index_groupadd, false)"
|
||||||
|
@click="updateGroups('add')">新建分组</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
@@ -136,9 +140,9 @@
|
|||||||
<!-- <el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"-->
|
<!-- <el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"-->
|
||||||
<!-- v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>-->
|
<!-- v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>-->
|
||||||
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
||||||
@click="handleTransfer">转移分组</el-button>
|
@click="handleTransfer" v-show="vaildData(permission.tenant_main_policy_transfergroup, false)">转移分组</el-button>
|
||||||
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
||||||
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_talents_groupdelete, false)">
|
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_main_policy_index_del, false)">
|
||||||
删除</el-button>
|
删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template slot="name" slot-scope="{row}">
|
<template slot="name" slot-scope="{row}">
|
||||||
@@ -279,16 +283,10 @@ export default {
|
|||||||
...mapGetters(["permission"]),
|
...mapGetters(["permission"]),
|
||||||
permissionList() {
|
permissionList() {
|
||||||
return {
|
return {
|
||||||
addBtn: this.vaildData(this.permission.tenant_talents_groupadd, false),
|
addBtn: this.vaildData(this.permission.tenant_main_policy_index_add, false),
|
||||||
viewBtn: true,
|
viewBtn: true,
|
||||||
delBtn: this.vaildData(
|
delBtn: this.vaildData(this.permission.tenant_main_policy_index_del, false),
|
||||||
this.permission.tenant_talents_groupdelete,
|
editBtn: this.vaildData(this.permission.tenant_main_policy_index_edit, false),
|
||||||
false
|
|
||||||
),
|
|
||||||
editBtn: this.vaildData(
|
|
||||||
this.permission.tenant_talents_groupedit,
|
|
||||||
false
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
ids() {
|
ids() {
|
||||||
|
|||||||
@@ -20,15 +20,21 @@
|
|||||||
({{ data.sumNum }}个)
|
({{ data.sumNum }}个)
|
||||||
</span>
|
</span>
|
||||||
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
||||||
<el-button type="text" icon="el-icon-edit" size="mini" @click="() => updateGroups('edit', data)">
|
<el-button type="text" icon="el-icon-edit" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_serve_index_groupedit, false)"
|
||||||
|
@click="() => updateGroups('edit', data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-delete" type="text" size="mini" @click="() => removeGroups(data)">
|
<el-button icon="el-icon-delete" type="text" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_serve_index_groupdel, false)"
|
||||||
|
@click="() => removeGroups(data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
<div class="footer" style="padding-left: 6px">
|
<div class="footer" style="padding-left: 6px">
|
||||||
<el-button type="text" icon="el-icon-plus" @click="updateGroups('add')">新建分组</el-button>
|
<el-button type="text" icon="el-icon-plus"
|
||||||
|
v-if="vaildData(permission.tenant_main_serve_index_groupadd, false)"
|
||||||
|
@click="updateGroups('add')">新建分组</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
@@ -99,7 +105,8 @@
|
|||||||
</template>
|
</template>
|
||||||
<!--自定义按钮-->
|
<!--自定义按钮-->
|
||||||
<template slot="menuLeft">
|
<template slot="menuLeft">
|
||||||
<el-button type="primary" size="small" icon="el-icon-delete" @click="() => { $refs.crud.rowAdd(); selectPolicyTree = []}">
|
<el-button type="primary" size="small" icon="el-icon-delete" @click="() => { $refs.crud.rowAdd(); selectPolicyTree = []}"
|
||||||
|
v-if="vaildData(permission.tenant_main_serve_index_add, false)">
|
||||||
新增</el-button>
|
新增</el-button>
|
||||||
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
||||||
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_talents_groupdelete, false)">
|
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_talents_groupdelete, false)">
|
||||||
@@ -122,6 +129,7 @@
|
|||||||
<el-button type="text"
|
<el-button type="text"
|
||||||
icon="el-icon-document"
|
icon="el-icon-document"
|
||||||
size="small"
|
size="small"
|
||||||
|
v-show="vaildData(permission.tenant_main_serve_index_pushserve, false)"
|
||||||
@click="selectPushService(row)"
|
@click="selectPushService(row)"
|
||||||
>推送服务</el-button>
|
>推送服务</el-button>
|
||||||
<el-button type="text"
|
<el-button type="text"
|
||||||
@@ -133,12 +141,14 @@
|
|||||||
v-if="row.status == 0"
|
v-if="row.status == 0"
|
||||||
icon="el-icon-video-play"
|
icon="el-icon-video-play"
|
||||||
size="small"
|
size="small"
|
||||||
|
v-show="vaildData(permission.tenant_main_serve_index_off, false)"
|
||||||
@click="playServe(row)"
|
@click="playServe(row)"
|
||||||
>启用</el-button>
|
>启用</el-button>
|
||||||
<el-button type="text"
|
<el-button type="text"
|
||||||
v-if="row.status == 1"
|
v-if="row.status == 1"
|
||||||
icon="el-icon-video-pause"
|
icon="el-icon-video-pause"
|
||||||
size="small"
|
size="small"
|
||||||
|
v-show="vaildData(permission.tenant_main_serve_index_off, false)"
|
||||||
@click="pauseServe(row)"
|
@click="pauseServe(row)"
|
||||||
>关闭</el-button>
|
>关闭</el-button>
|
||||||
</template>
|
</template>
|
||||||
@@ -472,16 +482,10 @@ export default {
|
|||||||
...mapGetters(["permission"]),
|
...mapGetters(["permission"]),
|
||||||
permissionList() {
|
permissionList() {
|
||||||
return {
|
return {
|
||||||
addBtn: this.vaildData(this.permission.tenant_talents_groupadd, false),
|
addBtn: this.vaildData(this.permission.tenant_main_serve_index_add, false),
|
||||||
viewBtn: true,
|
viewBtn: true,
|
||||||
delBtn: this.vaildData(
|
delBtn: this.vaildData(this.permission.tenant_main_serve_index_del,false),
|
||||||
this.permission.tenant_talents_groupdelete,
|
editBtn: this.vaildData(this.permission.tenant_main_serve_index_edit, false ),
|
||||||
false
|
|
||||||
),
|
|
||||||
editBtn: this.vaildData(
|
|
||||||
this.permission.tenant_talents_groupedit,
|
|
||||||
false
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
ids() {
|
ids() {
|
||||||
|
|||||||
@@ -26,16 +26,22 @@
|
|||||||
</span>
|
</span>
|
||||||
<!-- </el-tooltip> -->
|
<!-- </el-tooltip> -->
|
||||||
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
||||||
<el-button type="text" icon="el-icon-edit" size="mini" @click="() => updateGroups('edit', data)">
|
<el-button type="text" icon="el-icon-edit" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_certain_index_groupedit, false)"
|
||||||
|
@click="() => updateGroups('edit', data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-delete" type="text" size="mini" @click="() => removeGroups(data)">
|
<el-button icon="el-icon-delete" type="text" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_certain_index_groupdelete, false)"
|
||||||
|
@click="() => removeGroups(data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
||||||
<div class="footer" style="padding-left: 6px">
|
<div class="footer" style="padding-left: 6px">
|
||||||
<el-button type="text" icon="el-icon-plus" @click="updateGroups('add')">新建分组</el-button>
|
<el-button type="text" icon="el-icon-plus"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_certain_index_groupadd, false)"
|
||||||
|
@click="updateGroups('add')">新建分组</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
@@ -94,9 +100,9 @@
|
|||||||
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
||||||
v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>
|
v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>
|
||||||
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
||||||
@click="handleTransfer">转移分组</el-button>
|
@click="handleTransfer" v-show="vaildData(permission.tenant_main_talents_certain_index_transfergroup, false)">转移分组</el-button>
|
||||||
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
||||||
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_talents_groupdelete, false)">
|
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_main_talents_certain_index_transfergroup, false)">
|
||||||
删除</el-button>
|
删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template slot="name" slot-scope="{row}">
|
<template slot="name" slot-scope="{row}">
|
||||||
@@ -203,17 +209,10 @@ export default {
|
|||||||
...mapGetters(["permission"]),
|
...mapGetters(["permission"]),
|
||||||
permissionList() {
|
permissionList() {
|
||||||
return {
|
return {
|
||||||
addBtn: this.vaildData(this.permission.tenant_talents_groupadd, false),
|
addBtn: this.vaildData(this.permission.tenant_main_talents_certain_index_add, false),
|
||||||
viewBtn: true,
|
viewBtn: true,
|
||||||
delBtn: this.vaildData(
|
delBtn: this.vaildData( this.permission.tenant_main_talents_certain_index_delete, false),
|
||||||
this.permission.tenant_talents_groupdelete,
|
editBtn: this.vaildData( this.permission.tenant_main_talents_certain_index_edit,false)};
|
||||||
false
|
|
||||||
),
|
|
||||||
editBtn: this.vaildData(
|
|
||||||
this.permission.tenant_talents_groupedit,
|
|
||||||
false
|
|
||||||
),
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
ids() {
|
ids() {
|
||||||
let ids = [];
|
let ids = [];
|
||||||
@@ -494,7 +493,7 @@ export default {
|
|||||||
},
|
},
|
||||||
/*加载分组*/
|
/*加载分组*/
|
||||||
initDept(groupId) {
|
initDept(groupId) {
|
||||||
getDept().then((res) => {
|
getDept({groupType: 1}).then((res) => {
|
||||||
const data = res.data.data.list;
|
const data = res.data.data.list;
|
||||||
this.treeData = data;
|
this.treeData = data;
|
||||||
let treeDataOne = {
|
let treeDataOne = {
|
||||||
@@ -894,11 +893,16 @@ export default {
|
|||||||
},
|
},
|
||||||
/*加载人才列表 */
|
/*加载人才列表 */
|
||||||
onLoad(page, params = {}) {
|
onLoad(page, params = {}) {
|
||||||
|
const paramsd = {
|
||||||
|
...params,
|
||||||
|
...this.query,
|
||||||
|
groupType: 0
|
||||||
|
}
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
getList(
|
getList(
|
||||||
page.currentPage,
|
page.currentPage,
|
||||||
page.pageSize,
|
page.pageSize,
|
||||||
Object.assign(params, this.query),
|
paramsd,
|
||||||
this.tenantId
|
this.tenantId
|
||||||
).then((res) => {
|
).then((res) => {
|
||||||
res.data.data.records.forEach(item => {
|
res.data.data.records.forEach(item => {
|
||||||
|
|||||||
@@ -26,16 +26,22 @@
|
|||||||
</span>
|
</span>
|
||||||
<!-- </el-tooltip> -->
|
<!-- </el-tooltip> -->
|
||||||
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
<span v-show="data.id && data.id !== '0'" style="flex-basis: 20%">
|
||||||
<el-button type="text" icon="el-icon-edit" size="mini" @click="() => updateGroups('edit', data)">
|
<el-button type="text" icon="el-icon-edit" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_latent_index_groupedit, false)"
|
||||||
|
@click="() => updateGroups('edit', data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button icon="el-icon-delete" type="text" size="mini" @click="() => removeGroups(data)">
|
<el-button icon="el-icon-delete" type="text" size="mini"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_latent_index_groupdelete, false)"
|
||||||
|
@click="() => removeGroups(data)">
|
||||||
</el-button>
|
</el-button>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</el-tree>
|
</el-tree>
|
||||||
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
<!-- v-show="vaildData(permission.tenant_wage_payroll_view, false)" -->
|
||||||
<div class="footer" style="padding-left: 6px">
|
<div class="footer" style="padding-left: 6px">
|
||||||
<el-button type="text" icon="el-icon-plus" @click="updateGroups('add')">新建分组</el-button>
|
<el-button type="text" icon="el-icon-plus"
|
||||||
|
v-if="vaildData(permission.tenant_main_talents_latent_index_groupadd, false)"
|
||||||
|
@click="updateGroups('add')">新建分组</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-scrollbar>
|
</el-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
@@ -94,9 +100,9 @@
|
|||||||
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
<el-button type="success" size="small" plain icon="el-icon-plus" @click="handleImport"
|
||||||
v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>
|
v-show="vaildData(permission.tenant_talents_groupadd, false)">导入</el-button>
|
||||||
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
<el-button type="warning" size="small" plain :disabled="!selectionList.length" icon="el-icon-sort"
|
||||||
@click="handleTransfer">转移分组</el-button>
|
@click="handleTransfer" v-show="vaildData(permission.tenant_main_talents_latent_index_tansfergroup, false)">转移分组</el-button>
|
||||||
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
<el-button type="danger" size="small" icon="el-icon-delete" @click="handleDelete"
|
||||||
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_talents_groupdelete, false)">
|
:disabled="!selectionList.length" plain v-show="vaildData(permission.tenant_main_talents_latent_index_tansfergroup, false)">
|
||||||
删除</el-button>
|
删除</el-button>
|
||||||
</template>
|
</template>
|
||||||
<template slot="name" slot-scope="{row}">
|
<template slot="name" slot-scope="{row}">
|
||||||
@@ -203,16 +209,10 @@ export default {
|
|||||||
...mapGetters(["permission"]),
|
...mapGetters(["permission"]),
|
||||||
permissionList() {
|
permissionList() {
|
||||||
return {
|
return {
|
||||||
addBtn: this.vaildData(this.permission.tenant_talents_groupadd, false),
|
addBtn: this.vaildData(this.permission.tenant_main_talents_latent_index_add, false),
|
||||||
viewBtn: true,
|
viewBtn: true,
|
||||||
delBtn: this.vaildData(
|
delBtn: this.vaildData( this.permission.tenant_main_talents_latent_index_del, false),
|
||||||
this.permission.tenant_talents_groupdelete,
|
editBtn: this.vaildData(this.permission.tenant_main_talents_latent_index_edit, false),
|
||||||
false
|
|
||||||
),
|
|
||||||
editBtn: this.vaildData(
|
|
||||||
this.permission.tenant_talents_groupedit,
|
|
||||||
false
|
|
||||||
),
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
ids() {
|
ids() {
|
||||||
@@ -494,7 +494,7 @@ export default {
|
|||||||
},
|
},
|
||||||
/*加载分组*/
|
/*加载分组*/
|
||||||
initDept(groupId) {
|
initDept(groupId) {
|
||||||
getDept().then((res) => {
|
getDept({groupType: 0}).then((res) => {
|
||||||
const data = res.data.data.list;
|
const data = res.data.data.list;
|
||||||
this.treeData = data;
|
this.treeData = data;
|
||||||
let treeDataOne = {
|
let treeDataOne = {
|
||||||
@@ -894,11 +894,16 @@ export default {
|
|||||||
},
|
},
|
||||||
/*加载人才列表 */
|
/*加载人才列表 */
|
||||||
onLoad(page, params = {}) {
|
onLoad(page, params = {}) {
|
||||||
|
const paramsd = {
|
||||||
|
...params,
|
||||||
|
...this.query,
|
||||||
|
groupType: 0
|
||||||
|
}
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
getList(
|
getList(
|
||||||
page.currentPage,
|
page.currentPage,
|
||||||
page.pageSize,
|
page.pageSize,
|
||||||
Object.assign(params, this.query),
|
paramsd,
|
||||||
this.tenantId
|
this.tenantId
|
||||||
).then((res) => {
|
).then((res) => {
|
||||||
res.data.data.records.forEach(item => {
|
res.data.data.records.forEach(item => {
|
||||||
|
|||||||
@@ -122,7 +122,7 @@
|
|||||||
<el-row>
|
<el-row>
|
||||||
<el-col span="12">
|
<el-col span="12">
|
||||||
<el-form-item label="企业名称:">{{
|
<el-form-item label="企业名称:">{{
|
||||||
model.companyName
|
model.jobCompanyName
|
||||||
}}</el-form-item>
|
}}</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col span="12">
|
<el-col span="12">
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ module.exports = {
|
|||||||
port: 1888,
|
port: 1888,
|
||||||
proxy: {
|
proxy: {
|
||||||
"/api": {
|
"/api": {
|
||||||
target: 'http://10.165.0.173:8000',
|
target: 'http://localhost:8000',
|
||||||
ws: true,
|
ws: true,
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: {
|
pathRewrite: {
|
||||||
|
|||||||
Reference in New Issue
Block a user