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