Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform-ui
Commits
277b8175
Commit
277b8175
authored
Dec 18, 2019
by
jiaorz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'base-modify'
parents
a20a2160
19d03cb9
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
951 additions
and
9 deletions
+951
-9
index.js
src/api/admin/userManagement/index.js
+18
-0
index.js
src/router/index.js
+15
-6
bannerSetting.vue
src/views/baseInfo/bannerSetting.vue
+0
-2
applyList.vue
src/views/conference/apply/applyList.vue
+8
-1
employeesInput.vue
src/views/interior/employeesInput.vue
+910
-0
No files found.
src/api/admin/userManagement/index.js
View file @
277b8175
...
...
@@ -160,3 +160,21 @@ export function getOne(id) {
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
src/router/index.js
View file @
277b8175
...
...
@@ -555,12 +555,6 @@ export const asyncRouterMap = [{
component
:
_import
(
'userManagement/imCustomerServiceManger/cusomterServiceList'
),
name
:
'客服列表'
,
authority
:
'imCustomerServiceManger'
},
{
path
:
'employeesInput'
,
component
:
_import
(
'userManagement/employeesInput'
),
name
:
'员工录入'
,
authority
:
'employeesInput'
}
]
},
...
...
@@ -794,5 +788,20 @@ export const asyncRouterMap = [{
authority
:
'vehicleStatistics'
}
]
},
{
path
:
'/interior'
,
component
:
Layout
,
name
:
'内部人员管理'
,
icon
:
'setting'
,
authority
:
'interior'
,
children
:
[
{
path
:
'employeesInput'
,
component
:
_import
(
'interior/employeesInput'
),
name
:
'员工录入'
,
authority
:
'employeesInput'
}
]
}
];
src/views/baseInfo/bannerSetting.vue
View file @
277b8175
...
...
@@ -260,8 +260,6 @@ export default {
* 操作-编辑
* */
handleUpdate
(
row
)
{
console
.
log
(
objDeepCopy
);
this
.
modalTitle
=
'编辑'
this
.
form
=
objDeepCopy
(
row
)
this
.
bannerDialogVisible
=
true
...
...
src/views/conference/apply/applyList.vue
View file @
277b8175
...
...
@@ -7,6 +7,9 @@
<el-form-item
label=
"手机号"
>
<el-input
v-model=
"listQuery.phone"
placeholder=
"请输入手机号"
clearable
style=
"width:200px"
></el-input>
</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=
"clearSearch"
>
清空搜索
</el-button>
...
...
@@ -27,6 +30,9 @@
</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=
"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=
"crtTime"
label=
"报名时间"
align=
"center"
></el-table-column>
</el-table>
...
...
@@ -62,7 +68,8 @@ export default {
startTime
:
null
,
endTime
:
null
,
phone
:
null
,
activityId
:
2
activityId
:
2
,
parentPhone
:
null
}
}
},
...
...
src/views/
userManagement
/employeesInput.vue
→
src/views/
interior
/employeesInput.vue
View file @
277b8175
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment