This commit is contained in:
bb_pan 2025-04-18 10:29:18 +08:00
parent d02ec45f57
commit 22f562c0b2
4 changed files with 219 additions and 37 deletions

View File

@ -8,7 +8,7 @@
append-to-body
width="800px"
>
<div id="printcontent" style="height: 500px;overflow-y: scroll;padding: 0 20px;">
<div id="printcontent" style="height: 500px;overflow-y: scroll;padding: 0 20px;font-size: 13px;">
<vue-easy-print tableShow ref="printRef">
<div class="order_box">
<div class="order_box_one">
@ -32,7 +32,7 @@
</div>
</div>
</div>
<el-table :data="tableData" border style="width: 100%;margin-bottom: 10px;padding: 2px;">
<el-table :data="tableData" border style="width: 100%;margin-bottom: 10px;padding: 2px;font-size: 13px">
<el-table-column label="编号" align="center" type="index" />
<el-table-column
label="类型名称"

View File

@ -158,15 +158,17 @@
</el-button>
</el-col>
<!-- <el-col :span="1.5">
<el-col :span="1.5">
<el-button
v-if="!isView"
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button>
</el-col> -->
>导出</el-button
>
</el-col>
</el-row>
<el-table
@ -821,9 +823,13 @@ export default {
},
/** 导出按钮操作 */
handleExport() {
// this.download('system/role/export', {
// ...this.queryParams
// }, `role_${new Date().getTime()}.xlsx`)
this.download(
'base/tm_task/exportLeaseApplyListAll',
{
taskId: this.taskId,
},
`领料任务详情_${new Date().getTime()}.xlsx`,
)
},
checkNum(row) {
@ -853,7 +859,6 @@ export default {
} else {
this.handleData(val)
}
},
handleData(val) {
let nodes = null
@ -907,7 +912,6 @@ export default {
} catch (error) {
console.log('🚀 ~ handleDeviceType ~ error:', error)
}
},
////
handelTableItemData(node) {

View File

@ -251,8 +251,10 @@
scope.row.taskStatus == 98
"
>{{
scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0]
.companyAuditRemark || ''
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0]
.companyAuditRemark) ||
''
}}
</span>
<span
@ -261,7 +263,9 @@
scope.row.taskStatus == 99
"
>{{
scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].deptAuditRemark ||
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0]
.deptAuditRemark) ||
''
}}
</span>
@ -271,7 +275,9 @@
scope.row.taskStatus == 100
"
>{{
scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].directAuditRemark ||
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0]
.directAuditRemark) ||
''
}}
</span>
@ -281,19 +287,28 @@
scope.row.taskStatus < 98
"
>{{
scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].directAuditRemark ||
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0]
.directAuditRemark) ||
''
}}</span
>
<span v-if="scope.row.taskStatus > 100">{{
scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].directAuditRemark || ''
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0]
.directAuditRemark) ||
''
}}</span>
<!-- <span v-else>{{ scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].directAuditRemark }}</span> -->
</template>
</el-table-column>
<el-table-column label="备注" align="center" show-overflow-tooltip>
<template slot-scope="scope">
{{ scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].remark || '' }}
{{
(scope.row.leaseApplyInfoList &&
scope.row.leaseApplyInfoList[0].remark) ||
''
}}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="180">
@ -337,6 +352,13 @@
style="color: #f56c6c"
>删除</el-button
>
<el-button
icon="el-icon-tickets"
style="color: #67c23a"
type="text"
@click="openLld(scope.row)"
>领料单</el-button
>
</template>
</el-table-column>
</el-table>
@ -349,10 +371,147 @@
:page-sizes="[5, 10, 15, 20, 30]"
@pagination="getList"
/>
<!-- 领料单弹窗 -->
<el-dialog :visible.sync="open" width="800px" append-to-body>
<div style="height: 500px; overflow-y: scroll; padding: 0 20px">
<vue-easy-print tableShow ref="remarksPrintRef" class="print">
<div
class="title"
style="
text-align: center;
font-weight: 600;
font-size: 16px;
"
>
领料单
</div>
<div
class="info"
style="margin-top: 10px; display: flex; flex-wrap: wrap"
>
<div
class="item"
style="
width: 50%;
flex-shrink: 0;
margin-bottom: 5px;
font-size: 14px;
"
>
<span>领料单位</span>{{ leaseApplyData.unitName }}
</div>
<div
class="item"
style="
width: 50%;
flex-shrink: 0;
margin-bottom: 5px;
font-size: 14px;
"
>
<span>工程名称</span>{{ leaseApplyData.proName }}
</div>
<div
class="item"
style="
width: 50%;
flex-shrink: 0;
margin-bottom: 5px;
font-size: 14px;
"
>
<span>时间</span>{{ leaseApplyData.updateTimes }}
</div>
<div
class="item"
style="
width: 50%;
flex-shrink: 0;
margin-bottom: 5px;
font-size: 14px;
"
>
<span>编号</span>{{ leaseApplyData.code }}
</div>
</div>
<el-table
:data="leaseApplyDetails"
class="table"
border
style="margin-top: 20px; padding: 1px"
>
<!-- <el-table-column type="selection" width="55" align="center" />-->
<el-table-column
label="序号"
align="center"
type="index"
/>
<el-table-column
label="类型名称"
align="center"
prop="typeName"
/>
<el-table-column
label="规格型号"
align="center"
prop="typeModelName"
/>
<el-table-column
label="计量单位"
align="center"
prop="unitName"
/>
<el-table-column
label="预领数量"
align="center"
prop="preNum"
/>
<el-table-column
label="备注"
align="center"
prop="remark"
/>
<el-table-column
label="出库方式"
align="center"
prop="manageTypeName"
/>
</el-table>
<div
class="fillIn"
style="
margin-top: 30px;
display: flex;
justify-content: space-between;
"
>
<div class="item" style="width: 25%">
<span>审核</span>
</div>
<div class="item" style="width: 25%">
<span>领料</span>
</div>
<div class="item" style="width: 25%">
<span>仓库</span>
</div>
<div class="item" style="width: 25%">
<span>操作人</span>
</div>
</div>
</vue-easy-print>
</div>
<div slot="footer" class="dialog-footer" style="text-align: center">
<el-button type="primary" @click="print"> </el-button>
<el-button @click="open = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import vueEasyPrint from 'vue-easy-print'
import {
listType,
getType,
@ -366,10 +525,12 @@ import {
getUnitData,
getProData,
deleteTask,
getLeaseListAll,
} from '@/api/claimAndRefund/receive'
export default {
// name: "ReceiveApply",
components: { vueEasyPrint },
dicts: ['sys_normal_disable'],
props: {
routerParams: {
@ -381,6 +542,8 @@ export default {
},
data() {
return {
open: false,
leaseApplyData: {}, //
//
loading: false,
//
@ -461,14 +624,14 @@ export default {
const res = await getLeaseAuditListAll(params)
console.log('🚀 ~ getList ~ res:', res)
res.data.rows.forEach(item => {
res.data.rows.forEach((item) => {
switch (item.typeId) {
case '0':
item.typeId = '内部单位';
break;
item.typeId = '内部单位'
break
case '1':
item.typeId = '外部单位';
break;
item.typeId = '外部单位'
break
}
})
this.loading = false
@ -629,6 +792,21 @@ export default {
this.$store.dispatch('dict/cleanDict')
})
},
//
async openLld(row) {
this.open = true
const res = await getLeaseListAll({ taskId: row.taskId })
this.leaseApplyDetails = res.rows[0].leaseApplyDetails
this.leaseApplyData = res.rows[0]
console.log('this.leaseApplyData ============', this.leaseApplyData)
},
//
print() {
this.$refs.remarksPrintRef.print()
},
},
watch: {
$route: {

View File

@ -1199,7 +1199,7 @@ export default {
handleExportOuter() {
this.download(
'base/leaseOutDetails/exportOutboundOrder',
{ parentId: this.outboundParams.parentId },
{ ...this.outboundParams },
`出库单_${new Date().getTime()}.xlsx`,
)
},