|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <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>
|