代码提交

This commit is contained in:
jiang 2025-11-28 09:57:19 +08:00
parent d43f527728
commit c7f07d2586
6 changed files with 413 additions and 321 deletions

View File

@ -161,6 +161,7 @@
</el-form> </el-form>
<el-card class="content-box"> <el-card class="content-box">
<el-row> <el-row>
<el-col :span="24" style="text-align: right;"> <el-col :span="24" style="text-align: right;">
<el-button <el-button
@ -171,6 +172,14 @@
> >
新增装备 新增装备
</el-button> </el-button>
<el-button
type="primary"
size="mini"
@click="handleImport"
v-show=" !isAddVisible"
>
批量导入
</el-button>
</el-col> </el-col>
</el-row> </el-row>
<!-- 表格 --> <!-- 表格 -->
@ -202,13 +211,17 @@
</el-table-column> </el-table-column>
<el-table-column prop="name" label="装备名称" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="name" label="装备名称" show-overflow-tooltip align="center" min-width="100"/>
<el-table-column prop="specificationModel" label="规格型号" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="specificationModel" label="规格型号" show-overflow-tooltip align="center"
min-width="100"
/>
<el-table-column prop="originalCode" label="装备原始编码" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="originalCode" label="装备原始编码" show-overflow-tooltip align="center" min-width="100"/>
<el-table-column prop="unit" label="计量单位" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="unit" label="计量单位" show-overflow-tooltip align="center" min-width="100"/>
<el-table-column prop="manufacturer" label="生产厂家" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="manufacturer" label="生产厂家" show-overflow-tooltip align="center" min-width="100"/>
<el-table-column prop="productionDate" label="出厂日期" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="productionDate" label="出厂日期" show-overflow-tooltip align="center" min-width="100"/>
<!-- <el-table-column prop="orderNumber" label="采购日期" align="center"/>--> <!-- <el-table-column prop="orderNumber" label="采购日期" align="center"/>-->
<el-table-column prop="originalValue" label="资产原值(元)" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="originalValue" label="资产原值(元)" show-overflow-tooltip align="center"
min-width="100"
/>
<!-- <el-table-column prop="orderNumber" label="最大使用年限(年)" align="center"/>--> <!-- <el-table-column prop="orderNumber" label="最大使用年限(年)" align="center"/>-->
<!-- <el-table-column prop="orderNumber" label="下次维保日期" align="center"/>--> <!-- <el-table-column prop="orderNumber" label="下次维保日期" align="center"/>-->
<el-table-column prop="province" label="所属省份" show-overflow-tooltip align="center" min-width="100"/> <el-table-column prop="province" label="所属省份" show-overflow-tooltip align="center" min-width="100"/>
@ -222,7 +235,9 @@
<span style="color: #00a288; cursor: pointer" @click="handleView(row, 2)">查看</span> <span style="color: #00a288; cursor: pointer" @click="handleView(row, 2)">查看</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="inspectionReports" label="定期检验报告" show-overflow-tooltip align="center" min-width="100"> <el-table-column prop="inspectionReports" label="定期检验报告" show-overflow-tooltip align="center"
min-width="100"
>
<template v-slot="{ row }"> <template v-slot="{ row }">
<span style="color: #00a288; cursor: pointer" @click="handleView(row, 3)">查看</span> <span style="color: #00a288; cursor: pointer" @click="handleView(row, 3)">查看</span>
</template> </template>
@ -317,7 +332,43 @@
<el-button @click="dialogVisible = false"> </el-button> <el-button @click="dialogVisible = false"> </el-button>
</span> </span>
</el-dialog> </el-dialog>
<el-dialog
:title="upload.title"
:visible.sync="upload.open"
width="400px"
append-to-body
>
<el-upload
ref="upload"
:limit="1"
accept=".xlsx, .xls"
:headers="upload.headers"
:action="upload.url + '?orderId=' + orderId"
:disabled="upload.isUploading"
:on-progress="handleFileUploadProgress"
:on-success="handleFileSuccess"
:auto-upload="false"
drag
>
<i class="el-icon-upload"></i>
<div class="el-upload__text">将文件拖到此处<em>点击上传</em></div>
<div class="el-upload__tip text-center" slot="tip">
<span>仅允许导入xlsxlsx格式文件</span>
<el-link
type="primary"
:underline="false"
style="font-size: 12px; vertical-align: baseline"
@click="importTemplate"
>下载模板
</el-link
>
</div>
</el-upload>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitFileForm"> </el-button>
<el-button @click="upload.open = false"> </el-button>
</div>
</el-dialog>
</div> </div>
@ -334,6 +385,7 @@ import {
removeDeviceApi removeDeviceApi
} from '@/api/EquipmentEntryApply' } from '@/api/EquipmentEntryApply'
import { getManufacturerSelectApi } from '@/api/EquipmentLedger/index.js' import { getManufacturerSelectApi } from '@/api/EquipmentLedger/index.js'
import { getToken } from '@/utils/auth'
export default { export default {
name: 'EquipmentInput', name: 'EquipmentInput',
@ -342,7 +394,7 @@ export default {
created() { created() {
console.log(this.$route) console.log(this.$route)
this.orderId = this.$route.query && this.$route.query.orderId this.orderId = this.$route.query && this.$route.query.orderId
this.isAddVisible = this.$route.query && this.$route.query.isAddVisible == 'true' this.isAddVisible = this.$route.query && this.$route.query.isAddVisible
this.isApprovalVisible = this.$route.query && this.$route.query.isApprovalVisible this.isApprovalVisible = this.$route.query && this.$route.query.isApprovalVisible
if (!this.orderId) { if (!this.orderId) {
this.pageTitle = '新增设备录入' this.pageTitle = '新增设备录入'
@ -367,6 +419,20 @@ export default {
// //
tableData: [], tableData: [],
total: 0, total: 0,
upload: {
//
open: false,
//
title: '',
//
isUploading: false,
//
//
headers: { Authorization: 'Bearer ' + getToken() },
//
url: process.env.VUE_APP_BASE_API + '/material-mall/order/importData'
},
queryParams: { queryParams: {
orderCreateUser: '', orderCreateUser: '',
orderCreateTime: '', orderCreateTime: '',
@ -411,11 +477,11 @@ export default {
{ key: 40, label: `特征项8`, prop: 'featureItem8', visible: true }, { key: 40, label: `特征项8`, prop: 'featureItem8', visible: true },
{ key: 41, label: `特征值8`, prop: 'featureValue8', visible: true }, { key: 41, label: `特征值8`, prop: 'featureValue8', visible: true },
{ key: 42, label: `特征项9`, prop: 'featureItem9', visible: true }, { key: 42, label: `特征项9`, prop: 'featureItem9', visible: true },
{ key: 43, label: `特征值9`, prop: 'featureValue9', visible: true }, { key: 43, label: `特征值9`, prop: 'featureValue9', visible: true }
], ],
dialogVisible: false, dialogVisible: false,
dialogTitle: '', dialogTitle: '',
dialogList: [], dialogList: []
} }
}, },
watch: { watch: {
@ -429,6 +495,22 @@ export default {
this.getManufacturerSelectList() this.getManufacturerSelectList()
}, },
methods: { methods: {
//
handleFileUploadProgress(event, file, fileList) {
this.upload.isUploading = true
},
//
handleFileSuccess(response, file, fileList) {
this.upload.open = false
this.upload.isUploading = false
this.$refs.upload.clearFiles()
this.$alert('<div style=\'overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;\'>' + response.msg + '</div>', '导入结果', { dangerouslyUseHTMLString: true })
this.getList()
},
//
submitFileForm() {
this.$refs.upload.submit()
},
// //
getManufacturerSelectList() { getManufacturerSelectList() {
getManufacturerSelectApi().then((res) => { getManufacturerSelectApi().then((res) => {
@ -582,7 +664,10 @@ export default {
} }
} }
}, },
handleImport() {
this.upload.title = '导入'
this.upload.open = true
},
// //
editRowInfo(row) { editRowInfo(row) {
// this.orderId = orderId.toString() // this.orderId = orderId.toString()
@ -638,7 +723,7 @@ export default {
this.dialogList = row.purchaseInvoices || [] this.dialogList = row.purchaseInvoices || []
} }
this.dialogVisible = true this.dialogVisible = true
}, }
} }
} }
</script> </script>
@ -745,6 +830,7 @@ export default {
&.el-table--striped .el-table__body tr.el-table__row:hover > td.el-table__cell { &.el-table--striped .el-table__body tr.el-table__row:hover > td.el-table__cell {
background-color: #CCF1E9 !important; background-color: #CCF1E9 !important;
} }
.el-table__body tr.hover-row > td.el-table__cell { .el-table__body tr.hover-row > td.el-table__cell {
background-color: #ccf1e9 !important; background-color: #ccf1e9 !important;
} }

View File

@ -124,7 +124,8 @@
</el-row> </el-row>
<div class="dialog-table"> <div class="dialog-table">
<table border="1" cellspacing="0" cellpadding="6" <table border="1" cellspacing="0" cellpadding="6"
style="width: 100%; border-collapse: collapse; text-align: center;"> style="width: 100%; border-collapse: collapse; text-align: center;"
>
<thead> <thead>
<tr> <tr>
<th style="width: 100px;">序号</th> <th style="width: 100px;">序号</th>
@ -248,7 +249,7 @@ export default {
{ {
...this.queryParams ...this.queryParams
}, },
`装备流转记录.xlsx` `维修记录_${new Date().getTime()}.xlsx`
) )
}, },

View File

@ -258,7 +258,7 @@ export default {
{ {
...this.queryParams ...this.queryParams
}, },
`装备流转记录.xlsx` `出库记录_${new Date().getTime()}.xlsx`
) )
}, },

