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

61 lines
1.0 KiB

  1. <template>
  2. <view class="content_">
  3. <view class="img_">
  4. <image :src="configList.pet_in.paramValueImage" mode="" style="width: 310rpx;height: 311rpx;"></image>
  5. </view>
  6. <view class="text level">
  7. {{ configList.pet_in.paramValueText }}
  8. </view>
  9. <view class="buttom" :style="{borderRadius:'41rpx'}" @click="onClick">
  10. 我知道了
  11. </view>
  12. </view>
  13. </template>
  14. <script setup>
  15. import { store } from '@/store'
  16. const configList = store.state.system.configList
  17. const onClick = () => {
  18. // todo
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. .content_{
  23. font-size: 28rpx;
  24. color: #707070;
  25. .img_{
  26. width: 310rpx;
  27. height: 311rpx;
  28. margin: 80rpx 0 0 190rpx;
  29. }
  30. .text{
  31. width: 420rpx;
  32. height: 74rpx;
  33. justify-content: center;
  34. margin: 30rpx 0 0 140rpx;
  35. }
  36. .buttom{
  37. width: 594rpx;
  38. height: 94rpx;
  39. display: grid;
  40. place-items: center;
  41. background-color: #FFBF60;
  42. margin: 250rpx 0 0 40rpx;
  43. font-size: 30rpx;
  44. color: #FFFFFF;
  45. }
  46. }
  47. .level{
  48. display: flex;
  49. }
  50. </style>