Merge branch 'master' of http://120.26.58.240:8888/r/flexJobMiniApp
| | |
| | | </CurriculumViewItem> |
| | | </div> |
| | | </CellChunk> |
| | | <CellChunk title="资格证书"> |
| | | <nut-grid |
| | | square |
| | | :column-num="3" |
| | | :border="false" |
| | | :gutter="20" |
| | | v-if="_userCredentials.length > 0" |
| | | class="pro-img-grid" |
| | | > |
| | | <CellChunk title="资格证书" v-if="_userCredentials.length > 0"> |
| | | <nut-grid square :column-num="3" :border="false" :gutter="20" class="pro-img-grid"> |
| | | <nut-grid-item |
| | | v-for="(item, index) in _userCredentials" |
| | | :key="item" |
| | |
| | | </nut-grid> |
| | | </CellChunk> |
| | | <CellChunk title="工作经验"> |
| | | <CurriculumViewItem label="工作年限:" :text="workSeniority ? `${workSeniority}年` : ''"> |
| | | </CurriculumViewItem> |
| | | <CurriculumViewItem label="工作年限:" :text="workSeniority"> </CurriculumViewItem> |
| | | <CurriculumViewItem label="工作经验:" :text="workExperience"> </CurriculumViewItem> |
| | | </CellChunk> |
| | | <CellChunk title="详细信息"> |
| | |
| | | "description": "", |
| | | "setting": { |
| | | "urlCheck": false, |
| | | "es6": true, |
| | | "enhance": true, |
| | | "es6": false, |
| | | "enhance": false, |
| | | "postcss": false, |
| | | "preloadBackgroundData": false, |
| | | "minified": false, |
| | |
| | | {{ workExperience }} |
| | | </div> |
| | | <div class="flexJob-card-done-detail" v-if="showDoneDetail"> |
| | | <div class="flexJob-card-done-detail-item">{{ workSeniority && `${workSeniority}年` }}</div> |
| | | <div class="flexJob-card-done-detail-item">{{ workSeniority }}</div> |
| | | <!-- <div class="flexJob-card-done-detail-item">{{ '在「宁波雷迪森酒店」,做过客房服务员' }}</div> --> |
| | | </div> |
| | | <div class="flexJob-card-footer"> |
| | |
| | | <template> |
| | | <div :class="['preview-image-wrapper', wrapperClassName]"> |
| | | <Image @tap="handeClick" :mode="mode" :src="src" v-bind="$attrs" /> |
| | | <!-- <Image @tap="handeClick" :mode="mode" :src="src" v-bind="$attrs" /> --> |
| | | <div |
| | | class="preview-image-div" |
| | | :style="{ backgroundImage: `url(${src})` }" |
| | | v-bind="$attrs" |
| | | @tap="handeClick" |
| | | ></div> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | () => props.src, |
| | | () => { |
| | | if (props.src) { |
| | | console.log('props.src: ', props.src); |
| | | Taro.getImageInfo({ |
| | | src: props.src, |
| | | success(result) { |
| | |
| | | width: 100%; |
| | | height: 100%; |
| | | overflow: hidden; |
| | | |
| | | .preview-image-div { |
| | | width: 100%; |
| | | height: 100%; |
| | | background-size: cover; |
| | | background-position: center; |
| | | } |
| | | } |
| | | </style> |