This commit is contained in:
parent
5160fa135d
commit
5104141989
|
|
@ -205,7 +205,7 @@
|
|||
</el-dialog>
|
||||
|
||||
<!-- 领料单弹窗 -->
|
||||
<el-dialog :visible.sync="open" width="800px" :title="title" append-to-body>
|
||||
<el-dialog :visible.sync="open" width="1090px" :title="title" append-to-body>
|
||||
<div style="height: 500px; overflow-y: scroll; padding: 0 20px">
|
||||
<!-- <vue-easy-print tableShow ref="remarksPrintRef" > -->
|
||||
<div id="checkIdTwo">
|
||||
|
|
@ -237,7 +237,7 @@
|
|||
|
||||
<el-table :data="leaseApplyDetails" class="table" border style="width: 100%;">
|
||||
<el-table-column label="序号" align="center" type="index" width="60px"/>
|
||||
<el-table-column label="物资名称" align="center" prop="typeName" />
|
||||
<el-table-column label="物资名称" align="center" prop="maTypeName" />
|
||||
<el-table-column label="规格型号" align="center" prop="typeName" />
|
||||
<el-table-column label="计量单位" align="center" prop="unitName" />
|
||||
<el-table-column label="领用数量" align="center" prop="preNum" />
|
||||
|
|
@ -251,29 +251,31 @@
|
|||
</el-table>
|
||||
|
||||
<div class="fillIn" style="margin-top: 30px;display: flex;justify-content: space-between;">
|
||||
<div class="item" style="width: 24%;display: flex;align-items: center;flex-wrap: wrap;">
|
||||
<div class="item" style="width: 23%;display: flex;align-items: center;flex-wrap: wrap;">
|
||||
<div style="width: 30%;">审核:</div>
|
||||
<div style="width: 70%;display: flex;align-items: center;flex-wrap: wrap;" v-if="leaseApplyData.directAuditSignUrl">
|
||||
<div style="width: 80%;margin-left: 20px;">
|
||||
<img :src="leaseApplyData.directAuditSignUrl" style="width: 40px;height: 100px;transform: rotate(-90deg);max-width: 100%;" alt="">
|
||||
</div>
|
||||
<div style="width: 70%;display: flex;align-items: center;flex-wrap: wrap;" v-if="leaseApplyData.leaseSignUrl">
|
||||
<!-- <div style="width: 80%;margin-left: 20px;">
|
||||
<img :src="leaseApplyData.leaseSignUrl" style="width: 40px;height: 100px;transform: rotate(-90deg);max-width: 100%;" alt="">
|
||||
</div> -->
|
||||
</div>
|
||||
<!-- <img :src="leaseApplyData.directAuditSignUrl" style="width: 40px;height: 100px;transform: rotate(-90deg);max-width: 100%;" alt=""> -->
|
||||
</div>
|
||||
<div class="item" style="width: 24%;display: flex;align-items: center;flex-wrap: wrap;">
|
||||
<span>领料:</span>
|
||||
<div style="width: 30%;">领料:</div>
|
||||
<div style="width: 70%;display: flex;align-items: center;flex-wrap: wrap;" v-if="leaseApplyData.leaseSignUrl">
|
||||
<div style="width: 80%;margin-left: 20px;">
|
||||
<img :src="leaseApplyData.leaseSignUrl" style="width: 40px;height: 100px;max-width: 100%;" :class="{'is-rotate': leaseApplyData.leaseSignType == 0}" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" style="width: 28%;display: flex;align-items: center;">
|
||||
<div style="width: 25%;">库管:</div>
|
||||
<div style="width: 75%;display: flex;align-items: center;flex-wrap: wrap;">
|
||||
<img src="../../../../../assets/signTemp.png" style="width: 45%;height: 30px;" alt="">
|
||||
<img src="../../../../../assets/signTemp.png" style="width: 45%;height: 30px;" alt="">
|
||||
<img src="../../../../../assets/signTemp.png" style="width: 45%;height: 30px;" alt="">
|
||||
<img src="../../../../../assets/signTemp.png" style="width: 45%;height: 30px;" alt="">
|
||||
<div style="width: 75%;display: flex;align-items: center;flex-wrap: wrap;" v-if="kgSignList.length > 0">
|
||||
<img v-for="(item, index) in kgSignList" :key="index" :src="item.outSignUrl" :class="{'is-rotate': leaseApplyData.outSignType == 0}" style="width: 45%;height: 30px;" alt="">
|
||||
</div>
|
||||
</div>
|
||||
<div class="item" style="width: 24%;display: flex;align-items: center;flex-wrap: wrap;">
|
||||
<span>制单:</span>
|
||||
<div class="item" style="width: 25%;display: flex;align-items: center;">
|
||||
<div style="width: 25%;">制单:</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -403,6 +405,7 @@ export default {
|
|||
showView: false,
|
||||
titleView: "",
|
||||
getListViewInfo: [],
|
||||
kgSignList: [], // 库管签名
|
||||
};
|
||||
},
|
||||
created() {
|
||||
|
|
@ -560,6 +563,8 @@ export default {
|
|||
const res = await getApplyInfo(ids);
|
||||
this.leaseApplyDetails = res.data.leaseApplyDetailsList;
|
||||
this.leaseApplyData = res.data.leaseApplyInfo;
|
||||
this.kgSignList = res.data.kgSignList
|
||||
console.log('🚀 ~ handleLld ~ this.kgSignList:', this.kgSignList)
|
||||
},
|
||||
|
||||
//出库检验单打印
|
||||
|
|
@ -1133,6 +1138,9 @@ export default {
|
|||
// width: 70px !important;
|
||||
// margin-bottom: 10px;
|
||||
// }
|
||||
.is-rotate {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
.image-type {
|
||||
/* 旋转图片 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue