This commit is contained in:
zoujiandong
2025-07-17 17:15:28 +08:00
parent dc39275e6e
commit 75d515fbc6
92 changed files with 1718 additions and 945 deletions
+20
View File
@@ -127,6 +127,9 @@
</view>
<tabBar></tabBar>
<view class="publish" @click="goPublish">
<u-icon name="plus" color="#fff" size="18"></u-icon>
</view>
</template>
<script setup>
@@ -220,6 +223,11 @@ const goHospital=()=>{
url:'/pages/searchList/searchList?type=hospital&name=医院&id='
})
}
const goPublish=()=>{
navTo({
url:'/pages/publish/publish'
})
}
onShow(() => {
getStatic();
getData();
@@ -357,4 +365,16 @@ onShow(() => {
}
}
}
.publish{
width: 92rpx;
height: 92rpx;
background: #3CC7C0;
border-radius: 50%;
position: fixed;
right:30rpx;
bottom:180rpx;
display: flex;
justify-content: center;
align-items: center;
}
</style>