Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center-ui
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center-ui
Commits
8838d5e6
Commit
8838d5e6
authored
Jun 01, 2020
by
董有沛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
漏洞修改
parent
0897f175
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
8 deletions
+14
-8
src/api/school-center/PartnerManagementAPI.js
+8
-2
src/views/school-center/bill/billRecord.vue
+1
-2
src/views/school-center/userManager/PartnerManagement.vue
+0
-0
src/views/school-center/userManager/schoolAllocation.vue
+5
-4
No files found.
src/api/school-center/PartnerManagementAPI.js
View file @
8838d5e6
import
{
postAction
,
getAotion
}
from
'@/api/manage'
import
{
postAction
,
downFilePost
}
from
'@/api/manage'
const
prefix
=
'/manager/ciop'
;
const
prefix
=
'/manager/ciop'
;
// 获取活动列表
// 获取活动列表
...
@@ -23,6 +23,12 @@ let getSchoolList = (params) => postAction(prefix + "/school/schoolManagement/sc
...
@@ -23,6 +23,12 @@ let getSchoolList = (params) => postAction(prefix + "/school/schoolManagement/sc
// 获取学子公司职位下级成员列表
// 获取学子公司职位下级成员列表
let
getXzUserList
=
(
params
)
=>
postAction
(
prefix
+
"/school/partner/getXzUserList"
,
params
);
let
getXzUserList
=
(
params
)
=>
postAction
(
prefix
+
"/school/partner/getXzUserList"
,
params
);
// 获取角色清单
let
getRoleList
=
(
params
)
=>
postAction
(
prefix
+
"/school/partner/roleList"
,
params
);
// 导出用户清单
let
exportUserList
=
(
params
)
=>
downFilePost
(
prefix
+
"/school/partner/exportUserList"
,
params
);
export
{
export
{
findByList
,
modify
,
getlistysm
,
addPartner
,
getSubstList
,
getSchoolList
,
getXzUserList
findByList
,
modify
,
getlistysm
,
addPartner
,
getSubstList
,
getSchoolList
,
getXzUserList
,
getRoleList
,
exportUserList
}
}
src/views/school-center/bill/billRecord.vue
View file @
8838d5e6
...
@@ -25,8 +25,7 @@
...
@@ -25,8 +25,7 @@
<a-col
:md=
"6"
:sm=
"12"
>
<a-col
:md=
"6"
:sm=
"12"
>
<a-form-item
:labelCol=
"
{span: 6}" :wrapperCol="{span: 8, offset: 1}" label="学校名称">
<a-form-item
:labelCol=
"
{span: 6}" :wrapperCol="{span: 8, offset: 1}" label="学校名称">
<a-select
showSearch
placeholder=
"请选择"
v-model=
"queryParam.schoolName"
:value=
"schoolSelect"
:filterOption=
"filterOption"
<a-select
showSearch
placeholder=
"请选择"
v-model=
"queryParam.schoolName"
>
:allowClear=
"allowStatus"
>
<a-select-option
key=
""
>
请选择
</a-select-option>
<a-select-option
key=
""
>
请选择
</a-select-option>
<a-select-option
v-for=
"data in schoolList"
:key=
"data.school_name"
:value=
"data.school_name"
>
<a-select-option
v-for=
"data in schoolList"
:key=
"data.school_name"
:value=
"data.school_name"
>
</a-select-option>
</a-select-option>
...
...
src/views/school-center/userManager/PartnerManagement.vue
View file @
8838d5e6
This diff is collapsed.
Click to expand it.
src/views/school-center/userManager/schoolAllocation.vue
View file @
8838d5e6
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
</a-col>
</a-col>
<span
class=
"table-page-search-submitButtons"
style=
"float: left; overflow: hidden;"
>
<span
class=
"table-page-search-submitButtons"
style=
"float: left; overflow: hidden;"
>
<a-col
:md=
"6"
:sm=
"24"
>
<a-col
:md=
"6"
:sm=
"24"
>
<a-button
@
click=
"search()"
type=
"primary"
>
查询
1
</a-button>
<a-button
@
click=
"search()"
type=
"primary"
>
查询
</a-button>
<a-button
@
click=
"openAllocation()"
style=
"margin-left: 8px"
icon=
"plus"
type=
"primary"
>
新增
</a-button>
<a-button
@
click=
"openAllocation()"
style=
"margin-left: 8px"
icon=
"plus"
type=
"primary"
>
新增
</a-button>
</a-col>
</a-col>
</span>
</span>
...
@@ -187,7 +187,7 @@
...
@@ -187,7 +187,7 @@
this
.
$refs
.
table
.
refresh
({
search
:
true
})
this
.
$refs
.
table
.
refresh
({
search
:
true
})
},
},
openAllocation
()
{
openAllocation
()
{
this
.
titleName
=
"添加学校
2323
分配"
;
this
.
titleName
=
"添加学校分配"
;
this
.
modifyvisible
=
true
;
this
.
modifyvisible
=
true
;
},
},
//提交表单
//提交表单
...
@@ -225,9 +225,10 @@
...
@@ -225,9 +225,10 @@
this
.
$message
.
success
(
res
.
data
?
res
.
data
:
'删除成功!'
,
5
);
this
.
$message
.
success
(
res
.
data
?
res
.
data
:
'删除成功!'
,
5
);
this
.
search
();
this
.
search
();
this
.
modifyvisible
=
false
;
this
.
modifyvisible
=
false
;
return
null
;
}
else
{
this
.
$message
.
error
(
res
.
data
?
res
.
data
:
'删除失败!'
,
5
);
}
}
this
.
$message
.
error
(
res
.
data
?
res
.
data
:
'删除失败!'
,
5
);
})
})
},
},
changeSubst
(){
changeSubst
(){
...
...
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