devicesmgt/sgzb-ui/src/views/store/newBuy/newDevices/newDevicesAccept.vue

739 lines
26 KiB
Vue
Raw Normal View History

2023-12-12 13:36:08 +08:00
<template>
2024-01-22 09:18:46 +08:00
<div class="app-container" id="newDevicesAccept">
2024-04-25 16:00:19 +08:00
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
2023-12-24 17:54:27 +08:00
<el-form-item label="关键字" prop="keyWord">
2023-12-12 13:36:08 +08:00
<el-input
v-model="queryParams.keyWord"
placeholder="请输入关键字"
clearable
maxlength="50"
style="width: 240px"
@keyup.enter.native="handleQuery"
2023-12-12 13:36:08 +08:00
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">查询</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="success" plain size="mini" icon="el-icon-back" @click="jumpList">新购验收管理</el-button>
2023-12-12 13:36:08 +08:00
</el-col>
<el-col :span="1.5">
<el-button type="success" plain size="mini" v-if="!isView" @click="handleNotice">通知</el-button>
2023-12-12 13:36:08 +08:00
</el-col>
2023-12-21 20:24:30 +08:00
<el-col :span="1.5">
2024-04-25 16:00:19 +08:00
<el-button type="primary" plain size="mini" v-if="!isView" :disabled="multiple" @click="handleListCheck">
批量验收
</el-button>
2023-12-21 20:24:30 +08:00
</el-col>
<!-- <el-col :span="1.5">
2023-12-12 13:36:08 +08:00
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
>导出</el-button>
</el-col>-->
2023-12-12 13:36:08 +08:00
</el-row>
<el-table v-loading="loading" :data="equipmentList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" :selectable="selectable" />
2023-12-21 10:00:48 +08:00
<el-table-column label="序号" align="center" type="index" />
2024-05-31 13:09:02 +08:00
<el-table-column label="设备类型" align="center" prop="machineTypeName" :show-overflow-tooltip="true" />
2024-04-25 16:00:19 +08:00
<el-table-column label="规格型号" align="center" prop="specificationType" :show-overflow-tooltip="true" />
<el-table-column label="管理模式" align="center" prop="manageType" :show-overflow-tooltip="true">
<template slot-scope="scope">
2024-04-25 16:00:19 +08:00
<span v-if="scope.row.manageType == 0">编码管理</span>
<span v-if="scope.row.manageType == 1">数量管理</span>
</template>
</el-table-column>
<el-table-column label="机具厂家" align="center" prop="supplier" :show-overflow-tooltip="true" />
2024-04-25 16:00:19 +08:00
<el-table-column label="采购数量" align="center" prop="purchaseNum" :show-overflow-tooltip="true" />
2024-05-31 13:09:02 +08:00
<el-table-column label="验收通过数量" align="center" prop="checkNum" :show-overflow-tooltip="true" />
<el-table-column label="验收图片" align="center" prop="checkUrlName">
2023-12-21 20:24:30 +08:00
<template slot-scope="scope">
<div
2024-04-25 16:00:19 +08:00
v-for="(item, index) in scope.row.imgUrlList"
:key="index"
@click="openImg(item)"
2024-04-25 16:00:19 +08:00
style="color: #02a7f0; cursor: pointer"
>
{{ scope.row.imgNameList[index] }}
</div>
2023-12-21 20:24:30 +08:00
</template>
</el-table-column>
<!-- <el-table-column label="配套资料" align="center" prop="fileName" :show-overflow-tooltip="true" /> -->
<el-table-column label="状态" align="center" prop="status" width="180">
2023-12-12 13:36:08 +08:00
<template slot-scope="scope">
2024-04-25 16:00:19 +08:00
<span v-if="scope.row.status == 0">未验收</span>
<span v-if="scope.row.status == 1">已验收</span>
<span v-if="scope.row.status == 2">待通知</span>
<span v-if="scope.row.status == 3">验收不通过</span>
2024-05-31 13:09:02 +08:00
<span v-if="scope.row.status == 4">已入库</span>
<span v-if="scope.row.status == 5">入库驳回</span>
2024-04-25 16:00:19 +08:00
<span v-if="scope.row.status == 6">入库待审核</span>
2024-05-31 13:09:02 +08:00
<span v-if="scope.row.status == 7">综合服务中心未通过</span>
2023-12-12 13:36:08 +08:00
</template>
</el-table-column>
2024-04-25 16:00:19 +08:00
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="150" v-if="!isView">
2023-12-12 13:36:08 +08:00
<template slot-scope="scope">
<el-button
size="mini"
type="primary"
icon="el-icon-edit"
2024-04-25 16:00:19 +08:00
v-show="scope.row.checkNum < scope.row.purchaseNum && (scope.row.status == 0 || scope.row.status == 1)"
@click="handleCheck(scope.row)"
2024-04-25 16:00:19 +08:00
>
验收
</el-button>
2023-12-19 04:26:18 +08:00
<!-- <el-button
2023-12-12 13:36:08 +08:00
size="mini"
type="text"
icon="el-icon-edit"
>编码管理</el-button>-->
2023-12-12 13:36:08 +08:00
</template>
</el-table-column>
</el-table>
<!-- 验收弹窗 -->
2024-04-25 16:00:19 +08:00
<el-dialog :title="title" :visible.sync="open" width="650px" append-to-body :close-on-click-modal="false">
2023-12-12 13:36:08 +08:00
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
2023-12-16 23:00:28 +08:00
<el-form-item label="机具类型名称:" prop="machineTypeName">
<el-input v-model="form.machineTypeName" placeholder disabled />
2023-12-12 13:36:08 +08:00
</el-form-item>
2023-12-16 23:00:28 +08:00
<el-form-item label="规格型号" prop="specificationType">
<el-input v-model="form.specificationType" placeholder disabled />
2023-12-12 13:36:08 +08:00
</el-form-item>
2023-12-21 20:24:30 +08:00
<el-form-item label="采购数量" prop="purchaseNum">
<el-input v-model="form.purchaseNum" placeholder disabled />
2023-12-12 13:36:08 +08:00
</el-form-item>
2023-12-16 23:00:28 +08:00
<el-form-item label="验收结论" prop="checkResult">
<el-radio v-model="form.checkResult" label="通过">通过</el-radio>
2024-04-20 12:23:39 +08:00
<!-- <el-radio v-model="form.checkResult" label="不通过">不通过</el-radio> -->
2023-12-12 13:36:08 +08:00
</el-form-item>
2023-12-21 20:24:30 +08:00
<el-form-item label="验收通过数量" prop="checkNum">
<el-input-number
v-model="form.checkNum"
2024-04-25 16:00:19 +08:00
style="width: 100%"
controls-position="right"
2024-05-31 13:09:02 +08:00
:min="0"
:max="form.purchaseNum"
/>
2023-12-12 13:36:08 +08:00
</el-form-item>
2023-12-16 23:00:28 +08:00
<el-form-item label="验收图片" prop="checkUrl">
<el-upload
2024-04-25 16:00:19 +08:00
:http-request="obj => imgUpLoad(obj, 'fileUrl')"
action="#"
:limit="5"
:file-list="fileList"
:show-file-list="true"
list-type="picture-card"
accept=".png, .jpg, .jpeg"
:class="{ disabled: uploadDisabled }"
:on-preview="handlePictureCardPreview"
:on-remove="handleRemove"
>
<!-- <img v-if="imageUrl" :src="uploadUrl+imageUrl" style="width: 140px;height: 140px;" class="avatar"> -->
<i class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
2023-12-12 13:36:08 +08:00
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer" style="text-align: center">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
<!-- 批量验收弹窗 -->
2023-12-23 21:41:58 +08:00
<el-dialog :title="title" :visible.sync="openAll" width="650px" append-to-body>
2023-12-21 20:24:30 +08:00
<el-form ref="aform" :model="aform" :rules="arules" label-width="120px">
<el-form-item label="验收结论" prop="checkResult">
<el-radio v-model="aform.checkResult" label="通过">通过</el-radio>
2024-04-20 12:23:39 +08:00
<!-- <el-radio v-model="aform.checkResult" label="不通过">不通过</el-radio> -->
2023-12-21 20:24:30 +08:00
</el-form-item>
<el-form-item label="验收图片" prop="checkUrl">
<el-upload
2024-04-25 16:00:19 +08:00
:http-request="obj => imgUpLoad(obj, 'fileUrl')"
action="#"
:limit="5"
:file-list="fileList1"
:show-file-list="true"
list-type="picture-card"
accept=".png, .jpg, .jpeg"
:on-preview="handlePictureCardPreview"
:class="{ disabled: uploadDisabled }"
:on-remove="handleRemove"
>
<!-- <img v-if="imageUrl" :src="uploadUrl+imageUrl" style="width: 140px;height: 140px;" class="avatar"> -->
<i class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
2023-12-21 20:24:30 +08:00
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer" style="text-align: center">
<el-button type="primary" @click="submitListForm"> </el-button>
2024-04-25 16:00:19 +08:00
<el-button @click="openAll = false"> </el-button>
2023-12-21 20:24:30 +08:00
</div>
</el-dialog>
<!-- 通知弹窗 -->
2023-12-12 13:36:08 +08:00
<el-dialog :title="title" :visible.sync="noticeOpen" width="1000px" append-to-body>
2023-12-16 23:00:28 +08:00
<el-form ref="nform" :model="nform" :rules="nrules" label-width="100px">
<el-form-item label="通知内容:" prop="notice">
<el-input
v-model="nform.notice"
type="textarea"
2024-04-25 16:00:19 +08:00
:autosize="{ minRows: 4, maxRows: 6 }"
placeholder="请输入通知内容"
2024-04-25 16:00:19 +08:00
style="width: 80%"
/>
2023-12-12 13:36:08 +08:00
</el-form-item>
</el-form>
2024-04-25 16:00:19 +08:00
<el-table v-loading="loading" :data="noticeUserList" height="400" @selection-change="handleSelectionNotice">
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="序号" align="center" type="index" />
2024-04-25 16:00:19 +08:00
<el-table-column label="人员账号" align="center" key="userName" prop="userName" :show-overflow-tooltip="true" />
<el-table-column label="人员名称" align="center" key="nickName" prop="nickName" :show-overflow-tooltip="true" />
<el-table-column label="所属机构" align="center" key="deptName" prop="deptName" :show-overflow-tooltip="true" />
<el-table-column label="角色" align="center" key="roleName" prop="roleName" :show-overflow-tooltip="true" />
<el-table-column label="联系电话" align="center" key="telphone" prop="telphone" width="120" />
2024-04-25 16:00:19 +08:00
<el-table-column label="操作" align="center" width="160" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button size="mini" type="text" icon="el-icon-delete" @click="delUser(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
2023-12-12 13:36:08 +08:00
<div slot="footer" class="dialog-footer" style="text-align: center">
2023-12-22 18:57:52 +08:00
<el-button type="primary" @click="addUserOpen">人员添加</el-button>
2023-12-16 23:00:28 +08:00
<el-button type="primary" @click="configNotice">消息通知</el-button>
2023-12-12 13:36:08 +08:00
</div>
</el-dialog>
<!-- 人员添加 -->
<el-dialog :title="title" :visible.sync="peopleOpen" width="1000px" append-to-body>
2024-04-25 16:00:19 +08:00
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionUser" height="450">
2023-12-12 13:36:08 +08:00
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="序号" align="center" key="userId" prop="userId" />
2024-04-25 16:00:19 +08:00
<el-table-column label="人员账号" align="center" key="userName" prop="userName" :show-overflow-tooltip="true" />
<el-table-column label="人员名称" align="center" key="nickName" prop="nickName" :show-overflow-tooltip="true" />
<el-table-column label="所属机构" align="center" key="deptName" prop="deptName" :show-overflow-tooltip="true" />
<el-table-column label="角色" align="center" key="roleName" prop="roleName" :show-overflow-tooltip="true" />
2023-12-22 18:57:52 +08:00
<el-table-column label="联系电话" align="center" key="telphone" prop="telphone" width="120" />
2023-12-16 23:00:28 +08:00
<!-- <el-table-column
2023-12-12 13:36:08 +08:00
label="操作"
align="center"
width="160"
class-name="small-padding fixed-width"
>
<template slot-scope="scope" v-if="scope.row.userId !== 1">
<el-button
size="mini"
type="text"
icon="el-icon-plus"
@click="addUser(scope.row)"
>添加</el-button>
2023-12-12 13:36:08 +08:00
2024-04-13 13:31:25 +08:00
</template>
</el-table-column>-->
2023-12-12 13:36:08 +08:00
</el-table>
<div slot="footer" class="dialog-footer" style="text-align: center">
<el-button type="primary" @click="addUser">添加</el-button>
2023-12-12 13:36:08 +08:00
</div>
</el-dialog>
2023-12-21 20:24:30 +08:00
<el-dialog :visible.sync="dialogVisible">
<img width="100%" height="650px" :src="dialogImageUrl" alt />
2023-12-21 20:24:30 +08:00
</el-dialog>
2023-12-12 13:36:08 +08:00
</div>
</template>
<script>
2024-04-20 12:23:39 +08:00
import { listType, getType, delType, addType, updateType, refreshCache } from '@/api/system/dict/type'
import {
getPurchaseCheckInfo,
bmNoticeInfo,
updatePurchaseCheckDetails,
getNoticeUserList,
getAllNotificationList,
addNoticeUser,
2024-04-20 12:23:39 +08:00
delNoticeUser,
} from '@/api/store/newBuy'
import { imgUpLoad, fileUpLoad } from '@/api/system/upload'
2023-12-12 13:36:08 +08:00
export default {
2024-04-20 12:23:39 +08:00
name: 'NewDevicesAccept',
dicts: ['sys_normal_disable'],
2023-12-12 13:36:08 +08:00
data() {
return {
//任务ID
2024-04-20 12:23:39 +08:00
taskId: '',
2023-12-12 13:36:08 +08:00
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
//人员添加-列表数据
userList: [],
//通知人员数组
noticeUserList: [],
//选择人员
chosenUserList: [],
2023-12-22 18:57:52 +08:00
//确认消息通知人员-勾选的通知人员
configUserList: [],
//任务数据
taskInfo: {},
// 表格数据
equipmentList: [],
2023-12-12 13:36:08 +08:00
// 弹出层标题
2024-04-20 12:23:39 +08:00
title: '',
2023-12-12 13:36:08 +08:00
// 是否显示弹出层
open: false,
2023-12-21 20:24:30 +08:00
openAll: false,
isView: false,
2023-12-12 13:36:08 +08:00
// 日期范围
dateRange: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
2024-04-20 12:23:39 +08:00
keyWord: undefined,
2023-12-12 13:36:08 +08:00
},
2023-12-21 20:24:30 +08:00
//图片上传参数---
2024-04-20 12:23:39 +08:00
imageUrl: '',
imageName: '',
fileList: [],
checkUrlList: [],
checkUrlNameList: [],
fileList1: [],
checkUrlList1: [],
checkUrlNameList1: [],
2023-12-21 20:24:30 +08:00
//上传地址
2023-12-23 19:42:57 +08:00
// uploadUrl:'http://192.168.0.14:21624/system',//线上服务器地址+system
2024-01-23 20:33:02 +08:00
// uploadUrl:'http://112.29.103.165:21624/system',//线上服务器地址+system
2024-04-20 12:23:39 +08:00
uploadUrl: process.env.VUE_APP_BASE_API + '/system', // 上传的图片服务器地址
dialogImageUrl: '',
2023-12-21 20:24:30 +08:00
dialogVisible: false,
//--------------
2023-12-12 13:36:08 +08:00
// 表单参数
form: {},
// 表单校验
rules: {
2024-04-20 12:23:39 +08:00
checkResult: [{ required: true, message: '验收结论不能为空', trigger: 'blur' }],
checkNum: [{ required: true, message: '验收通过数量不能为空', trigger: 'blur' }],
checkUrl: [{ required: true, message: '验收图片不能为空', trigger: 'blur' }],
},
2023-12-21 20:24:30 +08:00
// 表单参数
aform: {},
// 表单校验
2023-12-21 20:24:30 +08:00
arules: {
2024-04-20 12:23:39 +08:00
checkResult: [{ required: true, message: '验收结论不能为空', trigger: 'blur' }],
checkUrl: [{ required: true, message: '验收图片不能为空', trigger: 'blur' }],
2023-12-12 13:36:08 +08:00
},
peopleOpen: false,
noticeOpen: false,
nform: {
2024-04-20 12:23:39 +08:00
notice: '',
2023-12-12 13:36:08 +08:00
},
nrules: {
2024-04-20 12:23:39 +08:00
notice: [{ required: true, message: '通知内容不能为空', trigger: 'blur' }],
2023-12-12 13:36:08 +08:00
},
2024-04-20 12:23:39 +08:00
deptName: undefined,
}
2023-12-12 13:36:08 +08:00
},
2024-04-10 17:04:07 +08:00
computed: {
//图片上传1张后隐藏上传框
uploadDisabled() {
2024-04-20 12:23:39 +08:00
return this.checkUrlList.length > 4
},
2024-04-10 17:04:07 +08:00
},
2024-04-07 09:39:32 +08:00
mounted() {
2024-04-20 12:23:39 +08:00
const taskId = this.$route.query && this.$route.query.taskId
this.taskId = taskId
console.log(this.taskId)
const isView = this.$route.query && this.$route.query.isView
if (isView && isView == 'true') {
this.isView = true
} else {
2024-04-20 12:23:39 +08:00
this.isView = false
}
2024-04-20 12:23:39 +08:00
this.getTaskInfo()
this.getAllUserList()
this.getNoticeUserList()
2023-12-12 13:36:08 +08:00
},
methods: {
2023-12-16 23:00:28 +08:00
//获取任务详情-列表数据
getTaskInfo() {
2024-04-20 12:23:39 +08:00
this.loading = true
getPurchaseCheckInfo({
taskId: this.taskId,
2024-04-20 12:23:39 +08:00
keyWord: this.queryParams.keyWord,
}).then(response => {
2024-04-20 12:23:39 +08:00
this.taskInfo = response.data
this.equipmentList = response.data.checkDetailsList
this.equipmentList.forEach(item => {
if (item.checkUrl) {
2024-04-20 12:23:39 +08:00
item.imgUrlList = item.checkUrl.split(',')
item.imgNameList = item.checkUrlName.split(',')
}
2024-04-20 12:23:39 +08:00
})
this.loading = false
})
},
2023-12-22 18:57:52 +08:00
// 返回列表页
jumpList() {
2024-04-20 12:23:39 +08:00
const obj = { path: '/store/newBuy/newDevicesList' }
this.$tab.closeOpenPage(obj)
},
2023-12-12 13:36:08 +08:00
// 取消按钮
cancel() {
2024-04-20 12:23:39 +08:00
this.open = false
this.reset()
2023-12-12 13:36:08 +08:00
},
// 表单重置
reset() {
this.form = {
2023-12-16 23:00:28 +08:00
machineTypeName: undefined,
specificationType: undefined,
checkNum: undefined,
2024-04-20 12:23:39 +08:00
checkResult: '通过',
2023-12-16 23:00:28 +08:00
inputNum: undefined,
2024-04-20 12:23:39 +08:00
checkUrl: undefined,
}
this.imageUrl = ''
this.resetForm('form')
2023-12-12 13:36:08 +08:00
},
2023-12-12 13:36:08 +08:00
/** 搜索按钮操作 */
handleQuery() {
2024-04-20 12:23:39 +08:00
this.queryParams.pageNum = 1
this.getTaskInfo()
2023-12-12 13:36:08 +08:00
},
/** 重置按钮操作 */
resetQuery() {
2024-04-20 12:23:39 +08:00
this.dateRange = []
this.resetForm('queryForm')
this.handleQuery()
2023-12-12 13:36:08 +08:00
},
2023-12-22 18:57:52 +08:00
//----消息通知
getNowTime() {
2024-04-20 12:23:39 +08:00
var today = new Date()
var year = today.getFullYear() //获取年份
var month = today.getMonth() + 1 //获取月份
var day = today.getDate() //获取日期
return year + '-' + month + '-' + day
// console.log(year + "-" + month + "-" + day);
},
//通知按钮
handleNotice() {
2024-04-20 12:23:39 +08:00
this.noticeOpen = true
this.resetForm('nform')
this.$set(
this.nform,
2024-04-20 12:23:39 +08:00
'notice',
'各位同事您好,请于' + this.getNowTime() + '进行机具验收。验收单号:' + this.taskInfo.code
)
},
2023-12-22 18:57:52 +08:00
//查询短信通知人员
getNoticeUserList() {
getNoticeUserList().then(response => {
2024-04-20 12:23:39 +08:00
this.noticeUserList = response.data
})
2023-12-22 18:57:52 +08:00
},
/** 查询所有用户列表--可添加人员 */
getAllUserList() {
2023-12-22 18:57:52 +08:00
getAllNotificationList().then(response => {
2024-04-20 12:23:39 +08:00
this.userList = response.data
})
},
addUserOpen() {
2024-04-20 12:23:39 +08:00
this.getAllUserList()
this.peopleOpen = true
2023-12-22 18:57:52 +08:00
},
// 多选框选中-添加人员
handleSelectionUser(selection) {
// console.log(selection)
2024-04-20 12:23:39 +08:00
this.chosenUserList = selection
},
//添加人员
addUser() {
// console.log(this.chosenUserList,"chosenUserList")
addNoticeUser(this.chosenUserList).then(response => {
if (response.code == 200) {
2024-04-20 12:23:39 +08:00
this.getNoticeUserList()
this.peopleOpen = false
}
2024-04-20 12:23:39 +08:00
})
2023-12-12 13:36:08 +08:00
},
delUser(row) {
2023-12-22 18:57:52 +08:00
delNoticeUser(row.userId).then(response => {
if (response.code == 200) {
2024-04-20 12:23:39 +08:00
this.getNoticeUserList()
}
2024-04-20 12:23:39 +08:00
})
2023-12-22 18:57:52 +08:00
},
// 多选框选中-添加消息通知
handleSelectionNotice(selection) {
2024-04-20 12:23:39 +08:00
this.configUserList = selection
2023-12-16 23:00:28 +08:00
},
2023-12-22 18:57:52 +08:00
//确认消息通知
configNotice() {
2024-04-20 12:23:39 +08:00
this.$refs['nform'].validate(valid => {
2024-03-19 16:54:31 +08:00
if (valid) {
this.configUserList.forEach((item, index) => {
2024-04-20 12:23:39 +08:00
item.noticeUser = item.userId
item.phone = item.telphone
})
2024-03-19 16:54:31 +08:00
let param = {
2024-04-25 16:00:19 +08:00
message: this.nform.notice,
// message: `${this.getNowTime()},${this.taskInfo.code}`,
taskId: this.taskInfo.taskId,
2024-04-20 12:23:39 +08:00
bmNoticeInfoList: this.configUserList,
}
if (this.configUserList.length > 0) {
bmNoticeInfo(param).then(response => {
2024-04-20 12:23:39 +08:00
console.log(response)
if (response.code == 200) {
2024-03-19 16:54:31 +08:00
this.$message({
2024-04-20 12:23:39 +08:00
message: '操作成功',
type: 'success',
})
this.noticeOpen = false
this.getTaskInfo()
2024-03-19 16:54:31 +08:00
}
2024-04-20 12:23:39 +08:00
})
} else {
2024-03-19 16:54:31 +08:00
this.$message({
2024-04-20 12:23:39 +08:00
message: '请选择通知人员!',
type: 'error',
})
2024-03-19 16:54:31 +08:00
}
}
2024-04-20 12:23:39 +08:00
})
2023-12-12 13:36:08 +08:00
},
// 多选框选中数据
handleSelectionChange(selection) {
2024-04-20 12:23:39 +08:00
this.ids = selection.map(item => item)
this.single = selection.length != 1
this.multiple = !selection.length
2023-12-12 13:36:08 +08:00
},
2023-12-21 20:24:30 +08:00
/** 验收按钮操作 */
2023-12-16 23:00:28 +08:00
handleCheck(row) {
// console.log(row)
2024-04-20 12:23:39 +08:00
this.$set(this.form, 'code', row.code)
this.$set(this.form, 'companyId', row.companyId)
this.$set(this.form, 'createBy', row.createBy)
this.$set(this.form, 'createTime', row.createTime)
this.$set(this.form, 'id', row.id)
this.$set(this.form, 'machineTypeName', row.machineTypeName)
this.$set(this.form, 'manageType', row.manageType)
this.$set(this.form, 'specificationType', row.specificationType)
this.$set(this.form, 'typeName', row.typeName)
this.$set(this.form, 'machineTypeName', row.machineTypeName)
this.$set(this.form, 'taskId', row.taskId)
this.$set(this.form, 'typeId', row.typeId)
this.$set(this.form, 'checkResult', row.checkResult || '通过')
// this.$set(this.form,'machineTypeName',row.machineTypeName)
2024-04-20 12:23:39 +08:00
this.$set(this.form, 'purchaseNum', row.purchaseNum)
this.$set(this.form, 'checkNum', row.purchaseNum)
this.$set(this.form, 'checkUrl', '')
this.$set(this.form, 'checkUrlName', '')
this.fileList = []
this.checkUrlList = []
this.checkUrlNameList = []
this.open = true
this.title = '验收'
2023-12-21 20:24:30 +08:00
},
/** 批量验收按钮操作 */
handleListCheck() {
// console.log(this.ids)
2024-04-20 12:23:39 +08:00
this.fileList1 = []
this.checkUrlList1 = []
this.checkUrlNameList1 = []
this.aform = {
2024-04-20 12:23:39 +08:00
checkResult: '通过',
checkUrl: '',
checkUrlName: '',
}
this.imageUrl = ''
this.openAll = true
this.title = '批量验收'
2023-12-12 13:36:08 +08:00
},
/** 提交按钮 */
2024-04-25 16:00:19 +08:00
submitForm: function () {
// console.log(this.form)
2024-04-20 12:23:39 +08:00
this.form.checkUrl = this.checkUrlList.join(',')
this.form.checkUrlName = this.checkUrlNameList.join(',')
let equipments = [this.form]
console.log(equipments)
this.$refs['form'].validate(valid => {
2023-12-12 13:36:08 +08:00
if (valid) {
2023-12-21 20:24:30 +08:00
updatePurchaseCheckDetails(equipments).then(response => {
if (response.code == 200) {
this.$message({
2024-04-20 12:23:39 +08:00
message: '操作成功',
type: 'success',
})
this.open = false
this.fileList = []
this.checkUrlList = []
this.checkUrlNameList = []
this.getTaskInfo()
}
2024-04-20 12:23:39 +08:00
})
2023-12-12 13:36:08 +08:00
}
2024-04-20 12:23:39 +08:00
})
2023-12-12 13:36:08 +08:00
},
2024-04-25 16:00:19 +08:00
submitListForm: function () {
// console.log(this.aform)
2024-04-20 12:23:39 +08:00
this.aform.checkUrl = this.checkUrlList1.join(',')
this.aform.checkUrlName = this.checkUrlNameList1.join(',')
this.ids.forEach(item => {
2024-04-20 12:23:39 +08:00
item.checkNum = item.purchaseNum
item.checkResult = this.aform.checkResult
item.checkUrl = this.aform.checkUrl
item.checkUrlName = this.aform.checkUrlName
})
2024-03-19 16:54:31 +08:00
// console.log(this.ids)
2024-04-20 12:23:39 +08:00
let equipments = this.ids
console.log(equipments)
this.$refs['aform'].validate(valid => {
2023-12-21 20:24:30 +08:00
if (valid) {
updatePurchaseCheckDetails(equipments).then(response => {
if (response.code == 200) {
this.$message({
2024-04-20 12:23:39 +08:00
message: '验收成功',
type: 'success',
})
this.openAll = false
this.open = false
this.fileList1 = []
this.checkUrlList1 = []
this.checkUrlNameList1 = []
this.getTaskInfo()
}
2024-04-20 12:23:39 +08:00
})
2023-12-21 20:24:30 +08:00
}
2024-04-20 12:23:39 +08:00
})
2023-12-21 20:24:30 +08:00
},
// 图片上传
imgUpLoad(param, name, index) {
2024-04-20 12:23:39 +08:00
param.type = 'ma'
imgUpLoad(param)
.then(res => {
if (res.code == 200) {
// console.log(res.data)
if (this.open) {
2024-04-20 12:23:39 +08:00
this.checkUrlList.push(res.data.fileUrl)
this.checkUrlNameList.push(res.data.fileName)
}
if (this.openAll) {
2024-04-20 12:23:39 +08:00
this.checkUrlList1.push(res.data.fileUrl)
this.checkUrlNameList1.push(res.data.fileName)
// this.aform.checkUrl = res.data.fileUrl;
// this.aform.checkUrlName = res.data.fileName;
}
} else {
// this.$msgError(res.msg)
2024-04-20 12:23:39 +08:00
this.$modal.msgError(res.msg)
2023-12-21 20:24:30 +08:00
}
})
.catch(error => {
// this.$msgError(error)
2024-04-20 12:23:39 +08:00
this.$modal.msgError(error)
})
2023-12-12 13:36:08 +08:00
},
handleAvatarSuccess(res, file) {
// console.log("success")
},
2023-12-23 19:42:57 +08:00
handleRemove(file, fileList) {
if (this.open) {
2024-04-20 12:23:39 +08:00
let sum = 0
this.checkUrlNameList.forEach((item, index) => {
if (item == file.name) {
2024-04-20 12:23:39 +08:00
sum = index
}
2024-04-20 12:23:39 +08:00
})
this.checkUrlNameList.splice(sum, 1)
this.checkUrlList.splice(sum, 1)
2023-12-23 19:42:57 +08:00
}
if (this.openAll) {
2024-04-20 12:23:39 +08:00
let sum1 = 0
this.checkUrlNameList1.forEach((item, index) => {
if (item == file.name) {
2024-04-20 12:23:39 +08:00
sum1 = index
}
2024-04-20 12:23:39 +08:00
})
this.checkUrlNameList1.splice(sum1, 1)
this.checkUrlList1.splice(sum1, 1)
2023-12-23 19:42:57 +08:00
}
},
//图片点击查看
handlePictureCardPreview(file) {
// console.log(file)
2024-04-20 12:23:39 +08:00
this.dialogImageUrl = file.url
this.dialogVisible = true
2023-12-23 19:42:57 +08:00
},
2023-12-21 20:24:30 +08:00
//图片查看
openImg(url) {
2024-04-20 12:23:39 +08:00
this.dialogImageUrl = this.uploadUrl + url
this.dialogVisible = true
2023-12-21 20:24:30 +08:00
},
//验收后禁止勾选
selectable(row, index) {
if (row.status == 0) {
2024-04-20 12:23:39 +08:00
return true
} else {
2024-04-20 12:23:39 +08:00
return false
}
},
2023-12-12 13:36:08 +08:00
/** 导出按钮操作 */
handleExport() {
this.download(
2024-04-20 12:23:39 +08:00
'system/dict/type/export',
{
2024-04-20 12:23:39 +08:00
...this.queryParams,
},
`type_${new Date().getTime()}.xlsx`
2024-04-20 12:23:39 +08:00
)
2023-12-12 13:36:08 +08:00
},
/** 刷新缓存按钮操作 */
handleRefreshCache() {
refreshCache().then(() => {
2024-04-20 12:23:39 +08:00
this.$modal.msgSuccess('刷新成功')
this.$store.dispatch('dict/cleanDict')
})
},
},
}
2023-12-12 13:36:08 +08:00
</script>
2024-01-12 10:07:35 +08:00
<style lang="scss" scoped>
::v-deep.el-table .fixed-width .el-button--mini {
width: 60px !important;
margin-bottom: 10px;
}
2024-04-10 17:04:07 +08:00
//隐藏图片上传框的css
::v-deep.disabled {
.el-upload--picture-card {
display: none;
}
}
2024-04-13 13:31:25 +08:00
</style>