interviewItem.vue 889 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="border border-light-opc rounded mb-2 p-2 shadow-sm">
  3. <view class="">
  4. <text class="text-primary">企业名称:</text>
  5. <text class="text-secondary">{{itemData.companyName}}</text>
  6. </view>
  7. <view class="my-2">
  8. <text class="text-primary">提交时间:</text>
  9. <text class="text-secondary">{{itemData.createTime}}</text>
  10. </view>
  11. <view class="">
  12. <text class="text-primary">提交人:</text>
  13. <text class="text-secondary">{{itemData.raisePerson}}</text>
  14. </view>
  15. <view class="pt-2">
  16. <text class="text-primary">挂钩干部:</text>
  17. <text class="text-secondary">{{itemData.realName}}</text>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. props: {
  24. interviewData: {
  25. type: Object,
  26. default: () => {}
  27. }
  28. },
  29. computed: {
  30. itemData() {
  31. return this.interviewData
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. </style>