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
23f02ffc
Commit
23f02ffc
authored
Mar 22, 2021
by
陈浩建
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
5G加装包PC端
parent
293b7c06
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
2 deletions
+48
-2
src/api/school-center/orderAPI.js
+3
-0
src/views/school-center/activity/activityRecord.vue
+12
-2
src/views/school-center/order/order.vue
+26
-0
src/views/school-center/schoolmanager/schoolmanagement.vue
+7
-0
No files found.
src/api/school-center/orderAPI.js
View file @
23f02ffc
...
...
@@ -19,6 +19,8 @@ let abnormal = (params) => postAction(prefix +"order/setAbnormal" , params);
let
downloadMoBan
=
(
params
)
=>
downFilePost
(
prefix
+
"order/downloadMoBan"
,
params
);
let
downloadMoBanKD
=
(
params
)
=>
downFilePost
(
prefix
+
"order/downloadMoBanKD"
,
params
);
let
downloadMoBanYZK
=
(
params
)
=>
downFilePost
(
prefix
+
"order/downloadMoBanYZK"
,
params
);
let
downloadMoBanPackageOrder
=
(
params
)
=>
downFilePost
(
prefix
+
"order/downloadMoBanPackageOrder"
,
params
);
let
editOrder
=
(
params
)
=>
postAction
(
prefix
+
"order/editOrder"
,
params
);
let
setUpgradeStatus
=
(
params
)
=>
postAction
(
prefix
+
"order/setUpgradeStatus"
,
params
);
let
setKuanDiData
=
(
params
)
=>
postAction
(
prefix
+
"order/setKuanDiData"
,
params
);
...
...
@@ -38,6 +40,7 @@ export {
downloadMoBan
,
downloadMoBanKD
,
downloadMoBanYZK
,
downloadMoBanPackageOrder
,
reportList
,
reviewStudentIdCard
,
reportDownload
,
...
...
src/views/school-center/activity/activityRecord.vue
View file @
23f02ffc
...
...
@@ -71,10 +71,15 @@
<span
v-if=
"text=='3'"
>
审核不通过
</span>
</
template
>
<
template
slot=
"operation"
slot-scope=
"text,record"
>
<a
@
click=
"
modifyf
unction(record)"
>
查看
</a>
<a
@
click=
"
checkF
unction(record)"
>
查看
</a>
</
template
>
</s-table>
<!--查看----弹框-->
<a-modal
title=
"查看"
:visible=
"checkVisible"
@
cancel=
"checkCancel"
width=
"840px"
>
</a-modal>
<!--编辑----弹框-->
<a-modal
:title=
"titleName"
:visible=
"modifyvisible"
@
ok=
"createfunctionOk"
@
cancel=
"createfunctionCancel"
html-type=
"submit"
width=
"840px"
>
<a-form
:form=
"Formtable"
>
...
...
@@ -140,6 +145,7 @@
creator
:
''
,
},
modifyvisible
:
false
,
checkVisible
:
false
,
columns
:
[
{
dataIndex
:
'title'
,
width
:
200
,
title
:
'活动标题'
,
align
:
"center"
},
{
dataIndex
:
'desc'
,
width
:
200
,
title
:
'活动详情'
,
align
:
"center"
},
...
...
@@ -214,8 +220,12 @@
search
()
{
this
.
$refs
.
table
.
refresh
({
search
:
true
})
},
modifyf
unction
(
data
){
checkF
unction
(
data
){
console
.
log
(
data
);
this
.
checkVisible
=
true
;
},
checkCancel
(){
this
.
checkVisible
=
false
;
},
//提交表单
createfunctionOk
(){
...
...
src/views/school-center/order/order.vue
View file @
23f02ffc
...
...
@@ -110,6 +110,11 @@
<a-input
placeholder=
"小白卡单号"
v-model=
"queryParam.xbOrderId"
></a-input>
</a-form-item>
</a-col>
<a-col
:md=
"4"
:sm=
"12"
style=
"height:35px"
>
<a-form-item
label=
"升级套餐:"
>
<a-input
placeholder=
"升级套餐"
v-model=
"queryParam.businessPackage"
></a-input>
</a-form-item>
</a-col>
<a-col
:md=
"8"
:sm=
"12"
style=
"float:right;height:35px"
>
<a-button
@
click=
"search()"
type=
"primary"
>
查询
</a-button>
<a-button
@
click=
"handleSubmit"
style=
"margin-left: 10px"
>
导出
</a-button>
...
...
@@ -118,6 +123,7 @@
<a-menu-item
key=
"1"
><a-icon
type=
"arrow-up"
/>
受理单
</a-menu-item>
<a-menu-item
key=
"2"
><a-icon
type=
"arrow-up"
/>
快递
</a-menu-item>
<a-menu-item
key=
"3"
><a-icon
type=
"arrow-up"
/>
iccid填号
</a-menu-item>
<a-menu-item
key=
"4"
><a-icon
type=
"arrow-up"
/>
5G加装包
</a-menu-item>
</a-menu>
<a-button
style=
"margin-left: 8px"
>
导入
<a-icon
type=
"down"
/></a-button>
</a-dropdown>
...
...
@@ -420,6 +426,10 @@
模板下载:
<a-button
type=
"primary"
@
click=
"downloadMoBanYZK"
>
预制卡模板
</a-button>
</p>
<p
v-show=
"PackageMoBan"
>
模板下载:
<a-button
type=
"primary"
@
click=
"downloadMoBanPackageOrder"
>
5G加装包模板
</a-button>
</p>
</a-col>
</a-row>
<a-row
:gutter=
"24"
:v-show=
"KDmoBan"
>
...
...
@@ -781,6 +791,7 @@
downloadMoBan
,
downloadMoBanKD
,
downloadMoBanYZK
,
downloadMoBanPackageOrder
,
reviewStudentIdCard
,
editOrder
,
updateIccid
,
...
...
@@ -834,6 +845,7 @@
YRYMmoBan
:
false
,
KDmoBan
:
false
,
YZKmoBan
:
false
,
PackageMoBan
:
false
,
importUrl
:
""
,
importTile
:
""
,
modifyvisible
:
false
,
...
...
@@ -886,6 +898,7 @@
orderStatus
:
""
,
orderId
:
""
,
xbOrderId
:
""
,
businessPackage
:
""
,
},
orderInfo
:
{},
columns
:
[
...
...
@@ -970,6 +983,9 @@
if
(
e
.
key
==
"3"
)
{
this
.
handleSubmit3
();
}
if
(
e
.
key
==
"4"
)
{
this
.
handleSubmit4
();
}
},
openConfigIccidFun
()
{
this
.
openIccidConfig
=
true
;
...
...
@@ -1270,6 +1286,9 @@
downloadMoBanYZK
:
function
()
{
exportFile
(
downloadMoBanYZK
(),
"预制卡批量填号清单.xlsx"
);
},
downloadMoBanPackageOrder
:
function
()
{
exportFile
(
downloadMoBanPackageOrder
(),
"5G加装包批量受理清单.xlsx"
);
},
// 执行上传
doPush
(
res
)
{
if
(
!
res
||
!
res
.
response
)
{
...
...
@@ -1293,6 +1312,7 @@
this
.
YRYMmoBan
=
false
;
this
.
KDmoBan
=
false
;
this
.
YZKmoBan
=
false
;
this
.
PackageMoBan
=
false
;
this
.
importUrl
=
""
;
},
createfunctionOk
()
{
...
...
@@ -1317,6 +1337,12 @@
this
.
importUrl
=
"manager/ciop/order/importPrefabrication"
;
this
.
modifyvisible
=
true
;
},
handleSubmit4
()
{
this
.
importTile
=
"5G加装包批量受理"
;
this
.
PackageMoBan
=
true
;
this
.
importUrl
=
"manager/ciop/order/importPackageOrder"
;
this
.
modifyvisible
=
true
;
},
search
()
{
this
.
$refs
.
table
.
refresh
({
search
:
true
});
},
...
...
src/views/school-center/schoolmanager/schoolmanagement.vue
View file @
23f02ffc
...
...
@@ -337,6 +337,10 @@
title
:
'毕业生宽带优惠'
,
value
:
'bysrh'
,
key
:
'bysrh'
,
},{
title
:
'5G加装包'
,
value
:
'sjktcsj'
,
key
:
'sjktcsj'
,
}]
},{
title
:
'校园网办理'
,
...
...
@@ -719,6 +723,9 @@
if
(
data
.
bysrh
==
1
)
{
buttons
.
push
({
label
:
"毕业生宽带优惠"
,
value
:
"bysrh"
});
}
if
(
data
.
sjktcsj
==
1
)
{
buttons
.
push
({
label
:
"5G加装包"
,
value
:
"sjktcsj"
});
}
if
(
data
.
kdsl
==
1
)
{
buttons
.
push
({
label
:
"普通校园网"
,
value
:
"kdsl"
});
}
...
...
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