detection-business/pages/manage/NewdeviceManage.vue
2025-02-19 18:01:29 +08:00

103 lines
1.8 KiB
Vue

<template>
<view class="">
<headersVue :titles="titles"><u-icon name="arrow-left" color="#fff" size="18"></u-icon></headersVue>
<view class="content">
<view class="box_">
<view class="box_list">
<view class="">
<image src="/static/imgs/s1.png" mode=""></image>
<view class="name_">底检设备</view>
<view class="">100</view>
</view>
</view>
<view class="box_list">
<view class="">
<image src="/static/imgs/s2.png" mode=""></image>
<view class="name_">底检设备</view>
<view class="">100</view>
</view>
</view>
<view class="box_list">
<view class="">
<image src="/static/imgs/s3.png" mode=""></image>
<view class="name_">底检设备</view>
<view class="">100</view>
</view>
</view>
<view class="box_list">
<view class="">
<image src="/static/imgs/s4.png" mode=""></image>
<view class="name_">底检设备</view>
<view class="">100</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import headersVue from '../../components/header/headers.vue';
export default {
data() {
return {
titles: "设备管理",
List: [],
show: false,
status: 'loading',
}
},
components:{
headersVue
},
}
</script>
<style scoped lang="scss">
.content{
background: #F7F8FC;
width: 100%;
height: 100vh;
box-sizing: border-box;
padding: 30rpx;
padding-top: 200rpx;
}
.box_{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_list{
width: 328rpx;
height: 396rpx;
background: #fff;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 30rpx;
image{
width: 130rpx;
height: 130rpx;
}
}
.name_{
font-size: 28rpx;
color: #000000;
}
.num_{
font-size: 36rpx;
color: #000000;
}
</style>