mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-09-06 16:07:17 +08:00
add work/project description
This commit is contained in:
@@ -143,6 +143,17 @@
|
|||||||
<el-input v-model="exp.positionName" />
|
<el-input v-model="exp.positionName" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
|
<el-form-item label="工作描述" style="margin-bottom: 18px">
|
||||||
|
<el-input
|
||||||
|
v-model="exp.workDescription"
|
||||||
|
type="textarea"
|
||||||
|
:autosize="{
|
||||||
|
minRows: 6,
|
||||||
|
maxRows: 8
|
||||||
|
}"
|
||||||
|
font-size-12px
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="工作业绩">
|
<el-form-item label="工作业绩">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="exp.performance"
|
v-model="exp.performance"
|
||||||
@@ -248,6 +259,17 @@
|
|||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
|
<el-form-item label="项目描述" style="margin-bottom: 18px">
|
||||||
|
<el-input
|
||||||
|
v-model="proj.projectDescription"
|
||||||
|
type="textarea"
|
||||||
|
:autosize="{
|
||||||
|
minRows: 6,
|
||||||
|
maxRows: 8
|
||||||
|
}"
|
||||||
|
font-size-12px
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
<el-form-item label="项目业绩">
|
<el-form-item label="项目业绩">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="proj.performance"
|
v-model="proj.performance"
|
||||||
@@ -302,6 +324,7 @@ interface ResumeContent {
|
|||||||
startYearMon: string | null
|
startYearMon: string | null
|
||||||
endYearMon: string | null
|
endYearMon: string | null
|
||||||
performance: string
|
performance: string
|
||||||
|
workDescription: string
|
||||||
}>
|
}>
|
||||||
geekProjExpList: Array<{
|
geekProjExpList: Array<{
|
||||||
name: string
|
name: string
|
||||||
@@ -372,7 +395,8 @@ function getNewWorkExpItem() {
|
|||||||
endYearMon: '',
|
endYearMon: '',
|
||||||
positionName: '',
|
positionName: '',
|
||||||
startYearMon: '',
|
startYearMon: '',
|
||||||
performance: ''
|
performance: '',
|
||||||
|
workDescription: ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function addWorkExp() {
|
function addWorkExp() {
|
||||||
|
|||||||
Reference in New Issue
Block a user