goodsTopic.vue 989 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <view class="goods_topic">
  3. <nav-bar title="选课中心"></nav-bar>
  4. <view class="mains">
  5. <view class="selects">
  6. <view class="titles">
  7. 考前培训:建造师-二级
  8. </view>
  9. <view class="icons">
  10. <u-icon name="arrow-down" color="#2979ff" size="28"></u-icon>
  11. </view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'goodsTopic',
  19. data() {
  20. return {
  21. }
  22. },
  23. }
  24. </script>
  25. <style>
  26. page {
  27. width: 100%;
  28. background: linear-gradient(180deg, rgba(223,236,253,0) 0%, #DFECFD 100%);
  29. }
  30. </style>
  31. <style lang="scss" scoped>
  32. .goods_topic {
  33. width: 100%;
  34. .mains {
  35. padding: 40rpx 40rpx 0rpx 40rpx;
  36. }
  37. .selects {
  38. width: 370rpx;
  39. height: 64rpx;
  40. background: rgba(255,255,255,0.6);
  41. border-radius: 160rpx;
  42. }
  43. }
  44. </style>