This commit is contained in:
2024-03-13 09:21:24 +08:00
parent 4c29a20fe3
commit 636f866afb

View File

@ -1,5 +1,5 @@
<template> <template>
<view> <view class="app">
<view class="home" @tap='gointegration'> <view class="home" @tap='gointegration'>
<image src="@/static/zhaohufangan.png" mode=""></image> <image src="@/static/zhaohufangan.png" mode=""></image>
<view class="name"> <view class="name">
@ -40,5 +40,32 @@
</script> </script>
<style lang="scss"> <style lang="scss">
.app {
width: 96%;
height: 300rpx;
background: #FFFFFF;
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
border-radius: 5rpx;
margin: 20rpx auto;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding-top: 40rpx;
.home {
width: 32%;
.name {
text-align: center;
margin: 14rpx 0 0 0;
}
image {
display: block;
margin: 0 auto;
width: 102rpx;
height: 102rpx;
}
}
}
</style> </style>