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

63 lines
1.1 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. uni.reLaunch({
  19. url: "/pages/workbenchManage/index"
  20. })
  21. }
  22. </script>
  23. <style scoped lang="scss">
  24. .content_{
  25. font-size: 28rpx;
  26. color: #707070;
  27. .img_{
  28. width: 310rpx;
  29. height: 311rpx;
  30. margin: 80rpx 0 0 190rpx;
  31. }
  32. .text{
  33. width: 420rpx;
  34. height: 74rpx;
  35. justify-content: center;
  36. margin: 30rpx 0 0 140rpx;
  37. }
  38. .buttom{
  39. width: 594rpx;
  40. height: 94rpx;
  41. display: grid;
  42. place-items: center;
  43. background-color: #FFBF60;
  44. margin: 250rpx 0 0 40rpx;
  45. font-size: 30rpx;
  46. color: #FFFFFF;
  47. }
  48. }
  49. .level{
  50. display: flex;
  51. }
  52. </style>