| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <view class="work-container">
- <view style="margin-top: 10px">
- <uni-table border stripe emptyText="暂无更多数据" >
- <!-- 表头行 -->
- <uni-tr>
- <uni-th align="center" width="100">排名</uni-th>
- <uni-th align="center" width="100">运行时长</uni-th>
- <uni-th align="center" width="100">设备名称</uni-th>
- </uni-tr>
- <!-- 表格数据行 -->
- <uni-tr v-for="(item,index) in rankList">
- <uni-td align="center">{{index+1 }}</uni-td>
- <uni-td align="center">{{ item.logValue }}</uni-td>
- <uni-td align="center">{{item.deviceName}}</uni-td>
- </uni-tr>
- </uni-table>
- </view>
- </view>
- </template>
- <script>
- import {getAllDeviceRunTime} from '@/api/device/device';
- export default {
- data() {
- return {
- rankList:[]
- }
- },
- onLoad(){
- this.getRank();
- },
- methods: {
- getRank(){
- let self = this;
- getAllDeviceRunTime().then(res=>{
- self.rankList = res.data;
- })
- },
- }
- }
- </script>
- <style lang="scss">
- /* #ifndef APP-NVUE */
- .u-collapse-content{
- display: flex;
- flex-direction: column;
- }
- page {
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- background-color: #fff;
- min-height: 100%;
- height: auto;
- }
- view {
- font-size: 14px;
- line-height: inherit;
- }
- /* #endif */
- .text {
- text-align: center;
- font-size: 26rpx;
- margin-top: 10rpx;
- }
- .grid-item-box {
- flex: 1;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- align-items: center;
- justify-content: center;
- padding: 15px 0;
- }
- .uni-margin-wrap {
- width: 690rpx;
- width: 100%;
- ;
- }
- .swiper {
- height: 300rpx;
- }
- .swiper-box {
- height: 150px;
- }
- .swiper-item {
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #fff;
- height: 300rpx;
- line-height: 300rpx;
- }
- @media screen and (min-width: 500px) {
- .uni-swiper-dot-box {
- width: 400px;
- /* #ifndef APP-NVUE */
- margin: 0 auto;
- /* #endif */
- margin-top: 8px;
- }
- .image {
- width: 100%;
- }
- }
- </style>
|