退料签名
This commit is contained in:
parent
1de8398a4d
commit
c0ab280ba1
|
|
@ -118,7 +118,16 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
||||||
<span>退料人:</span>
|
<div style="width: 35%">退料人:</div>
|
||||||
|
<div style="width: 65%; display: flex; align-items: center; flex-wrap: wrap" v-if="backSignUrl">
|
||||||
|
<div style="width: 80%; margin-left: 10px">
|
||||||
|
<img
|
||||||
|
:src="backSignUrl"
|
||||||
|
style="width: 40px; height: 100px; transform: rotate(-90deg); max-width: 100%"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
||||||
<span>制单:</span>
|
<span>制单:</span>
|
||||||
|
|
@ -126,9 +135,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</vue-easy-print>
|
</vue-easy-print>
|
||||||
<div>
|
|
||||||
<el-button type="primary" @click="print">打印</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" width="1000px" append-to-body>
|
||||||
<div style="height: 500px; overflow-y: scroll; padding: 0 20px">
|
<div style="height: 500px; overflow-y: scroll; padding: 0 20px">
|
||||||
|
|
@ -204,7 +210,16 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
||||||
<span>退料人:</span>
|
<div style="width: 35%">退料人:</div>
|
||||||
|
<div style="width: 65%; display: flex; align-items: center; flex-wrap: wrap" v-if="backSignUrl">
|
||||||
|
<div style="width: 80%; margin-left: 10px">
|
||||||
|
<img
|
||||||
|
:src="backSignUrl"
|
||||||
|
style="width: 40px; height: 100px; transform: rotate(-90deg); max-width: 100%"
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
<div class="item" style="width: 24%; display: flex; align-items: center; flex-wrap: wrap">
|
||||||
<span>制单:</span>
|
<span>制单:</span>
|
||||||
|
|
@ -217,6 +232,9 @@
|
||||||
<el-button type="primary" @click="remarksPrint">打印</el-button>
|
<el-button type="primary" @click="remarksPrint">打印</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
<div>
|
||||||
|
<el-button type="primary" @click="print">打印</el-button>
|
||||||
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -270,7 +288,8 @@ export default {
|
||||||
tableSubData: [],
|
tableSubData: [],
|
||||||
open: false,
|
open: false,
|
||||||
title: '',
|
title: '',
|
||||||
directAuditSignUrl: ''
|
directAuditSignUrl: '',
|
||||||
|
backSignUrl: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
@ -283,6 +302,7 @@ export default {
|
||||||
console.log(res)
|
console.log(res)
|
||||||
this.tableData = res.data.backApplyDetailsList
|
this.tableData = res.data.backApplyDetailsList
|
||||||
this.directAuditSignUrl = res.data.backApplyInfo.directAuditSignUrl
|
this.directAuditSignUrl = res.data.backApplyInfo.directAuditSignUrl
|
||||||
|
this.backSignUrl = res.data.backApplyInfo.backSignUrl
|
||||||
console.log('222222222', this.directAuditSignUrl)
|
console.log('222222222', this.directAuditSignUrl)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue