球星卡微信小程序
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.

88 lines
2.0 KiB

  1. <template>
  2. <view class="flex-col page">
  3. <view class="flex-col section_2">
  4. <view class="flex-col section_3">
  5. <view class="justify-between search">
  6. <view class="flex-row group_4">
  7. <image
  8. src="https://project-user-resource-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497990103652578.png"
  9. class="image_6"
  10. />
  11. <text class="text_2">请输入评级编号</text>
  12. </view>
  13. <view class="flex-col items-center text-wrapper" @click="$url('/packages/ratingQueryDetail/ratingQueryDetail')">
  14. <text>搜索</text>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="section_4"> </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {};
  26. },
  27. };
  28. </script>
  29. <style scoped lang="css">
  30. .page {
  31. background-color: #f6f6f6;
  32. width: 100%;
  33. overflow-y: auto;
  34. height: 100%;
  35. }
  36. .section_2 {
  37. padding: 32rpx 32rpx 16rpx;
  38. flex: 1 1 auto;
  39. background-color: rgb(255, 255, 255);
  40. overflow-y: auto;
  41. }
  42. .section_3 {
  43. padding: 6rpx 0;
  44. background-color: rgb(246, 246, 246);
  45. border-radius: 10rpx;
  46. }
  47. .section_4 {
  48. margin-top: 1296rpx;
  49. align-self: center;
  50. background-color: rgb(0, 0, 0);
  51. border-radius: 4rpx;
  52. width: 196rpx;
  53. height: 8rpx;
  54. }
  55. .search {
  56. margin-left: 31rpx;
  57. margin-right: 6rpx;
  58. }
  59. .group_4 {
  60. align-self: center;
  61. color: rgb(195, 195, 195);
  62. font-size: 28rpx;
  63. font-weight: 500;
  64. line-height: 40rpx;
  65. white-space: nowrap;
  66. }
  67. .text-wrapper {
  68. padding: 20rpx 0;
  69. color: rgb(255, 255, 255);
  70. font-size: 32rpx;
  71. font-weight: 500;
  72. line-height: 44rpx;
  73. white-space: nowrap;
  74. background-color: rgb(231, 162, 63);
  75. border-radius: 6rpx;
  76. width: 130rpx;
  77. height: 84rpx;
  78. }
  79. .image_6 {
  80. margin-bottom: 4rpx;
  81. width: 37rpx;
  82. height: 34rpx;
  83. }
  84. .text_2 {
  85. margin-left: 10rpx;
  86. }
  87. </style>