猫妈狗爸伴宠师小程序前端代码
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.
 
 
 
 

80 lines
1.3 KiB

<template>
<!-- <div>服务档案</div> -->
<view class="box box-size">
<view class="container box-size level"
@click="toDetail" :style="{borderRadius:'16rpx'}">
<view class="level">
<view class="img">
<image src="" mode=""></image>
</view>
<view class="text">
查看猫猫小咪的服务信息
</view>
</view>
<view class="img_">
<image src="/static/images/ydd/right.png" mode=""></image>
</view>
</view>
</view>
</template>
<script setup>
function toDetail() {
uni.navigateTo({
url: "/otherPages/myOrdersManage/service/detail"
})
}
</script>
<style scoped lang="scss">
.box {
width: 100vw;
height: 100vh;
padding: 2% 3%;
}
.box-size {
box-sizing: border-box;
}
.level {
display: flex;
}
.container {
width: 710rpx;
height: 121rpx;
background-color: #fff;
padding: 1% 4% 3% 2%;
justify-content: space-between;
margin-bottom: 20rpx;
}
.img image {
width: 104rpx;
height: 104rpx;
border-radius: 100rpx;
background-color: red;
margin-right: 20rpx;
}
.text {
font-size: 30rpx;
display: grid;
place-items: center;
}
.img_ {
display: grid;
place-items: center;
}
.img_ image {
width: 40rpx;
height: 40rpx;
/* background-color: red; */
}
</style>