|
@@ -8,21 +8,26 @@
|
|
|
<span>日期</span>
|
|
|
</div>
|
|
|
<div class="tables">
|
|
|
- <div>
|
|
|
+ <!-- class="gun" -->
|
|
|
+ <div class="gun">
|
|
|
<el-table :cell-style="{ color: '#fff' }" :header-cell-style="{ color: '#fff' }" :data="tableData"
|
|
|
- style="width: 100%;height:100%;font-size: 2.5vh;" ref="tableBox">
|
|
|
+ style="width: 100%;height:100%;font-size: 2.8vh;" ref="tableBox">
|
|
|
+
|
|
|
<el-table-column prop="timeFrame" align="center" label="">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ scope.row.timeFrame == '1' ? '早餐' : scope.row.timeFrame == '2' ? '午餐' : '晚餐' }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="name" label="" align="center">
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="price" align="center" label="">
|
|
|
<template slot-scope="scope">
|
|
|
<span>¥{{ scope.row.price }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="billDate" label="" align="center">
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
@@ -86,7 +91,7 @@ export default {
|
|
|
background-image: url('../../assets/images/background.png');
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: cover;
|
|
|
- overflow: hidden;
|
|
|
+ // overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.title {
|
|
@@ -156,7 +161,13 @@ export default {
|
|
|
::v-deep .el-table tr,
|
|
|
::v-deep .el-table td {
|
|
|
background-color: transparent !important;
|
|
|
- border-top-color: #808DA6;
|
|
|
- border-bottom-color: #808DA6;
|
|
|
+ // border-top-color: #808DA6;
|
|
|
+ // border-bottom-color: #808DA6;
|
|
|
+ border-top: 1px solid #808DA6;
|
|
|
+ border-bottom: none;
|
|
|
+}
|
|
|
+
|
|
|
+::v-deep .el-table .el-table__header-wrapper {
|
|
|
+ display: none;
|
|
|
}
|
|
|
</style>
|