ソースを参照

新增资源

和田中职
suyanyan 1週間前
コミット
fd5c0854b6
2個のファイルの変更64行の追加0行の削除
  1. +64
    -0
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/detail.vue
  2. バイナリ
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/image/data.jpg

+ 64
- 0
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/TalentDemand/detail.vue ファイルの表示

@@ -0,0 +1,64 @@
<template>
<view class="meetingStyle">
<u--form labelPosition="left" :model="userInfos" ref="uForm" labelWidth="100">
<u-form-item label="应聘职位" prop="JobName" borderBottom>
<u--input v-model="userInfos.JobName" border="none" readonly></u--input>
</u-form-item>
<u-form-item label="学历要求" prop="EducationEquirement" borderBottom>
<u--input v-model="userInfos.EducationEquirement" border="none" readonly></u--input>
</u-form-item>
<u-form-item label="技能要求" prop="SkillDemand" borderBottom>
<u--input v-model="userInfos.SkillDemand" border="none" readonly></u--input>
</u-form-item>
<u-form-item label="单位名称" prop="UnitName" borderBottom>
<u--input v-model="userInfos.UnitName" border="none" readonly></u--input>
</u-form-item>

<u-form-item label="联系人" prop="Leader" borderBottom>
<u--input v-model="userInfos.Leader" border="none" readonly></u--input>
</u-form-item>
</u--form>
</view>
</template>

<script>
export default {
data() {
return {
contentId: '',
userInfos: {
JobName: '',
SkillDemand: '',
UnitName: '',
EducationEquirement: '',
Leader: ''
},
}
},
onLoad(options) {
this.contentId = options.id
if (this.contentId) {
this.getDetail()
}
},
methods: {
async getDetail() {
let res = await this.HTTP_GET(
'/api/ht/rc/list',
this.contentId
)
if (res && res.length > 0) {
this.userInfos = JSON.parse(JSON.stringify(res[0]))
}
},
}
}
</script>

<style lang="scss">
.meetingStyle {
padding: 24rpx;
background-color: #fff;
box-sizing: border-box;
}
</style>

バイナリ
Learun.Framework.Ultimate V7/LearunApp-2.2.0/static/image/data.jpg ファイルの表示

変更前 変更後
幅: 300  |  高さ: 300  |  サイズ: 17 KiB

読み込み中…
キャンセル
保存