|
@@ -17,7 +17,7 @@
|
|
|
</el-descriptions-item>
|
|
|
<el-descriptions-item label="审核意见">{{ taskList.comments ? taskList.comments : '无' }}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
- <el-form ref="form" :model="taskList" label-width="auto" style="margin-top: 20px">
|
|
|
+ <el-form ref="form" align="top" :model="taskList" label-width="auto" style="margin-top: 20px">
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
<el-col :span="12">
|
|
@@ -25,7 +25,7 @@
|
|
|
</el-col>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="头像:">
|
|
|
+ <el-form-item label="头像:" style="display: flex;align-items: center;">
|
|
|
<el-image
|
|
|
:fit="'contain'"
|
|
|
style="
|
|
@@ -36,7 +36,11 @@
|
|
|
:z-index="50000"
|
|
|
:src="baseUrl + getFormobjAttribute('userAvatar')"
|
|
|
@click="showImagePreview(taskList.formobj.userAvatar)"
|
|
|
- ></el-image>
|
|
|
+ >
|
|
|
+ <div slot="error" class="image-slot">
|
|
|
+ -
|
|
|
+ </div>
|
|
|
+ </el-image>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -88,34 +92,42 @@
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="学位证书:">
|
|
|
+ <el-form-item label="学位证书:" style="display: flex;align-items: center;">
|
|
|
<el-image
|
|
|
:fit="'contain'"
|
|
|
style="
|
|
|
- width: 30%;
|
|
|
+ width: 100px;
|
|
|
margin-top: 10px;
|
|
|
border-radius: 5px;
|
|
|
margin-bottom: -15px;"
|
|
|
:z-index="50000"
|
|
|
:src="baseUrl + getFormobjAttribute('diploma')"
|
|
|
@click="showImagePreview(taskList.formobj.diploma)"
|
|
|
- ></el-image>
|
|
|
+ >
|
|
|
+ <div slot="error" class="image-slot">
|
|
|
+ -
|
|
|
+ </div>
|
|
|
+ </el-image>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="资格证书:">
|
|
|
+ <el-form-item label="资格证书:" style="display: flex;align-items: center;">
|
|
|
<el-image
|
|
|
:fit="'contain'"
|
|
|
style="
|
|
|
- width: 100px;
|
|
|
- margin-top: 10px;
|
|
|
- border-radius: 5px;
|
|
|
- margin-bottom: -15px;
|
|
|
- "
|
|
|
+ width: 100px;
|
|
|
+ margin-top: 10px;
|
|
|
+ border-radius: 5px;
|
|
|
+ margin-bottom: -15px;
|
|
|
+ "
|
|
|
:z-index="50000"
|
|
|
:src="baseUrl + getFormobjAttribute('credentials')"
|
|
|
@click="showImagePreview(taskList.formobj.credentials)"
|
|
|
- ></el-image>
|
|
|
+ >
|
|
|
+ <div slot="error" class="image-slot">
|
|
|
+ -
|
|
|
+ </div>
|
|
|
+ </el-image>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -193,7 +205,7 @@ export default {
|
|
|
if(this.taskList.formobj) {
|
|
|
return this.taskList.formobj[key];
|
|
|
} else {
|
|
|
- return "";
|
|
|
+ return "#";
|
|
|
}
|
|
|
},
|
|
|
}
|