bonus-ui/src/views/business/businessHandling/directApply.vue

875 lines
26 KiB
Vue
Raw Normal View History

2025-02-18 10:45:22 +08:00
<template>
<div class="app-container">
<el-form :model="maForm" ref="maForm" size="small" :rules="rules" label-width="100px" :disabled="isDetail">
<el-row :gutter="20" class="cont-center" style="margin-bottom: 20px">
<el-col :span="7" :offset="0">
<el-card shadow="always" :body-style="{ padding: '20px' }" style="min-width: 400px">
<!-- card body -->
<el-form-item label="转出单位" prop="unitId">
<treeselect
v-model="maForm.unitId"
:disabled="isEdit || isDetail"
:options="uniteList"
:normalizer="normalizer"
:show-count="true"
style="width: 240px"
:disable-branch-nodes="true"
noChildrenText="没有数据了"
noOptionsText="没有数据"
noResultsText="没有搜索结果"
placeholder="请选择转出单位"
@select="uniteChange"
/>
</el-form-item>
<el-form-item label="转出工程" prop="projectId">
<treeselect
v-model="maForm.projectId"
:disabled="isEdit || isDetail"
:options="projectList"
:normalizer="normalizer"
:show-count="true"
style="width: 240px"
:disable-branch-nodes="true"
noChildrenText="没有数据了"
noOptionsText="没有数据"
noResultsText="没有搜索结果"
placeholder="请选择转出工程"
@select="projectChange"
/>
</el-form-item>
<el-form-item label="转出人" prop="leasePerson">
<el-input
v-model="maForm.leasePerson"
placeholder="请输入转出人"
clearable
maxlength="50"
style="width: 240px"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="联系电话" prop="phone">
<el-input
v-model="maForm.phone"
placeholder="请输入联系电话"
clearable
maxlength="11"
style="width: 240px"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
</el-card>
</el-col>
<el-col :span="2" :offset="0">
<div class="cont-center">
<el-image
style="width: 100px; height: 100px"
:src="require('@/assets/img/transform.png')"
fit="fit"
></el-image>
</div>
</el-col>
<el-col :span="7" :offset="0">
<el-card shadow="always" :body-style="{ padding: '20px' }" style="min-width: 400px">
<!-- card body -->
2025-02-18 11:23:38 +08:00
<el-form-item label="转入单位" prop="unitIdTo">
2025-02-18 10:45:22 +08:00
<treeselect
2025-02-18 11:23:38 +08:00
v-model="maForm.unitIdTo"
2025-02-18 10:45:22 +08:00
:disabled="isDetail"
:options="uniteList"
:normalizer="normalizer"
:show-count="true"
style="width: 240px"
:disable-branch-nodes="true"
noChildrenText="没有数据了"
noOptionsText="没有数据"
noResultsText="没有搜索结果"
placeholder="请选择转入单位"
@select="uniteChange"
/>
</el-form-item>
2025-02-18 11:23:38 +08:00
<el-form-item label="转入工程" prop="projectIdTo">
2025-02-18 10:45:22 +08:00
<treeselect
2025-02-18 11:23:38 +08:00
v-model="maForm.projectIdTo"
2025-02-18 10:45:22 +08:00
:disabled="isDetail"
:options="projectList"
:normalizer="normalizer"
:show-count="true"
style="width: 240px"
:disable-branch-nodes="true"
noChildrenText="没有数据了"
noOptionsText="没有数据"
noResultsText="没有搜索结果"
placeholder="请选择转入工程"
@select="projectChange"
/>
</el-form-item>
2025-02-18 11:23:38 +08:00
<el-form-item label="转入人" prop="leasePersonTo">
2025-02-18 10:45:22 +08:00
<el-input
2025-02-18 11:23:38 +08:00
v-model="maForm.leasePersonTo"
2025-02-18 10:45:22 +08:00
placeholder="请输入转入人"
clearable
maxlength="50"
style="width: 240px"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
2025-02-18 11:23:38 +08:00
<el-form-item label="联系电话" prop="phoneTo">
2025-02-18 10:45:22 +08:00
<el-input
2025-02-18 11:23:38 +08:00
v-model="maForm.phoneTo"
2025-02-18 10:45:22 +08:00
placeholder="请输入联系电话"
clearable
maxlength="11"
style="width: 240px"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
</el-card>
</el-col>
<el-col :span="8" :offset="0">
<el-form-item label="" prop="bmFileInfos">
<el-upload
:action="uploadUrl"
:file-list="maForm.bmFileInfos"
:show-file-list="true"
:auto-upload="true"
:key="uploadKey"
:limit="3"
list-type="picture-card"
2025-02-18 11:23:38 +08:00
accept=".png, .jpg, .jpeg, .pdf"
2025-02-18 10:45:22 +08:00
:on-change="handleChangeBusinessList"
:class="{ disabledFbs: uploadDisabled }"
:on-preview="picturePreviewFbs"
:on-remove="handleRemoveElectricianImgList"
:disabled="isDetail"
>
<!-- 文件格式下载图片格式预览 -->
<div slot="file" slot-scope="{ file }">
<img v-if="isImage(file)" class="el-upload-list__item-thumbnail" :src="file.url" alt="" />
<div v-else class="picture-card-container">
<img class="picture-card" :src="urlTemp" alt="" />
<p class="file-name">{{ file.name }}</p>
</div>
<span class="el-upload-list__item-actions">
2025-02-18 11:23:38 +08:00
<span v-if="updataIf(file)" class="el-upload-list__item-delete" @click="handleDownload(file)">
<i class="el-icon-download" />
</span>
<span v-else class="el-upload-list__item-preview" @click="picturePreviewFbs(file)">
2025-02-18 10:45:22 +08:00
<i class="el-icon-zoom-in" />
</span>
<span
v-if="!isDetail"
class="el-upload-list__item-delete"
@click="handleRemoveElectricianImgList(file)"
>
<i class="el-icon-delete" />
</span>
</span>
</div>
<i class="el-icon-plus avatar-uploader-icon">
<div style="font-size: 14px; margin-top: 10px">上传图片</div>
</i>
</el-upload>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="10" class="mb8">
<el-form v-show="showSearch" :model="queryParams" ref="queryForm" size="small" inline>
<el-form-item label="物资类型" prop="materialType">
<el-select v-model="queryParams.materialType" placeholder="请选择物资类型" clearable filterable>
<el-option v-for="item in materialTypeOpts" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
</el-form-item>
<el-form-item label="规格型号" prop="typeModelName">
<el-select v-model="queryParams.typeModelName" placeholder="请选择规格型号" clearable filterable>
<el-option v-for="item in typeModelNameOpts" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
</el-form-item>
<el-form-item label="关键字" prop="keyWord">
<el-input
v-model="queryParams.keyWord"
placeholder="请输入关键字"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- 表单按钮 -->
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" @click="handleReset">重置</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleSave" v-if="!isDetail">
{{ isEdit ? '保存' : '发起申请' }}
</el-button>
<el-button type="primary" plain icon="el-icon-arrow-left" size="mini" @click="handleApplyRecord">
直转记录查看
</el-button>
</el-form-item>
</el-form>
</el-row>
</el-form>
<el-table v-loading="loading" :data="equipmentList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column align="center" label="序号" type="index" width="55" />
<el-table-column
v-for="(column, index) in tableColumns"
:key="column.prop"
:label="column.label"
:prop="column.prop"
align="center"
show-overflow-tooltip
>
<template v-slot="scope" v-if="column.prop == 'preNum'">
<el-input-number
v-model="scope.row.preNum"
controls-position="right"
:precision="0"
style="width: 100%"
:disabled="isDetail || !scope.row.isActive"
:min="0"
></el-input-number>
</template>
</el-table-column>
<!-- <el-table-column label="操作" align="center" v-if="!isDetail">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-delete" style="color: red" @click="handleDelete(scope.row)">
删除
</el-button>
</template>
</el-table-column> -->
</el-table>
</div>
</template>
<script>
import { equipmentTypeTree } from '@/api/purchase/goodsArrived'
import { getListProject, getListUnite, getAgreement } from '@/api/lease/apply'
import {
getStandardConfigList,
getListsByConfigId,
addLeaseTask,
editLeaseTask,
getLeaseTaskDetail
} from '@/api/business/index'
import Treeselect from '@riophae/vue-treeselect'
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
export default {
dicts: ['purchase_task_status'],
components: { Treeselect },
data() {
return {
id: '',
isEdit: false, // 是否编辑
isDetail: false, // 是否查看
// 遮罩层
loading: false,
loadingTwo: false,
// 选中数组
multipleSelection: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
selectTreeProps: {
children: 'children',
label: 'name',
// multiple: false,
value: 'id'
// multiple: true,
},
//租赁单位
uniteList: [],
//租赁工程
projectList: [],
// 物资类型
materialTypeOpts: [
{ label: '物资类型1', value: '1' },
{ label: '物资类型2', value: '2' },
{ label: '物资类型3', value: '3' }
],
// 类型规格
typeModelNameOpts: [
{ label: '规格型号1', value: '1' },
{ label: '规格型号2', value: '2' },
{ label: '规格型号3', value: '3' }
],
// 表格数据
equipmentList: [
{
id: 1,
preNum: 0,
maTypeName: '物资类型1',
typeName: '规格型号1',
unitName: '计量单位1',
applyNum: 0,
leasePerson: '领料人1',
arrivalTime: '2021-08-01',
isActive: false
},
{
id: 2,
preNum: 0,
maTypeName: '物资类型2',
typeName: '规格型号2',
unitName: '计量单位2',
applyNum: 0,
leasePerson: '领料人2',
arrivalTime: '2021-08-02',
isActive: false
},
{
id: 3,
preNum: 0,
maTypeName: '物资类型3',
typeName: '规格型号3',
unitName: '计量单位3',
applyNum: 0,
leasePerson: '领料人3',
arrivalTime: '2021-08-03',
isActive: false
}
],
// 表头
tableColumns: [
{ label: '直转数量', prop: 'preNum' },
{ label: '类型名称', prop: 'maTypeName' },
{ label: '规格型号', prop: 'typeName' },
{ label: '计量单位', prop: 'unitName' },
{ label: '领料数量', prop: 'applyNum' },
{ label: '领料人', prop: 'leasePerson' },
{ label: '领料日期', prop: 'arrivalTime' }
],
// 弹出层标题
title: '',
// 是否显示弹出层
open: false,
rowData: {},
unitId: null,
projectId: null,
// 查询参数
queryParams: {
materialType: '', // 物资类型
typeModelName: '', // 类型规格
keyWord: ''
},
maForm: {
unitId: undefined,
projectId: undefined,
arrivalTime: '',
applyCode: '', // 采购申请编号
bmFileInfos: [] // 附件
},
// 表单参数
form: {},
defaultProps: {
children: 'children',
label: 'label'
},
// 表单校验
rules: {
unitId: [
{
required: true,
2025-02-18 11:23:38 +08:00
message: '请选择转出单位',
2025-02-18 10:45:22 +08:00
trigger: 'blur'
}
],
projectId: [
{
required: true,
2025-02-18 11:23:38 +08:00
message: '请选择转出工程',
2025-02-18 10:45:22 +08:00
trigger: 'blur'
}
],
leasePerson: [
{
required: true,
2025-02-18 11:23:38 +08:00
message: '请输入转出人',
2025-02-18 10:45:22 +08:00
trigger: 'blur'
}
],
phone: [
{ required: true, message: '联系电话不能为空', trigger: 'blur' },
{
pattern: /^(?:(?:\+|00)86)?1[3-9]\d{9}$/,
message: '请输入正确的手机号码',
trigger: 'blur'
}
],
2025-02-18 11:23:38 +08:00
unitIdTo: [
{
required: true,
message: '请选择转入单位',
trigger: 'blur'
}
],
projectIdTo: [
{
required: true,
message: '请选择转入工程',
trigger: 'blur'
}
],
leasePersonTo: [
2025-02-18 10:45:22 +08:00
{
required: true,
2025-02-18 11:23:38 +08:00
message: '请输入转入人',
trigger: 'blur'
}
],
phoneTo: [
{ required: true, message: '联系电话不能为空', trigger: 'blur' },
{
pattern: /^(?:(?:\+|00)86)?1[3-9]\d{9}$/,
message: '请输入正确的手机号码',
2025-02-18 10:45:22 +08:00
trigger: 'blur'
}
],
bmFileInfos: [
{
required: true, // 是否分包商(是:合同编号必填)
message: '请上传图片',
trigger: 'change'
}
]
},
//是否是分包商
isFileFbs: false,
urlTemp: '',
delBusinessFileIdList: [],
//图片查看弹窗
dialogImageUrl: '',
dialogVisible: false,
uploadKey: Date.now(),
uploadUrl: process.env.VUE_APP_BASE_API + '/file/upload' // 上传的图片服务器地址
}
},
computed: {
//图片上传1张后隐藏上传框
uploadDisabled() {
return this.maForm.bmFileInfos && this.maForm.bmFileInfos.length == 3
}
},
created() {
if (this.$route.query.type == 'edit') {
this.isEdit = true
this.isDetail = false
this.id = this.$route.query.id
const obj = Object.assign({}, this.$route, { title: '直转申请编辑' })
this.$tab.updatePage(obj)
} else if (this.$route.query.type == 'detail') {
this.isEdit = false
this.isDetail = true
this.id = this.$route.query.id
const obj = Object.assign({}, this.$route, { title: '直转申请详情' })
this.$tab.updatePage(obj)
} else {
this.isEdit = false
this.isDetail = false
this.id = ''
const obj = Object.assign({}, this.$route, { title: '直转申请' })
this.$tab.updatePage(obj)
}
this.projectInfoList() //单位工程下拉选
if (this.isEdit || this.isDetail) {
console.log('isEdit', this.isEdit)
this.getTaskInfo()
}
console.log(this.$store, 'this.$store.getters')
console.log(this.$route.query, 'this.$route.query')
},
methods: {
// 查询
handleQuery() {},
// 重置
handleReset() {},
// 获取列表
getList() {},
// 查看领料记录
handleApplyRecord() {
this.$router.push({ path: '/business/businessHandlingRecord/directApplyRecord' })
},
/** 转换菜单数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children
}
return {
id: node.id,
label: node.name,
children: node.children
}
},
uniteChange(val) {
if (val.typeKey == 'fbs') {
this.isFileFbs = true
this.rules['bmFileInfos'][0].required = true
} else {
this.isFileFbs = false
this.rules['bmFileInfos'][0].required = false
}
setTimeout(() => {
getListProject({ unitId: this.maForm.unitId }).then(response => {
this.projectList = response.data
this.maForm.projectId = null
})
}, 500)
},
projectChange(val) {
setTimeout(() => {
// projectId: this.maForm.projectId
getListUnite({}).then(response => {
this.uniteList = response.data
})
}, 500)
},
/** 租赁单位和工程-下拉选 */
projectInfoList() {
if (!this.isEdit) {
getListUnite({ projectId: null }).then(response => {
this.uniteList = response.data
})
getListProject({ unitId: null }).then(response => {
this.projectList = response.data
})
} else {
getListUnite({ projectId: null }).then(response => {
this.uniteList = response.data
})
getListProject({ unitId: this.maForm.unitId }).then(response => {
this.projectList = response.data
})
}
},
//获取任务详情--- 编辑回显数据
async getTaskInfo() {
try {
const loading = this.$loading()
const res = await getLeaseTaskDetail(this.id)
console.log('🚀 ~ getTaskInfo ~ res:', res)
this.maForm = res.data.leaseApplyInfo
this.maForm.unitId = res.data.leaseApplyInfo.leaseUnitId
this.maForm.projectId = res.data.leaseApplyInfo.leaseProjectId
this.equipmentList = res.data.leaseApplyDetailsList
// 如果 bmFileInfos有值
if (this.maForm.bmFileInfos && this.maForm.bmFileInfos.length > 0) {
this.isFileFbs = true
}
loading.close()
} catch (error) {
console.log('🚀 ~ error:', error)
loading.close()
}
},
// 多选框选中数据
handleSelectionChange(row) {
console.log('选中了~', row)
this.multipleSelection = row
this.equipmentList.forEach(item => {
if (this.multipleSelection.some(val => val.id === item.id)) {
item.isActive = true
} else {
item.isActive = false
}
})
},
/** 保存按钮操作 */
handleSave() {
// console.log(this.equipmentList)
console.log('maForm', this.maForm)
console.log('选中数据', this.multipleSelection)
// if (this.equipmentList.length > 0) {
// this.$refs['maForm'].validate(async valid => {
// if (valid) {
// }
// })
// } else {
// this.$modal.msgError('请先添加类型规格')
// }
},
// 上传图片
handleChangeBusinessList(file, fileList) {
const fileListTemp = fileList.filter(item => {
return item.uid != file.uid
})
const parts = file.name.split('.')
2025-02-18 11:23:38 +08:00
const extension = parts.pop().toLowerCase()
2025-02-18 10:45:22 +08:00
if (fileList.length > 3) {
this.$message.warning('最多上传3张附件')
fileList = fileList.filter(item => {
return item.uid != file.uid
})
2025-02-18 11:23:38 +08:00
} else if (!(extension === 'png' || extension === 'jpg' || extension === 'jpeg' || extension === 'pdf')) {
2025-02-18 10:45:22 +08:00
this.$message.warning('文件格式不正确')
fileList = fileList.filter(item => {
return item.uid != file.uid
})
} else if (file.size > 1024 * 1024 * 10) {
this.$message.warning('文件大小不能超过10Mb')
fileList = fileList.filter(item => {
return item.uid != file.uid
})
} else if (file.name.length > 40) {
this.$message.warning('文件名长度不能超过40个字符')
fileList = fileList.filter(item => {
return item.uid != file.uid
})
} else if (fileListTemp.some(item => item.name === file.name)) {
this.$message.warning('文件名重复')
fileList = fileList.filter(item => {
return item.uid != file.uid
})
}
2025-02-18 11:23:38 +08:00
fileList.forEach(file => {
if (extension === 'pdf') {
this.urlTemp = require('@/assets/file.png')
}
})
2025-02-18 10:45:22 +08:00
this.maForm.bmFileInfos = fileList
console.log('🚀 ~ handleChangeBusinessList ~ this.bmFileInfos:', this.bmFileInfos)
// 手动触发表单验证
this.$refs.maForm.validateField('bmFileInfos')
},
// 判断文件类型
isImage(file) {
this.urlTemp = require('@/assets/file.png')
if (this.updataIf(file)) {
return false
} else {
return true
}
},
// 判断文件类型,图片预览,文件下载
updataIf(e) {
if (e.fileName) {
const parts = e.fileName.split('.')
2025-02-18 11:23:38 +08:00
const extension = parts.pop().toLowerCase()
2025-02-18 10:45:22 +08:00
if (extension === 'png' || extension === 'jpeg' || extension === 'jpg') {
return false
} else {
return true
}
} else {
2025-02-18 11:23:38 +08:00
const parts = e.name.split('.').toLowerCase()
2025-02-18 10:45:22 +08:00
const extension = parts.pop()
if (extension === 'png' || extension === 'jpeg' || extension === 'jpg') {
return false
} else {
return true
}
}
},
//上传组件-图片查看
picturePreviewFbs(file) {
this.dialogImageUrl = file.url.replaceAll('#', '%23')
const parts = file.name.split('.')
const extension = parts.pop()
if (extension === 'pdf') {
const windowName = file.name
window.open(file.url, windowName)
} else {
this.dialogVisible = true
}
},
//上传组件-图片删除
handleRemoveElectricianImgList(file, fileList) {
let sum = 0
this.maForm.bmFileInfos.forEach((item, index) => {
if (item.uid == file.uid) {
sum = index
}
})
this.maForm.bmFileInfos.splice(sum, 1)
if (file.status == 'success') {
this.delBusinessFileIdList.push(file.url)
}
console.log('delBusinessFileIdList', this.delBusinessFileIdList)
2025-02-18 11:23:38 +08:00
},
handleDownload(file) {
console.log(file)
if (file.status === 'ready') {
downloadFile({ fileName: file.name, fileData: file.raw, fileType: 'application/vnd.ms-excel;charset=utf-8' })
} else if (file.status === 'success') {
downloadFileData({ fileName: file.name, fileUrl: file.url })
// downloadFileData({ fileName: file.name,fileUrl:file.url })
}
},
2025-02-18 10:45:22 +08:00
}
}
</script>
<style lang="scss" scoped>
//隐藏图片上传框的css
::v-deep .disabledFbs {
.el-upload--picture-card {
display: none;
width: 100px;
height: 100px;
}
}
::v-deep .el-upload--picture-card {
width: 100px;
height: 100px;
}
::v-deep .el-upload-list__item {
margin-bottom: 20px;
overflow: unset !important;
width: 103px;
height: 103px;
}
::v-deep .el-upload-list__item-actions {
overflow: unset !important;
width: 100px;
height: 100px;
}
.popper-select {
.el-cascader-panel .el-scrollbar .el-checkbox {
display: none;
}
.el-cascader-panel .el-scrollbar:nth-child(4) .el-checkbox {
display: block !important;
}
}
.custom-tree-node {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
padding-right: 8px;
}
.el-icon-arrow-down.is-reverse {
transform: rotateZ(180deg);
}
// .el-tree {
// max-height: 300px;
// overflow-y: auto;
// }
.highlight-text {
background-color: #ffd04b;
color: #000;
}
::v-deep .el-input-group__append {
padding: 0;
.el-button {
padding: 0 10px;
border: none;
height: 100%;
&:first-child {
border-right: 1px solid #dcdfe6;
}
&[disabled] {
color: #c0c4cc;
}
}
}
.type-select-dropdown {
.el-select-dropdown__wrap {
max-height: 400px !important;
}
.el-select-dropdown__item {
height: auto;
padding: 8px 20px;
white-space: normal;
word-break: break-all;
}
}
.highlight-text {
background-color: #ffd04b;
color: #000;
}
.el-input-group__append {
padding: 0;
.el-button {
padding: 0 10px;
border: none;
height: 100%;
&:first-child {
border-right: 1px solid #dcdfe6;
}
&[disabled] {
color: #c0c4cc;
}
}
}
.el-upload-list__item-thumbnail {
/* height: 145px !important; */
width: 100px;
height: 100px;
}
.picture-card-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.picture-card {
width: 100%;
height: 100%;
object-fit: cover;
justify-content: center;
// border: 1px solid #ddd;
// border-radius: 4px;
}
.file-name {
width: 90%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: absolute;
bottom: -35px;
margin-top: 8px;
text-align: center;
font-size: 12px;
color: #333;
z-index: 999999;
}
.file-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 20px;
}
// 居中
.cont-center {
display: flex;
justify-content: center;
align-items: center;
}
</style>