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

94 lines
1.9 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. <u-input class="search-input" v-model="value" placeholder="请输入评级编号" border="surround" :clearable="true" ></u-input>
  7. <view class="flex-col items-center text-wrapper" @click="search">
  8. <text>搜索</text>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="section_4"> </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. value: ''
  21. };
  22. },
  23. methods: {
  24. search(){
  25. console.log('搜索', this.value);
  26. this.$url('/packages/ratingQueryDetail/ratingQueryDetail');
  27. }
  28. }
  29. };
  30. </script>
  31. <style scoped lang="css">
  32. .page {
  33. background-color: #f6f6f6;
  34. width: 100%;
  35. overflow-y: auto;
  36. height: 100%;
  37. }
  38. .search-input{
  39. width: 492rpx;
  40. height: 84rpx;
  41. }
  42. .section_2 {
  43. padding: 32rpx 32rpx 16rpx;
  44. flex: 1 1 auto;
  45. background-color: rgb(255, 255, 255);
  46. overflow-y: auto;
  47. }
  48. .section_3 {
  49. padding: 6rpx 0;
  50. background-color: rgb(246, 246, 246);
  51. border-radius: 10rpx;
  52. }
  53. .section_4 {
  54. margin-top: 1296rpx;
  55. align-self: center;
  56. background-color: rgb(0, 0, 0);
  57. border-radius: 4rpx;
  58. width: 196rpx;
  59. height: 8rpx;
  60. }
  61. .search {
  62. margin-left: 31rpx;
  63. margin-right: 6rpx;
  64. }
  65. .group_4 {
  66. align-self: center;
  67. color: rgb(195, 195, 195);
  68. font-size: 28rpx;
  69. font-weight: 500;
  70. line-height: 40rpx;
  71. white-space: nowrap;
  72. }
  73. .text-wrapper {
  74. padding: 20rpx 0;
  75. color: rgb(255, 255, 255);
  76. font-size: 32rpx;
  77. font-weight: 500;
  78. line-height: 44rpx;
  79. white-space: nowrap;
  80. background-color: rgb(231, 162, 63);
  81. border-radius: 6rpx;
  82. width: 130rpx;
  83. height: 84rpx;
  84. }
  85. .image_6 {
  86. margin-bottom: 4rpx;
  87. width: 37rpx;
  88. height: 34rpx;
  89. }
  90. .text_2 {
  91. margin-left: 10rpx;
  92. }
  93. </style>