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
bdd7c623
Commit
bdd7c623
authored
Mar 17, 2021
by
陈浩建
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
网点管理模块、批量导入导出
parent
9c841840
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
9 deletions
+25
-9
src/api/school-center/networkPlace/networkPlaceAPI.js
+25
-0
src/views/school-center/network-place/networkPlace.vue
+0
-0
src/views/school-center/userManager/PartnerManagement.vue
+0
-9
No files found.
src/api/school-center/networkPlace/networkPlaceAPI.js
0 → 100644
View file @
bdd7c623
import
{
postAction
,
downFilePost
}
from
'@/api/manage'
const
prefix
=
'/manager/ciop/'
;
//报表
let
reportList
=
(
params
)
=>
postAction
(
prefix
+
"networkPlace/list"
,
params
);
let
reportDownload
=
(
params
)
=>
downFilePost
(
prefix
+
"networkPlace/reportDownload"
,
params
);
let
excelMBOut
=
(
params
)
=>
downFilePost
(
prefix
+
"networkPlace/excelMBOut"
,
params
);
// 编辑
let
modifyData
=
(
params
)
=>
postAction
(
prefix
+
"networkPlace/updateData"
,
params
);
//新增
let
insertData
=
(
params
)
=>
postAction
(
prefix
+
"networkPlace/insertData"
,
params
);
//删除
let
deleteId
=
(
params
)
=>
postAction
(
prefix
+
"networkPlace/deleteId"
,
params
);
export
{
excelMBOut
,
reportList
,
reportDownload
,
modifyData
,
insertData
,
deleteId
}
src/views/school-center/network-place/networkPlace.vue
0 → 100644
View file @
bdd7c623
This diff is collapsed.
Click to expand it.
src/views/school-center/userManager/PartnerManagement.vue
View file @
bdd7c623
...
...
@@ -454,7 +454,6 @@
},
watch
:
{
treeModelValue
(
data
)
{
console
.
log
(
data
);
}
},
methods
:{
...
...
@@ -476,7 +475,6 @@
grade
:
data
.
grade
,
ysm
:
data
.
ysm
,
})
console
.
log
(
data
.
schools
);
if
(
data
.
schools
==
undefined
)
{
this
.
treeModelValue
=
[];
}
else
{
...
...
@@ -511,8 +509,6 @@
this
.
modifyForm
.
password
=
values
.
password
const
subNames
=
[];
const
schools
=
[];
console
.
log
(
this
.
treeModelValue
);
console
.
log
(
this
.
subNames
);
out
:
for
(
let
i
=
0
;
i
<
this
.
treeModelValue
.
length
;
++
i
)
{
for
(
let
j
=
0
;
j
<
this
.
subNames
.
length
;
++
j
)
{
if
(
this
.
treeModelValue
[
i
]
==
this
.
subNames
[
j
].
value
)
{
...
...
@@ -522,8 +518,6 @@
}
schools
.
push
(
this
.
treeModelValue
[
i
]);
}
console
.
log
(
this
.
modifyForm
);
console
.
log
(
this
.
xzUserList
);
if
(
this
.
modifyForm
.
parentId
==
undefined
){
this
.
modifyForm
.
parentId
=
''
this
.
modifyForm
.
parentIds
=
''
...
...
@@ -852,7 +846,6 @@
changeDongjie
(
event
,
id
){
if
(
event
){
unlockUser
({
userId
:
id
}).
then
(
res
=>
{
console
.
log
(
res
);
if
(
res
.
state
==
'success'
){
notification
.
success
({
message
:
'系统提示'
,
description
:
'解冻成功'
})
}
else
{
...
...
@@ -861,7 +854,6 @@
});
}
else
{
lockUser
({
userId
:
id
}).
then
(
res
=>
{
console
.
log
(
res
);
if
(
res
.
state
==
'success'
){
notification
.
success
({
message
:
'系统提示'
,
description
:
'冻结成功'
})
}
else
{
...
...
@@ -935,7 +927,6 @@
});
})
this
.
treeData
[
i
].
children
=
temp
;
console
.
log
(
this
.
treeData
);
}
})
}
...
...
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