Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
confucius
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
罗超
confucius
Commits
642688ac
Commit
642688ac
authored
May 16, 2022
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
f2e99ac2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
164 additions
and
209 deletions
+164
-209
activeOrder-form.vue
src/components/sale/activeOrder-form.vue
+3
-6
activeSignUpList.vue
src/pages/activity/activeSignUpList.vue
+161
-203
No files found.
src/components/sale/activeOrder-form.vue
View file @
642688ac
...
...
@@ -132,7 +132,8 @@
}
this
.
OrderMsg
.
LinkMan
=
this
.
saveObj
.
LinkMan
this
.
OrderMsg
.
LinkTel
=
this
.
saveObj
.
LinkTel
this
.
OrderMsg
.
Remark
=
this
.
saveObj
.
Remark
this
.
OrderMsg
.
Remark
=
this
.
saveObj
.
Remark
;
this
.
OrderMsg
.
TeacherId
=
this
.
saveObj
.
TeacherId
;
}
this
.
getStu
();
},
...
...
@@ -156,14 +157,10 @@
saveOrderInfo
()
{
this
.
$refs
.
LinkMan
.
validate
();
this
.
$refs
.
LinkTel
.
validate
();
// this.$refs.Remark.validate();
if
(
!
this
.
$refs
.
LinkMan
.
hasError
&&
!
this
.
$refs
.
LinkTel
.
hasError
)
{
// if(this.saveObj.LnsideLimit===1&&!this.OrderMsg.EduStudentId){
// this.Error("请选择学员");
// return
// }
if
(
this
.
OrderMsg
.
EduStudentId
===
null
||
!
this
.
OrderMsg
.
EduStudentId
)
{
this
.
OrderMsg
.
EduStudentId
=
0
}
...
...
src/pages/activity/activeSignUpList.vue
View file @
642688ac
...
...
@@ -2,85 +2,43 @@
<div
class=
"page-body myActiveOrder"
>
<div
class=
"row col"
style=
"margin-bottom: 10px"
>
<div
class=
"row col"
>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"返回"
@
click=
"goBack"
/>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"返回"
@
click=
"goBack"
/>
<div
v-if=
"activeName"
style=
"line-height: 25px"
>
活动名称:
{{
activeName
}}
</div>
</div>
<q-btn
color=
"accent"
style=
"float: right"
v-if=
"from == 1"
size=
"sm"
label=
"参与者名单"
@
click=
"gourl"
/>
<q-btn
color=
"accent"
style=
"float: right"
v-if=
"from == 1"
size=
"sm"
label=
"参与者名单"
@
click=
"gourl"
/>
</div>
<div
class=
"page-content"
>
<OrderItem
:dataList=
"data.List"
ref=
"orderL"
:authObj=
"authObj"
:modityOrderType=
"2"
:cancelList=
"CancelList"
:formActiveMan=
"true"
@
agree=
"agreeApply"
@
refuse=
"jujueMsg"
@
success=
"refreshClassOrder"
isActivity
></OrderItem>
<OrderItem
:dataList=
"data.List"
ref=
"orderL"
:authObj=
"authObj"
:modityOrderType=
"2"
:cancelList=
"CancelList"
:formActiveMan=
"true"
@
agree=
"agreeApply"
@
refuse=
"jujueMsg"
@
success=
"refreshClassOrder"
isActivity
>
</OrderItem>
<div
class=
"row"
style=
"justify-content: flex-end; padding: 5px 20px"
>
<q-pagination
v-model=
"msg.pageIndex"
:max=
"pageCount"
@
input=
"changePage"
class=
"full-width justify-end"
color=
"primary"
:input=
"true"
>
<q-pagination
v-model=
"msg.pageIndex"
:max=
"pageCount"
@
input=
"changePage"
class=
"full-width justify-end"
color=
"primary"
:input=
"true"
>
</q-pagination>
</div>
</div>
<!-- 拒绝报名 -->
<el-dialog
title=
"拒绝报名"
:visible
.
sync=
"showJujue"
width=
"600px"
>
<div
class=
"activityFlex"
>
<el-input
type=
"textarea"
rows=
"4"
v-model=
"bdMsg.RejectRemark"
></el-input>
<el-input
type=
"textarea"
rows=
"4"
v-model=
"bdMsg.RejectRemark"
></el-input>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<!--
<el-button
type=
"primary"
size=
"small"
@
click=
"sureJujue"
>
确定
</el-button>
-->
<q-btn
text-color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"取消"
@
click=
"showJujue = false"
/>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"确定"
@
click=
"sureJujue"
/>
<q-btn
text-color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"取消"
@
click=
"showJujue = false"
/>
<q-btn
color=
"accent"
size=
"sm"
class=
"q-mr-md"
label=
"确定"
@
click=
"sureJujue"
/>
</span>
</el-dialog>
</div>
</
template
>
<
script
>
import
{
quertClassOrderList
}
from
"../../api/sale/sale"
;
import
{
quertClassOrderList
}
from
"../../api/sale/sale"
;
import
OrderItem
from
"../../components/sale/activeOrder-item.vue"
;
export
default
{
import
OrderItem
from
"../../components/sale/activeOrder-item.vue"
;
export
default
{
meta
:
{
title
:
"活动报名列表"
,
},
...
...
@@ -213,31 +171,31 @@ export default {
});
},
},
};
};
</
script
>
<
style
>
.myActiveOrder
.table-body
{
.myActiveOrder
.table-body
{
height
:
calc
(
100vh
-
220px
);
}
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.myActiveOrder
.table-body
::-webkit-scrollbar
{
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.myActiveOrder
.table-body
::-webkit-scrollbar
{
width
:
5px
;
height
:
5px
;
background-color
:
#f5f5f5
;
}
}
/*定义滚动条轨道 内阴影+圆角*/
.myActiveOrder
.table-body
::-webkit-scrollbar-track
{
/*定义滚动条轨道 内阴影+圆角*/
.myActiveOrder
.table-body
::-webkit-scrollbar-track
{
-webkit-box-shadow
:
inset
0
0
6px
rgba
(
0
,
0
,
0
,
0.3
);
border-radius
:
10px
;
background-color
:
#f5f5f5
;
}
}
/*定义滑块 内阴影+圆角*/
.myActiveOrder
.table-body
::-webkit-scrollbar-thumb
{
/*定义滑块 内阴影+圆角*/
.myActiveOrder
.table-body
::-webkit-scrollbar-thumb
{
border-radius
:
5px
;
-webkit-box-shadow
:
inset
0
0
6px
rgba
(
0
,
0
,
0
,
0.3
);
background-color
:
#555
;
}
}
</
style
>
\ No newline at end of file
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