fix(job-data): 调整作业数据查看页面布局和签名显示

- 修改涉及相关单位表格列跨度从3列调整为5列
- 注释监护人签名图片显示相关代码
- 调整断路地段示意图区域的签名显示逻辑
- 将项目管理签名替换为作业用户签名显示
- 修正签字区域的时间戳显示字段
dev_flv
wangyan 2026-01-09 15:29:04 +08:00
parent 27dc13ffdb
commit 4ede8271c4
1 changed files with 31 additions and 33 deletions

View File

@ -35,20 +35,20 @@
</tr>
<tr>
<td class="title">涉及相关单位部门</td>
<td colspan="3">{{ data.info.OTHER_DEPT }}</td>
<td class="title">监护人</td>
<td>
<img
v-for="(item, index) in data.signs.GUARDIAN?.[0].SIGN_PATH"
:key="index"
v-viewer
:src="VITE_FILE_URL + item"
alt=""
width="25"
height="30"
class="mr-10 mt-10"
/>
</td>
<td colspan="5">{{ data.info.OTHER_DEPT }}</td>
<!-- <td class="title">监护人</td>-->
<!-- <td>-->
<!-- <img-->
<!-- v-for="(item, index) in data.signs.GUARDIAN?.[0].SIGN_PATH"-->
<!-- :key="index"-->
<!-- v-viewer-->
<!-- :src="VITE_FILE_URL + item"-->
<!-- alt=""-->
<!-- width="25"-->
<!-- height="30"-->
<!-- class="mr-10 mt-10"-->
<!-- />-->
<!-- </td>-->
</tr>
<tr>
<td class="title">断路原因</td>
@ -64,37 +64,35 @@
断路地段示意图可另附图及相关说明{{ data.info.WORK_CONTENT }}
</div>
<div
v-if="data.info.CONTENT_IMG_PATH"
style="
v-if="data.info.CONTENT_IMG_PATH"
style="
display: flex;
justify-content: space-between;
margin-top: 20px;
"
>
<img
v-viewer
:src="VITE_FILE_URL + data.info.CONTENT_IMG_PATH?.[0]"
alt=""
width="25"
height="30"
class="mr-10 mt-10"
/>
<div>
签字
<img
v-for="(item, index) in data.signs.PROJECT_MANAGER?.[0]
.SIGN_PATH"
:key="index"
v-viewer
:src="VITE_FILE_URL + item"
:src="VITE_FILE_URL + data.info.CONTENT_IMG_PATH?.[0]"
alt=""
width="25"
height="30"
class="mr-10 mt-10"
/>
<div
v-for="(item, index) in data.signs.WORK_USER?.[0].SIGN_PATH"
:key="index"
>
签字
<img
v-viewer
:src="VITE_FILE_URL + item"
alt=""
width="25"
height="30"
class="mr-10 mt-10"
/>
<span>{{
data.signs.PROJECT_MANAGER?.[0].SIGN_TIME[index]
}}</span>
<span>{{ data.signs.WORK_USER?.[0].SIGN_TIME[index] }}</span>
</div>
</div>
</td>