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
281e47bd
Commit
281e47bd
authored
May 11, 2020
by
董有沛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
销售订单修改
parent
a009a81a
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
14 deletions
+21
-14
src/api/manage.js
+1
-1
src/api/school-center/PartnerManagementAPI.js
+1
-1
src/api/school-center/activityAPI.js
+5
-2
src/views/school-center/PartnerManagement/PartnerManagement.vue
+5
-5
src/views/school-center/activity/activity.vue
+0
-0
src/views/school-center/management/schoolmanagement.vue
+4
-0
src/views/school-center/order/order.vue
+5
-5
src/views/school-center/orderView/orderView.vue
+0
-0
No files found.
src/api/manage.js
View file @
281e47bd
...
@@ -2,7 +2,7 @@ import { axios } from '@/utils/request'
...
@@ -2,7 +2,7 @@ import { axios } from '@/utils/request'
const
api
=
{
const
api
=
{
user
:
'/api/user'
,
user
:
'/api/user'
,
role
:
'/api/role'
,
role
:
'/api/role'
,
downFilePost
,
service
:
'/api/service'
,
service
:
'/api/service'
,
permission
:
'/api/permission'
,
permission
:
'/api/permission'
,
permissionNoPager
:
'/api/permission/no-pager'
permissionNoPager
:
'/api/permission/no-pager'
...
...
src/api/school-center/PartnerManagementAPI.js
View file @
281e47bd
...
@@ -17,7 +17,7 @@ let addPartner = (params) => postAction(prefix + "/school/partner/addPartner" ,
...
@@ -17,7 +17,7 @@ let addPartner = (params) => postAction(prefix + "/school/partner/addPartner" ,
// 获取县分下拉列表
// 获取县分下拉列表
let
getSubstList
=
(
params
)
=>
postAction
(
prefix
+
"/school/schoolManagement/substList"
,
params
);
let
getSubstList
=
(
params
)
=>
postAction
(
prefix
+
"/school/schoolManagement/substList"
,
params
);
// 获取
县分
下拉列表
// 获取
学校
下拉列表
let
getSchoolList
=
(
params
)
=>
postAction
(
prefix
+
"/school/schoolManagement/schoolList"
,
params
);
let
getSchoolList
=
(
params
)
=>
postAction
(
prefix
+
"/school/schoolManagement/schoolList"
,
params
);
// 获取学子公司职位下级成员列表
// 获取学子公司职位下级成员列表
...
...
src/api/school-center/activityAPI.js
View file @
281e47bd
...
@@ -10,10 +10,13 @@ let addActivity = (params) => postAction(prefix + "/activity/addActivity" , para
...
@@ -10,10 +10,13 @@ let addActivity = (params) => postAction(prefix + "/activity/addActivity" , para
// 编辑
// 编辑
let
updateActivity
=
(
params
)
=>
postAction
(
prefix
+
"/activity/updateActivity"
,
params
);
let
updateActivity
=
(
params
)
=>
postAction
(
prefix
+
"/activity/updateActivity"
,
params
);
//
新增
//
删除
let
deleteActivity
=
(
params
)
=>
postAction
(
prefix
+
"/activity/deleteActivity"
,
params
);
let
deleteActivity
=
(
params
)
=>
postAction
(
prefix
+
"/activity/deleteActivity"
,
params
);
// 上传图片
let
uploadImg
=
(
params
)
=>
postAction
(
prefix
+
"/activity/uploadImg"
,
params
);
export
{
export
{
getList
,
addActivity
,
updateActivity
,
deleteActivity
getList
,
addActivity
,
updateActivity
,
deleteActivity
,
uploadImg
}
}
src/views/school-center/PartnerManagement/PartnerManagement.vue
View file @
281e47bd
...
@@ -486,8 +486,8 @@
...
@@ -486,8 +486,8 @@
this
.
$message
.
error
(
'身份证不合法'
,
5
);
this
.
$message
.
error
(
'身份证不合法'
,
5
);
return
null
;
return
null
;
}
}
if
(
this
.
addForm
.
password
.
length
!
=
8
){
if
(
this
.
addForm
.
password
.
length
<
=
8
){
this
.
$message
.
error
(
'密码长度
不对
'
,
5
);
this
.
$message
.
error
(
'密码长度
必须大于8
'
,
5
);
return
null
;
return
null
;
}
}
if
(
this
.
addForm
.
password
!=
this
.
addForm
.
repassword
){
if
(
this
.
addForm
.
password
!=
this
.
addForm
.
repassword
){
...
@@ -611,9 +611,9 @@
...
@@ -611,9 +611,9 @@
changeSubst
(
type
){
changeSubst
(
type
){
let
schoolParams
=
{};
let
schoolParams
=
{};
if
(
type
==
1
){
if
(
type
==
1
){
schoolParams
.
subName
=
this
.
addForm
.
subName
;
schoolParams
.
sub
st
Name
=
this
.
addForm
.
subName
;
}
else
{
}
else
{
schoolParams
.
subName
=
this
.
modifyForm
.
subName
;
schoolParams
.
sub
st
Name
=
this
.
modifyForm
.
subName
;
}
}
this
.
schoolList
=
[];
this
.
schoolList
=
[];
...
@@ -627,7 +627,7 @@
...
@@ -627,7 +627,7 @@
},
},
changeSchool
(
schoolId
){
changeSchool
(
schoolId
){
let
schoolParams
=
{};
let
schoolParams
=
{};
schoolParams
.
subName
=
this
.
modifyForm
.
subName
;
schoolParams
.
sub
st
Name
=
this
.
modifyForm
.
subName
;
this
.
schoolList
=
[];
this
.
schoolList
=
[];
getSchoolList
(
schoolParams
).
then
(
res
=>
{
getSchoolList
(
schoolParams
).
then
(
res
=>
{
...
...
src/views/school-center/activity/activity.vue
View file @
281e47bd
This diff is collapsed.
Click to expand it.
src/views/school-center/management/schoolmanagement.vue
View file @
281e47bd
...
@@ -363,6 +363,8 @@
...
@@ -363,6 +363,8 @@
netPhone
:
"0"
,
netPhone
:
"0"
,
isShowrh
:
"0"
,
isShowrh
:
"0"
,
isRecv
:
"0"
,
isRecv
:
"0"
,
networkCode
:
''
,
networkName
:
''
,
})
})
},
0
)
},
0
)
this
.
modifyvisible
=
true
;
this
.
modifyvisible
=
true
;
...
@@ -415,6 +417,8 @@
...
@@ -415,6 +417,8 @@
netPhone
:
new
String
(
data
.
netPhone
).
toString
(),
netPhone
:
new
String
(
data
.
netPhone
).
toString
(),
isShowrh
:
isShowrh
,
isShowrh
:
isShowrh
,
isRecv
:
new
String
(
data
.
isRecv
).
toString
(),
isRecv
:
new
String
(
data
.
isRecv
).
toString
(),
networkName
:
data
.
networkName
,
networkCode
:
data
.
networkCode
})
})
},
0
)
},
0
)
this
.
customimg
=
"./img/custom"
+
data
.
serviceQrcode
this
.
customimg
=
"./img/custom"
+
data
.
serviceQrcode
...
...
src/views/school-center/order/order.vue
View file @
281e47bd
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<a-row
:gutter=
"24"
>
<a-row
:gutter=
"24"
>
<a-col
:md=
"6"
:sm=
"12"
>
<a-col
:md=
"6"
:sm=
"12"
>
<a-form-item
label=
"时间选择:"
>
<a-form-item
label=
"时间选择:"
>
<a-range-picker
@
change=
"onChange"
/>
<a-range-picker
@
change=
"onChange"
format=
"YYYY-MM"
/>
</a-form-item>
</a-form-item>
</a-col>
</a-col>
<a-col
:md=
"4"
:sm=
"12"
>
<a-col
:md=
"4"
:sm=
"12"
>
...
@@ -766,11 +766,11 @@ export default {
...
@@ -766,11 +766,11 @@ export default {
//时间事件
//时间事件
onChange
(
date
,
dateString
)
{
onChange
(
date
,
dateString
)
{
if
(
dateString
.
length
==
0
)
{
if
(
dateString
.
length
==
0
)
{
this
.
queryParam
.
startTime
=
""
;
this
.
queryParam
.
createTimeStart
=
""
;
this
.
queryParam
.
endTime
=
""
;
this
.
queryParam
.
createTimeEnd
=
""
;
}
else
{
}
else
{
this
.
queryParam
.
startTime
=
dateString
[
0
];
this
.
queryParam
.
createTimeStart
=
dateString
[
0
];
this
.
queryParam
.
endTime
=
dateString
[
1
];
this
.
queryParam
.
createTimeEnd
=
dateString
[
1
];
}
}
},
},
handleSubmit
()
{
handleSubmit
()
{
...
...
src/views/school-center/orderView/orderView.vue
View file @
281e47bd
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