123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="border border-light-opc rounded mb-2 p-2 shadow-sm">
- <view class="">
- <text class="text-primary">企业名称:</text>
- <text class="text-secondary">{{itemData.companyName}}</text>
- </view>
- <view class="my-2">
- <text class="text-primary">提交时间:</text>
- <text class="text-secondary">{{itemData.createTime}}</text>
- </view>
- <view class="">
- <text class="text-primary">提交人:</text>
- <text class="text-secondary">{{itemData.raisePerson}}</text>
- </view>
- <view class="pt-2">
- <text class="text-primary">挂钩干部:</text>
- <text class="text-secondary">{{itemData.realName}}</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- interviewData: {
- type: Object,
- default: () => {}
- }
- },
- computed: {
- itemData() {
- return this.interviewData
- }
- }
- }
- </script>
- <style>
- </style>
|