配件领料单签名
This commit is contained in:
parent
90b95f2b7d
commit
0b595efa37
|
|
@ -195,7 +195,7 @@
|
|||
</table>
|
||||
</div>
|
||||
<div class="fillIn" style="margin-top: 50px; display: flex; justify-content: space-between">
|
||||
<div class="item" style="width: 23%; display: flex; align-items: flex-start; flex-wrap: wrap">
|
||||
<div class="item" style="width: 25%; display: flex; align-items: flex-start; flex-wrap: wrap">
|
||||
<div style="width: 30%">审核:</div>
|
||||
<div
|
||||
style="width: 70%; display: flex; align-items: center; flex-wrap: wrap"
|
||||
|
|
@ -215,27 +215,21 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" style="width: 24%; display: flex; align-items: flex-start; flex-wrap: wrap">
|
||||
<div style="width: 30%">领料:</div>
|
||||
<div class="item" style="width: 25%; display: flex; align-items: flex-start">
|
||||
<div style="width: 25%">领料:</div>
|
||||
<div
|
||||
style="width: 70%; display: flex; align-items: center; flex-wrap: wrap; transform: translateY(-30px)"
|
||||
v-if="outSignList.length > 0"
|
||||
style="width: 75%; margin-left: 20px; transform: translateY(-30px)"
|
||||
v-if="leaseSignInfo.outSignUrl"
|
||||
>
|
||||
<div
|
||||
style="width: 80%; margin-left: 20px; height: 40px"
|
||||
v-for="(item, index) in outSignList"
|
||||
:key="index"
|
||||
>
|
||||
<img
|
||||
:src="item.outSignUrl"
|
||||
style="width: 40px; height: 90px; max-width: 100%"
|
||||
:style="{ transform: item.outSignType == 0 ? 'rotate(-90deg)' : '' }"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
<img
|
||||
:src="leaseSignInfo.outSignUrl"
|
||||
style="width: 40px; height: 90px; max-width: 100%"
|
||||
:style="{ transform: leaseSignInfo.outSignType == 0 ? 'rotate(-90deg)' : '' }"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" style="width: 28%; display: flex; align-items: flex-start">
|
||||
<div class="item" style="width: 25%; display: flex; align-items: flex-start">
|
||||
<div style="width: 25%">库管:</div>
|
||||
<div
|
||||
style="width: 75%; display: flex; align-items: center; flex-wrap: wrap; transform: translateY(-30px)"
|
||||
|
|
@ -259,12 +253,12 @@
|
|||
<div style="width: 25%">制单:</div>
|
||||
<div
|
||||
style="width: 75%; margin-left: 20px; transform: translateY(-30px)"
|
||||
v-if="leaseApplyData.leaseSignUrl"
|
||||
v-if="leaseSignInfo.outSignUrl"
|
||||
>
|
||||
<img
|
||||
:src="leaseApplyData.leaseSignUrl"
|
||||
:src="leaseSignInfo.outSignUrl"
|
||||
style="width: 40px; height: 90px; max-width: 100%"
|
||||
:style="{ transform: leaseApplyData.leaseSignType == 0 ? 'rotate(-90deg)' : '' }"
|
||||
:style="{ transform: leaseSignInfo.outSignType == 0 ? 'rotate(-90deg)' : '' }"
|
||||
alt=""
|
||||
/>
|
||||
</div>
|
||||
|
|
@ -333,7 +327,8 @@ export default {
|
|||
leaseApplyData: {}, // 领料单信息
|
||||
approveSignList: [], // 审批签字列表
|
||||
outSignList: [], // 领料签字列表
|
||||
kgSignList: [] // 库管签字列表
|
||||
kgSignList: [], // 库管签字列表
|
||||
leaseSignInfo: {}
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
|
@ -354,6 +349,9 @@ export default {
|
|||
this.leaseApplyData = res.data.details
|
||||
this.leaseApplyData.createTime = row.createTime
|
||||
this.leaseApplyData.code = row.code
|
||||
this.leaseSignInfo = res.data.leaseSignInfo || {}
|
||||
this.kgSignList = res.data.kgSignList || []
|
||||
this.approveSignList = res.data.approveSignInfo || []
|
||||
} catch (error) {
|
||||
console.log('🚀 ~ handleLld ~ error:', error)
|
||||
} finally {
|
||||
|
|
|
|||
Loading…
Reference in New Issue