|
|
- <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>
|