View File

@ -259,7 +259,7 @@ export default {
{ {
...this.queryParams ...this.queryParams
}, },
`装备流转记录.xlsx` `退役记录_${new Date().getTime()}.xlsx`
) )
}, },

View File

@ -11,7 +11,8 @@
<el-form-item label="操作时间"> <el-form-item label="操作时间">
<el-date-picker v-model="dateRange" type="datetimerange" range-separator="" style="width: 240px" <el-date-picker v-model="dateRange" type="datetimerange" range-separator="" style="width: 240px"
value-format="yyyy-MM-dd" end-placeholder="结束日期" start-placeholder="开始日期" /> value-format="yyyy-MM-dd" end-placeholder="结束日期" start-placeholder="开始日期"
/>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="12" style="text-align: right;"> <el-col :span="12" style="text-align: right;">
@ -85,7 +86,8 @@
<div class="pagination-container-fage" style="flex-shrink: 0;"> <div class="pagination-container-fage" style="flex-shrink: 0;">
<pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" <pagination :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
@pagination="getRoamRecordList" /> @pagination="getRoamRecordList"
/>
</div> </div>
</el-card> </el-card>
<!-- 出库记录单 --> <!-- 出库记录单 -->
@ -115,7 +117,9 @@
</el-col> </el-col>
</el-row> </el-row>
<div class="dialog-table"> <div class="dialog-table">
<table border="1" cellspacing="0" cellpadding="6" style="width: 100%; border-collapse: collapse; text-align: center;"> <table border="1" cellspacing="0" cellpadding="6"
style="width: 100%; border-collapse: collapse; text-align: center;"
>
<thead> <thead>
<tr> <tr>
<th style="width: 100px;">序号</th> <th style="width: 100px;">序号</th>
@ -245,7 +249,7 @@ export default {
{ {
...this.queryParams ...this.queryParams
}, },
`装备流转记录.xlsx` `退库记录_${new Date().getTime()}.xlsx`
) )
}, },
@ -282,7 +286,6 @@ export default {
} }
.button-group { .button-group {
float: right; float: right;
margin-left: 10px; margin-left: 10px;
@ -296,6 +299,7 @@ export default {
margin-bottom: 20px; margin-bottom: 20px;
border-radius: 8px; border-radius: 8px;
padding: 0; padding: 0;
::v-deep .el-card__body { ::v-deep .el-card__body {
padding: 20px !important; padding: 20px !important;
} }
@ -432,6 +436,7 @@ export default {
} }
} }
} }
table { table {
width: 100%; width: 100%;
border-collapse: collapse; /* ✅ 连起来的关键 */ border-collapse: collapse; /* ✅ 连起来的关键 */

View File

@ -4,7 +4,7 @@
<el-row :gutter="20"> <el-row :gutter="20">
<!--部门数据--> <!--部门数据-->
<el-col :span="4" :xs="24"> <el-col :span="5" :xs="24">
<div class="head-container"> <div class="head-container">
<el-input v-model="deptName" placeholder="请输入部门名称" clearable size="small" prefix-icon="el-icon-search" <el-input v-model="deptName" placeholder="请输入部门名称" clearable size="small" prefix-icon="el-icon-search"
style="margin-bottom: 20px" style="margin-bottom: 20px"
@ -22,7 +22,7 @@
<!--用户数据--> <!--用户数据-->
<!-- 查询条件卡片--> <!-- 查询条件卡片-->
<el-col :span="20" :xs="24"> <el-col :span="19" :xs="24">
<div class="card-container"> <div class="card-container">
<div class="card-header query-header"> <div class="card-header query-header">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"