特易招,招聘小程序
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.

47 lines
553 B

4 months ago
  1. <template>
  2. <view class="const">
  3. <view class="title">
  4. {{ title }}
  5. </view>
  6. <view class="num">
  7. {{ num }}
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props : {
  14. title : {
  15. default : '您当前的找活'
  16. },
  17. num : {
  18. default : 0
  19. }
  20. },
  21. data() {
  22. return {
  23. }
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .const{
  31. padding: 30rpx;
  32. background: $uni-color;
  33. color: #fff;
  34. font-weight: 900;
  35. .title{
  36. font-size: 34rpx;
  37. }
  38. .num{
  39. padding: 20rpx 0;
  40. font-size: 38rpx;
  41. }
  42. }
  43. </style>