Commit bb51cdfb authored by zhengke's avatar zhengke

修改

parent 58125120
<style> <style>
.Sctop_Last { .Sctop_Last {
position: absolute; position: absolute;
right: 0; right: 10px;
top: 0; bottom: 10px;
} }
.Sctop_Last>div { .Sctop_Last>div {
...@@ -18,7 +18,12 @@ ...@@ -18,7 +18,12 @@
font-weight: bold; font-weight: bold;
cursor: pointer; cursor: pointer;
} }
.sche_rightTop{
width: 100%;
padding: 20px 0;
background-color: #fff;
position: relative;
}
</style> </style>
<template> <template>
<div class="sche_rightTop"> <div class="sche_rightTop">
......
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
</template> </template>
<template v-slot:body-cell-CheckTimeStr="props"> <template v-slot:body-cell-CheckTimeStr="props">
<q-td> <q-td>
<div v-if="props.row.Status==1"> <div v-if="props.row.Status==1||props.row.Status==2">
{{props.row.CheckTimeStr}} {{props.row.CheckTimeStr}}
<template v-if="props.row.CheckLateTime&&props.row.CheckLateTime>0"> <template v-if="props.row.CheckLateTime&&props.row.CheckLateTime>0">
<span style="color:red">{{props.row.CheckLateTimeStr}}</span> <span style="color:red">{{props.row.CheckLateTimeStr}}</span>
......
...@@ -112,13 +112,6 @@ ...@@ -112,13 +112,6 @@
cursor: pointer; cursor: pointer;
} }
.sche_rightTop {
width: 100%;
padding:20px 0;
background-color: #fff;
position: relative;
}
.schScroll { .schScroll {
background-color: #F6F8FA; background-color: #F6F8FA;
} }
......
...@@ -82,7 +82,7 @@ ...@@ -82,7 +82,7 @@
<q-td v-if="col.name == 'CheckTimeStr'"> <q-td v-if="col.name == 'CheckTimeStr'">
<div v-for="item in col.value"> <div v-for="item in col.value">
<div class="border-bottom"> <div class="border-bottom">
<div v-if="item.Status==1"> <div v-if="item.Status==1||item.Status==2">
{{item.CheckTimeStr}} {{item.CheckTimeStr}}
<template v-if="item.CheckLateTime&&item.CheckLateTime>0"> <template v-if="item.CheckLateTime&&item.CheckLateTime>0">
<span style="color:red">{{item.CheckLateTimeStr}}</span> <span style="color:red">{{item.CheckLateTimeStr}}</span>
......
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
<q-td v-if="col.name == 'CheckTimeStr'" style="padding-right:0px"> <q-td v-if="col.name == 'CheckTimeStr'" style="padding-right:0px">
<div v-for="item in col.value"> <div v-for="item in col.value">
<div class="border-bottom" style="padding-left: 16px;padding-right: 16px"> <div class="border-bottom" style="padding-left: 16px;padding-right: 16px">
<div v-if="item.Status==1"> <div v-if="item.Status==1||item.Status==2">
{{item.CheckTimeStr}} {{item.CheckTimeStr}}
<template v-if="item.CheckLateTime&&item.CheckLateTime>0"> <template v-if="item.CheckLateTime&&item.CheckLateTime>0">
<span style="color:red">{{item.CheckLateTimeStr}}</span> <span style="color:red">{{item.CheckLateTimeStr}}</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment