Browse Source

数据详情

master
maochaoying 2 years ago
parent
commit
0ae337924d
  1. 16
      src/components/Setting/components/History.vue

16
src/components/Setting/components/History.vue

@ -37,7 +37,10 @@
v-for="(item, index) in historyStore.tableData"
:key="index"
>
<p class="title">{{ item.title }}</p>
<van-sticky>
<p class="title">{{ item.title }}</p></van-sticky
>
<div class="first_box" v-for="it in item.data" :key="it">
<p class="content">{{ it }}</p>
<p class="line"></p>
@ -216,15 +219,16 @@ const showDetailModal = item => {
z-index: 4;
}
.table_wrap {
flex: 1;
width: 1220px;
// flex: 1;
width: 3124px;
height: 580px;
display: flex;
justify-content: space-evenly;
align-items: center;
overflow: scroll;
.table_column {
height: 100%;
position: relative;
// height: 500px;
// position: relative;
.title {
height: 80px;
position: sticky;
@ -239,8 +243,8 @@ const showDetailModal = item => {
letter-spacing: 0.07em;
color: #999999;
white-space: nowrap;
margin: 0 20px;
background: #f6f6f6;
width: 100%;
z-index: 2;
}
.first_box {

Loading…
Cancel
Save