Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
educationStu
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
向伟
educationStu
Commits
a4489d91
Commit
a4489d91
authored
Jan 14, 2022
by
罗超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2
parent
585dc3de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
12 deletions
+20
-12
orderList.vue
src/pages/contract/orderList.vue
+5
-5
timeTable-item.vue
src/pages/timetable/timeTable-item.vue
+15
-7
No files found.
src/pages/contract/orderList.vue
View file @
a4489d91
...
@@ -139,7 +139,7 @@
...
@@ -139,7 +139,7 @@
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/zhengchang.png"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/zhengchang.png"
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==1"
></image>
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==1"
></image>
<image
<image
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/tui
xue
.png"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/tui
chu
.png"
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==2"
></image>
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==2"
></image>
<image
<image
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/quxiao.png"
src=
"https://viitto-1301420277.cos.ap-chengdu.myqcloud.com/Static/educationStu/quxiao.png"
...
@@ -149,10 +149,10 @@
...
@@ -149,10 +149,10 @@
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==4"
></image>
mode=
"heightFix"
style=
"height:36rpx"
v-if=
"item.OrderState==4"
></image>
</view>
</view>
<view
class=
"di"
>
<view
class=
"di"
>
<text
v-if=
"item.OrderState==1"
>
正常
</text>
<text
class=
"di"
v-if=
"item.OrderState==1"
>
正常
</text>
<text
v-if=
"item.OrderState==2"
>
退学
</text>
<text
class=
"di"
v-if=
"item.OrderState==2"
>
退学
</text>
<text
v-if=
"item.OrderState==3"
>
取消
</text>
<text
class=
"di"
v-if=
"item.OrderState==3"
>
取消
</text>
<text
v-if=
"item.OrderState==4"
>
待付款
</text>
<text
class=
"di"
v-if=
"item.OrderState==4"
>
待付款
</text>
</view>
</view>
</view>
</view>
</view>
</view>
...
...
src/pages/timetable/timeTable-item.vue
View file @
a4489d91
...
@@ -33,6 +33,11 @@
...
@@ -33,6 +33,11 @@
>
>
</view>
</view>
</view>
</view>
<view
class=
"class-con class_status"
>
<text
v-if=
"item.IsLeave === 1 && item.IsCheck == 2"
>
状态:已请假
</text>
<view
v-if=
"item.IsLeave === 0 &&item.IsCheck === 0"
>
状态:正常
</view>
<view
v-if=
"item.IsLeave === 0 &&item.IsCheck === 1"
>
状态:缺勤
</view>
</view>
<view
class=
"btn-box"
>
<view
class=
"btn-box"
>
<van-button
<van-button
custom-class=
"leave-btn"
custom-class=
"leave-btn"
...
@@ -42,19 +47,19 @@
...
@@ -42,19 +47,19 @@
v-if="item.IsLeave === 1
&&
item.IsCheck
<
2
"
v-if="item.IsLeave === 1
&&
item.IsCheck
<
2
"
>
请假
</van-button
>
请假
</van-button
>
>
<van-button
<
!--
<
van-button
custom-class=
"already-leave-btn one_line"
custom-class=
"already-leave-btn one_line"
v-if=
"item.IsLeave === 1 && item.IsCheck == 2"
>
已请假
</van-button
></van-button
>
>
-->
<van-button
<!--
<van-button
custom-class=
"already-leave-btn one_line"
custom-class=
"already-leave-btn one_line"
v-if=
"item.IsLeave === 0"
v-if=
"item.IsLeave === 0"
>
>
<view
v-if=
"item.IsCheck === -1"
>
去上课
</view>
<view
v-if=
"item.IsCheck === -1"
>
去上课
</view>
<view
v-if=
"item.IsCheck === 0"
>
正常
</view>
<view
v-if=
"item.IsCheck === 0"
>
正常
</view>
<view
v-if=
"item.IsCheck === 1"
>
缺勤
</view>
<view
v-if=
"item.IsCheck === 1"
>
缺勤
</view>
</van-button>
</van-button>
-->
</view>
</view>
</view>
</view>
</view>
</view>
...
@@ -128,7 +133,7 @@ export default {
...
@@ -128,7 +133,7 @@ export default {
font-size
:
26
rpx
;
font-size
:
26
rpx
;
font-family
:
PingFang
SC
;
font-family
:
PingFang
SC
;
font-weight
:
500
;
font-weight
:
500
;
color
:
#0000
ff
;
color
:
#0000
00
;
}
}
.teacherimg
{
.teacherimg
{
margin-right
:
30
rpx
;
margin-right
:
30
rpx
;
...
@@ -177,4 +182,7 @@ export default {
...
@@ -177,4 +182,7 @@ export default {
font-weight
:
500
;
font-weight
:
500
;
color
:
#ffffff
;
color
:
#ffffff
;
}
}
.class_status
{
font-size
:
26
rpx
;
}
</
style
>
</
style
>
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