index.vue 931 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="ss-m-x-20 ss-p-b-100">
  3. <uni-section class="ss-m-y-20" title="职位基本信息" >
  4. <template v-slot:decoration>
  5. <view class="decoration decoration1">1</view>
  6. </template>
  7. <BaseInfo></BaseInfo>
  8. </uni-section>
  9. <uni-section class="ss-m-y-20" title="岗位要求" >
  10. <template v-slot:decoration>
  11. <view class="decoration decoration2">2</view>
  12. </template>
  13. <requirement></requirement>
  14. </uni-section>
  15. </view>
  16. </template>
  17. <script setup>
  18. import BaseInfo from './components/baseInfo.vue'
  19. import requirement from './components/requirement.vue'
  20. </script>
  21. <style scoped lang="scss">
  22. .decoration {
  23. color: #fff;
  24. border-radius: 50%;
  25. width: 15px;
  26. height: 15px;
  27. line-height: 15px;
  28. font-size: 10px;
  29. text-align: center;
  30. margin-right: 4px;
  31. }
  32. .decoration1 {
  33. background-color: #00B760;
  34. }
  35. .decoration2 {
  36. background-color: #7a87c9;
  37. }
  38. </style>