Commit 277b8175 authored by jiaorz's avatar jiaorz

Merge branch 'base-modify'

parents a20a2160 19d03cb9
...@@ -160,3 +160,21 @@ export function getOne(id) { ...@@ -160,3 +160,21 @@ export function getOne(id) {
method: 'get', method: 'get',
}); });
} }
// 员工变更记录
export function findPositionChangeRecord(params) {
return fetch({
url: 'api/admin/postion/admin/findPositionChangeRecord',
method: 'get',
params: params
});
}
// 员工修改
export function updUserChange(params) {
return fetch({
url: 'api/admin/postion/admin/updUserChange',
method: 'post',
data: params
});
}
\ No newline at end of file
...@@ -555,12 +555,6 @@ export const asyncRouterMap = [{ ...@@ -555,12 +555,6 @@ export const asyncRouterMap = [{
component: _import('userManagement/imCustomerServiceManger/cusomterServiceList'), component: _import('userManagement/imCustomerServiceManger/cusomterServiceList'),
name: '客服列表', name: '客服列表',
authority: 'imCustomerServiceManger' authority: 'imCustomerServiceManger'
},
{
path: 'employeesInput',
component: _import('userManagement/employeesInput'),
name: '员工录入',
authority: 'employeesInput'
} }
] ]
}, },
...@@ -794,5 +788,20 @@ export const asyncRouterMap = [{ ...@@ -794,5 +788,20 @@ export const asyncRouterMap = [{
authority: 'vehicleStatistics' authority: 'vehicleStatistics'
} }
] ]
},
{
path: '/interior',
component: Layout,
name: '内部人员管理',
icon: 'setting',
authority: 'interior',
children: [
{
path: 'employeesInput',
component: _import('interior/employeesInput'),
name: '员工录入',
authority: 'employeesInput'
}
]
} }
]; ];
...@@ -260,8 +260,6 @@ export default { ...@@ -260,8 +260,6 @@ export default {
* 操作-编辑 * 操作-编辑
* */ * */
handleUpdate(row) { handleUpdate(row) {
console.log(objDeepCopy);
this.modalTitle = '编辑' this.modalTitle = '编辑'
this.form = objDeepCopy(row) this.form = objDeepCopy(row)
this.bannerDialogVisible = true this.bannerDialogVisible = true
......
...@@ -7,6 +7,9 @@ ...@@ -7,6 +7,9 @@
<el-form-item label="手机号"> <el-form-item label="手机号">
<el-input v-model="listQuery.phone" placeholder="请输入手机号" clearable style="width:200px"></el-input> <el-input v-model="listQuery.phone" placeholder="请输入手机号" clearable style="width:200px"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="上级手机号">
<el-input v-model="listQuery.parentPhone" placeholder="请输入上级手机号" clearable style="width:200px"></el-input>
</el-form-item>
<el-button type="primary" @click="search">搜索</el-button> <el-button type="primary" @click="search">搜索</el-button>
<el-button type="primary" @click="clearSearch">清空搜索</el-button> <el-button type="primary" @click="clearSearch">清空搜索</el-button>
...@@ -27,6 +30,9 @@ ...@@ -27,6 +30,9 @@
</el-table-column> </el-table-column>
<el-table-column prop="userName" label="姓名" align="center"></el-table-column> <el-table-column prop="userName" label="姓名" align="center"></el-table-column>
<el-table-column prop="phone" label="电话" align="center"></el-table-column> <el-table-column prop="phone" label="电话" align="center"></el-table-column>
<el-table-column prop="positionName" label="身份" align="center"></el-table-column>
<el-table-column prop="parentName" label="上级姓名" align="center"></el-table-column>
<el-table-column prop="parentPhone" label="上级电话" align="center"></el-table-column>
<el-table-column prop="ticketNum" label="人数" align="center"></el-table-column> <el-table-column prop="ticketNum" label="人数" align="center"></el-table-column>
<el-table-column prop="crtTime" label="报名时间" align="center"></el-table-column> <el-table-column prop="crtTime" label="报名时间" align="center"></el-table-column>
</el-table> </el-table>
...@@ -62,7 +68,8 @@ export default { ...@@ -62,7 +68,8 @@ export default {
startTime: null, startTime: null,
endTime: null, endTime: null,
phone: null, phone: null,
activityId: 2 activityId: 2,
parentPhone:null
} }
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment