'出单详情'

This commit is contained in:
proudlx
2021-04-21 16:37:05 +08:00
parent 95ec897709
commit 518bdc7750
2 changed files with 51 additions and 2 deletions

View File

@@ -56,10 +56,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.statisticsTable th { .statisticsTable th {
width: 100px; width: 130px;
} }
table { table {
width: 160vw; width: 200vw;
} }
.statisticsTable { .statisticsTable {
width: 100%; width: 100%;

View File

@@ -274,4 +274,53 @@ export default {
/deep/.van-field__label { /deep/.van-field__label {
width: 0px; width: 0px;
} }
.table {
overflow-x: auto;
margin: 5px;
box-sizing: border-box;
background: #fff;
}
.table th {
width: 130px;
}
table {
width: 180vw;
}
.table {
margin-top: 10px;
table {
border-collapse: collapse;
}
table,
th,
td {
border: 1px solid #999;
text-align: center;
font-size: 14px;
line-height: 30px;
background: #fff;
}
thead {
th {
height: 40px;
line-height: 40px;
background: #e9332e;
color: #fff;
}
}
}
.th-fixed {
position: sticky;
left: 0;
width: 200px;
padding: 0 5px;
}
.td-fixed {
position: sticky;
width: 200px;
padding: 0 5px;
left: 0;
text-decoration: underline;
}
</style> </style>