This commit is contained in:
Teo
2025-09-04 11:06:45 +08:00
parent 9d1f96309f
commit 910b24019e
83 changed files with 8390 additions and 834 deletions

View File

@ -6,7 +6,7 @@
<el-row :gutter="20" justify="space-around">
<el-col :span="12">
<el-form-item label="人脸照">
<el-image :src="userDetail?.facePicUrl" style="width: 150px; height: 150px" />
<el-image :src="userDetail?.pacePhoto" style="width: 150px; height: 150px" />
</el-form-item>
</el-col>
<el-col :span="12">
@ -31,7 +31,7 @@
</el-col>
<el-col :span="12">
<el-form-item label="民族">
{{ userDetail?.nation }}
{{ userDetail?.sfzNation }}
</el-form-item>
</el-col>
<el-col :span="12">
@ -95,7 +95,7 @@
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="施工单位">
{{ userDetail?.contractorVo?.name }}
{{ userDetail?.lwName }}
</el-form-item>
</el-col>
<el-col :span="12">
@ -112,7 +112,7 @@
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="班组">
{{ userDetail?.teamVo?.teamName }}
{{ userDetail?.bzName }}
</el-form-item>
</el-col>
<el-col :span="12">
@ -154,7 +154,7 @@ const userDetail = ref<ConstructionUserVO>();
const getUserDetail = async () => {
loading.value = true;
const res = await getConstructionUser(props.userId);
if (res.data && res.code === 200) {
if (res.data && res.code === 0) {
userDetail.value = res.data;
}
loading.value = false;