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

70 lines
1.1 KiB

3 months ago
3 months ago
  1. <template>
  2. <!-- <div>服务档案</div> -->
  3. <view class="box box-size">
  4. <view class="container box-size level" :style="{borderRadius:'16rpx'}">
  5. <view class="level">
  6. <view class="img">
  7. <image src="" mode=""></image>
  8. </view>
  9. <view class="text">
  10. 查看猫猫小咪的服务信息
  11. </view>
  12. </view>
  13. <view class="img_">
  14. <image src="/static/images/ydd/right.png" mode=""></image>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. </script>
  21. <style lang="scss">
  22. .box {
  23. width: 100vw;
  24. height: 100vh;
  25. padding: 2% 3%;
  26. }
  27. .box-size {
  28. box-sizing: border-box;
  29. }
  30. .level {
  31. display: flex;
  32. }
  33. .container {
  34. width: 710rpx;
  35. height: 121rpx;
  36. /* background-color: pink; */
  37. padding: 1% 4% 3% 2%;
  38. justify-content: space-between;
  39. margin-bottom: 20rpx;
  40. }
  41. .img image {
  42. width: 104rpx;
  43. height: 104rpx;
  44. border-radius: 100rpx;
  45. background-color: red;
  46. margin-right: 20rpx;
  47. }
  48. .text {
  49. font-size: 30rpx;
  50. display: grid;
  51. place-items: center;
  52. }
  53. .img_ {
  54. display: grid;
  55. place-items: center;
  56. }
  57. .img_ image {
  58. width: 40rpx;
  59. height: 40rpx;
  60. /* background-color: red; */
  61. }
  62. </style>