You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.9 KiB
105 lines
2.9 KiB
<template>
|
|
<view class="container">
|
|
<view class="imgList">
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="imgBox">
|
|
<image src="/static/img/user/user.png" mode="aspectFill"></image>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
<u-empty icon="/static/img/user/nodata.png" mode="list" text="你还没有面部档案" width="180rpx" marginTop="120px"></u-empty>
|
|
<view class="newBtn">去创建</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.container{padding: 20rpx 26rpx;}
|
|
.imgList{width: 100%; height: auto; display: flex; flex-wrap: wrap;}
|
|
.imgBox{width: 140rpx; height: 140rpx;}
|
|
.imgBox image{width: 140rpx; height: 140rpx;}
|
|
|
|
.newBtn{
|
|
width: 400rpx;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
border-radius: 48rpx;
|
|
border: 2rpx solid #9B75FF;
|
|
text-align: center;
|
|
margin: 20rpx auto;
|
|
color: #9B75FF;
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
|