853 lines
26 KiB
Vue
853 lines
26 KiB
Vue
<template>
|
|
<div>
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
size="small"
|
|
:inline="true"
|
|
v-show="showSearch"
|
|
label-width="100px"
|
|
>
|
|
<el-form-item prop="startTime">
|
|
<el-date-picker
|
|
v-model="queryParams.startTime"
|
|
value-format="yyyy-MM-dd"
|
|
type="date"
|
|
placeholder="开始日期"
|
|
@change="() => queryParams.endTime = ''"
|
|
style="width: 130px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>-</el-form-item>
|
|
<el-form-item prop="endTime">
|
|
<el-date-picker
|
|
v-model="queryParams.endTime"
|
|
value-format="yyyy-MM-dd"
|
|
type="date"
|
|
placeholder="结束日期"
|
|
:picker-options="{ disabledDate: (t) => t.getTime() < new Date(queryParams.startTime).getTime() - 86400000}"
|
|
style="width: 130px"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item prop="keyWord">
|
|
<el-input
|
|
v-model="queryParams.keyWord"
|
|
placeholder="请输入关键字"
|
|
clearable
|
|
maxlength="50"
|
|
style="width: 240px"
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item prop="taskStatus">
|
|
<el-select
|
|
clearable
|
|
filterable
|
|
style="width: 240px"
|
|
placeholder="状态筛选"
|
|
v-model="queryParams.taskStatus"
|
|
>
|
|
|
|
<el-option
|
|
v-for="dict in taskStatusList"
|
|
:key="dict.id"
|
|
:label="dict.name"
|
|
:value="dict.id"
|
|
/>
|
|
</el-select>
|
|
</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="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
>配件到货新增</el-button
|
|
>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
>导出</el-button
|
|
>
|
|
</el-col>
|
|
<right-toolbar
|
|
:showSearch.sync="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="typeList" row-key="id" border :max-height="650">
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
<el-table-column width="60" align="center" label="序号" type="index" />
|
|
<el-table-column
|
|
align="center"
|
|
width="160"
|
|
label="到货时间"
|
|
prop="arrivalTime"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="采购单号"
|
|
width="150"
|
|
align="center"
|
|
prop="code"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="配件名称"
|
|
align="center"
|
|
prop="purchaseMaTypeName"
|
|
width="140"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="采购数量"
|
|
align="center"
|
|
prop="purchaseMaNumber"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="采购价格(元含税)"
|
|
align="center"
|
|
prop="purchaseTaxPrice"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="采购价格(元不含税)"
|
|
align="center"
|
|
prop="purchasePrice"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="税率"
|
|
align="center"
|
|
prop="taxRate"
|
|
:show-overflow-tooltip="true"
|
|
>
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
label="物资厂家"
|
|
align="center"
|
|
prop="supplier"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
|
|
<el-table-column
|
|
label="操作人"
|
|
align="center"
|
|
prop="createBy"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
|
|
<el-table-column
|
|
label="操作时间"
|
|
align="center"
|
|
width="160"
|
|
prop="createTime"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="状态"
|
|
align="center"
|
|
prop="taskStatusName"
|
|
:show-overflow-tooltip="true"
|
|
>
|
|
<!-- <template slot-scope="scope">
|
|
<dict-tag
|
|
:options="dict.type.part_task_status"
|
|
:value="scope.row.taskStatus"
|
|
/>
|
|
</template> -->
|
|
</el-table-column>
|
|
<el-table-column
|
|
label="备注"
|
|
align="center"
|
|
prop="remark"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column label="操作" align="center" width="230" fixed="right">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
style="margin-bottom: 10px"
|
|
type="normal"
|
|
@click="handleView(scope.row)"
|
|
|
|
>查看</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
style="margin-bottom: 10px"
|
|
type="primary"
|
|
v-show="scope.row.taskStatusName == '未完成'"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['purchase:info:edit']"
|
|
>编辑</el-button
|
|
>
|
|
<el-button size="mini" style="margin-bottom: 10px" type="success"
|
|
v-if="scope.row.taskStatusName == '未完成'"
|
|
@click="handleNotice(scope.row)"
|
|
>通知</el-button>
|
|
|
|
<el-button size="mini" type="warning" @click="handlePrint(scope.row)"
|
|
v-if="scope.row.taskStatusName == '已完成'"
|
|
>验收单</el-button
|
|
>
|
|
|
|
<el-button
|
|
v-show="scope.row.taskStatusName == '未完成'"
|
|
size="mini"
|
|
type="danger"
|
|
@click="handleDeletePart(scope.row)"
|
|
v-hasPermi="['purchase:info:remove']"
|
|
>删除</el-button
|
|
>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
<!-- 入库单弹窗 -->
|
|
<el-dialog
|
|
:title="title"
|
|
:visible.sync="openPrint"
|
|
width="1090px"
|
|
append-to-body
|
|
>
|
|
<div style="height: 500px; overflow-y: scroll">
|
|
<!-- <vue-easy-print tableShow ref="remarksPrintRef" class="print"> -->
|
|
<div id="checkId6">
|
|
<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: 40%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>生产厂家(供应商):{{printData.supplier}}</span>
|
|
</div>
|
|
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 30%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>到货日期:{{printData.arrivalTime}}</span>
|
|
</div>
|
|
<div
|
|
class="item"
|
|
style="
|
|
width: 30%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
"
|
|
>
|
|
<span>单据编号:{{printData.code}}</span>
|
|
</div>
|
|
</div>
|
|
<el-table
|
|
:data="printTableData"
|
|
class="table"
|
|
style="margin-top: 20px; width: 1000px; "
|
|
border
|
|
>
|
|
<!-- <el-table-column type="selection" width="55" align="center" />-->
|
|
<el-table-column label="序号" align="center" type="index" row="2" width="60px"/>
|
|
<el-table-column
|
|
label="配件类型"
|
|
align="center"
|
|
prop="maName"
|
|
/>
|
|
<el-table-column
|
|
label="配件名称"
|
|
align="center"
|
|
prop="maTypeName"
|
|
/>
|
|
<el-table-column
|
|
label="规格型号"
|
|
align="center"
|
|
prop="partName"
|
|
/>
|
|
<el-table-column label="单位" align="center" prop="unitName" />
|
|
<!-- <el-table-column label="采购数量" align="center" prop="purchaseNum" /> -->
|
|
<el-table-column label="验收情况" align="center">
|
|
<el-table-column
|
|
label="到货数量"
|
|
align="center"
|
|
prop="purchaseNum"
|
|
/>
|
|
<el-table-column
|
|
label="验收结论"
|
|
align="center"
|
|
prop="checkResult"
|
|
/>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<div class="fillIn" style="margin-top: 20px;display: flex;justify-content: space-between;" >
|
|
<div class="item" style="width: 33%;display: flex;align-items: center;">
|
|
<div style="width: 25%;">供应科:</div>
|
|
<div style="width: 75%;display: flex;align-items: center;flex-wrap: wrap;" v-if="printDataSign.gySignUrl">
|
|
<div v-for="(sign, index) in printDataSign.gySignUrl" :key="index" style="width: 35%;margin-left: 5px;">
|
|
<img :src="sign.signUrl" :class="sign.signType=='0' ? 'image-type':'sign-type'" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="item" style="width: 33%;display: flex;align-items: center;">
|
|
<div style="width: 30%;">生产技术科:</div>
|
|
<div style="width: 70%;display: flex;align-items: center;flex-wrap: wrap;" v-if="printDataSign.scSignUrl">
|
|
<div v-for="(sign, index) in printDataSign.scSignUrl" :key="index" style="width: 35%;margin-left: 5px;">
|
|
<img :src="sign.signUrl" :class="sign.signType=='0' ? 'image-type':'sign-type'" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="item" style="width: 33%;display: flex;align-items: center;">
|
|
<div style="width: 25%;">库管班:</div>
|
|
<div style="width: 75%;display: flex;align-items: center;flex-wrap: wrap;" v-if="printDataSign.kgSignUrl">
|
|
<div v-for="(sign, index) in printDataSign.kgSignUrl" :key="index" style="width: 35%;margin-left: 5px;">
|
|
<img :src="sign.signUrl" :class="sign.signType=='0' ? 'image-type':'sign-type'" alt="">
|
|
</div>
|
|
</div>
|
|
<!-- <div>
|
|
<span>库管班:{{printData.warehouseTeam}}</span>
|
|
</div> -->
|
|
</div>
|
|
</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="openPrint = false">关 闭</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<!-- 通知弹窗 -->
|
|
<el-dialog :title="title" :visible.sync="showPeople" width="800px" append-to-body @close="cancel">
|
|
<el-row :gutter="24">
|
|
<el-col :span="20">
|
|
<el-form :model="form" ref="form" size="small" :inline="true" :rules="rules">
|
|
<el-form-item label="通知内容:" prop="remark" label-width="100px">
|
|
<el-input v-model="form.remark" type="textarea" maxlength="100" :autosize="{ minRows: 3, maxRows: 6 }" placeholder="请输入通知内容" style="width: 450px"/>
|
|
</el-form-item>
|
|
<el-form-item label="人员名称:" prop="userName" label-width="100px">
|
|
<el-input v-model="form.userName" placeholder="请输入人员名称" style="width: 240px; margin-right: 10px"/>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="getNoticeList">查询</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetDiaQuery">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-table :data="getListPeople" width="600px" height="450" @selection-change="handleSelectionUser" row-key="id">
|
|
<el-table-column type="selection" width="55" align="center" :reserve-selection="true"/>
|
|
<el-table-column label="人员名称" align="center" prop="userName" :show-overflow-tooltip="true"/>
|
|
<el-table-column label="所属机构" align="center" prop="deptName" :show-overflow-tooltip="true"/>
|
|
<el-table-column label="角色" align="center" prop="roleName" :show-overflow-tooltip="true"/>
|
|
<el-table-column label="联系电话" align="center" prop="telphone" :show-overflow-tooltip="true"/>
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button size="mini" type="danger"
|
|
@click="handleDeletePeople(scope.row)" >删除</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<div slot="footer" class="dialog-footer" style="text-align: center">
|
|
<el-button type="primary" @click="addUserOpen">人员添加</el-button>
|
|
<el-button type="primary" @click="configNotice" v-loading="btnLoading">发起验收</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<!-- 人员添加 -->
|
|
<el-dialog title="人员添加" :visible.sync="peopleOpen" v-if="peopleOpen" width="1000px" append-to-body>
|
|
<el-form :model="userForm" size="small" inline>
|
|
<el-form-item label="人员名称:" prop="userName" label-width="100px">
|
|
<el-input v-model="userForm.userName" placeholder="请输入人员名称" style="width: 240px; margin-right: 10px"/>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="getAllUserList">查询</el-button>
|
|
<el-button icon="el-icon-refresh" size="mini" @click="restUser">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionAddUser" height="450">
|
|
<el-table-column type="selection" width="50" align="center" />
|
|
<el-table-column label="序号" align="center" type="index" />
|
|
<el-table-column label="人员账号" align="center" key="userName" prop="userName" width="120" :show-overflow-tooltip="true"/>
|
|
<el-table-column label="人员名称" align="center" key="nickName" prop="nickName" width="120" :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"/>
|
|
<!-- <el-table-column 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>
|
|
</template>
|
|
</el-table-column>-->
|
|
</el-table>
|
|
<div slot="footer" class="dialog-footer" style="text-align: center">
|
|
<el-button type="primary" @click="addUser">添加</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
getPurchaseCheckInfo,
|
|
getAcceptanceForm,
|
|
purchaseCheckInfoRemove,
|
|
getNoticePeople,
|
|
getListUnSelected,
|
|
addNoticeUser,
|
|
bmNoticeInfo,
|
|
delPeople,
|
|
} from "@/api/purchase/goodsArrived";
|
|
import { getListNewBuy, deletePartInfo, getInBoundForm } from '@/api/part/partArrived';
|
|
import vueEasyPrint from "vue-easy-print";
|
|
import printJS from 'print-js';
|
|
export default {
|
|
name: "Home",
|
|
dicts: ["part_task_status"],
|
|
components: { vueEasyPrint },
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
loadingTwo: true,
|
|
btnLoading: false,
|
|
updateTime: "",
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
showPeople: false,
|
|
peopleOpen: false,
|
|
// 总条数
|
|
total: 0,
|
|
totalTwo: 0,
|
|
//搜索下拉数据
|
|
typesList: [],
|
|
modelList: [],
|
|
// 字典表格数据
|
|
typeList: [],
|
|
getListPeople: [],
|
|
configUserList: [],
|
|
phoneNumbers: [],
|
|
//选择人员
|
|
chosenUserList: [],
|
|
userList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 日期范围
|
|
dateRange: [],
|
|
taskStatusList:[{id:'0',name:'未完成'},{id:'1',name:'已完成'}],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
time: null, //申请时间
|
|
name: undefined,
|
|
status: undefined,
|
|
taskStatus: undefined,
|
|
partId: "",
|
|
keyWord: "",
|
|
startTime: undefined,
|
|
endTime: undefined,
|
|
},
|
|
form: {
|
|
remark: "",
|
|
taskId: "",
|
|
userName: "",
|
|
},
|
|
// 表单校验
|
|
rules: {
|
|
remark: [
|
|
{ required: true, message: "通知内容不能为空", trigger: "blur" },
|
|
],
|
|
},
|
|
userForm: {
|
|
userName: "",
|
|
},
|
|
openPrint: false,
|
|
printData: {},
|
|
printDataSign: {},
|
|
printTableData: [],
|
|
// 供应商
|
|
supplierStr: "",
|
|
|
|
productionTechDeptOptions: [
|
|
{ value: '0', label: '张三' },
|
|
{ value: '1', label: '李四' },
|
|
{ value: '2', label: '王五' },
|
|
],
|
|
showPeople: false,
|
|
peopleOpen: false,
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
// this.getTypeList()
|
|
},
|
|
methods: {
|
|
// getTypeList() {
|
|
// getTypeList({ level: '3' }).then((response) => {
|
|
// this.typesList = response.data
|
|
// })
|
|
// getTypeList({ level: '4' }).then((response) => {
|
|
// this.modelList = response.data
|
|
// })
|
|
// },
|
|
|
|
getList() {
|
|
this.loading = true;
|
|
const params = {
|
|
keyWord: this.queryParams.keyWord,
|
|
startTime: this.queryParams.startTime,
|
|
endTime: this.queryParams.endTime,
|
|
taskStatus: this.queryParams.taskStatus,
|
|
partId: this.queryParams.partId,
|
|
pageSize: this.queryParams.pageSize,
|
|
pageNum: this.queryParams.pageNum,
|
|
statusList: [1],
|
|
taskStage: 1,
|
|
};
|
|
getListNewBuy(this.addDateRange(params)).then((response) => {
|
|
this.typeList = response.data.rows;
|
|
this.total = response.data.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.queryParams.time = [];
|
|
this.resetForm("queryForm");
|
|
this.queryParams.keyWord = "";
|
|
this.handleQuery();
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.$emit("addTools");
|
|
},
|
|
/** 查看按钮操作 */
|
|
handleView(row) {
|
|
this.$emit("queryTools", row.taskId, row.id);
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.$emit("editTools", row.taskId, row.id);
|
|
},
|
|
|
|
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
taskId: "",
|
|
remark: "",
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
|
|
/** 验收按钮 */
|
|
handleAccept(row) {
|
|
|
|
this.$emit("acceptTools", row.taskId);
|
|
},
|
|
//编码管理
|
|
handleCode(row) {
|
|
|
|
this.$emit("codingTools", row.taskId);
|
|
},
|
|
|
|
//获取入库单数据
|
|
getPrintTable(params) {
|
|
getInBoundForm({ id: params.id,taskId:params.taskId }).then((response) => {
|
|
this.printDataSign = response.data;
|
|
this.printData = response.data.partTypeCheckInfo;
|
|
this.printTableData = response.data.partTypeCheckDetailsList;
|
|
|
|
});
|
|
},
|
|
//查看入库单
|
|
handlePrint(row) {
|
|
// this.query.taskId = row.taskId
|
|
this.openPrint = true;
|
|
this.title = "到货验收单";
|
|
let params = {
|
|
id: row.id,
|
|
taskId: row.taskId,
|
|
};
|
|
this.getPrintTable(params)
|
|
},
|
|
//打印
|
|
print() {
|
|
// this.$refs.remarksPrintRef.print();
|
|
printJS({
|
|
printable: 'checkId6',
|
|
type: 'html',
|
|
targetStyles: ['*'],
|
|
maxWidth:'1400'
|
|
// 其他配置选项
|
|
});
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
handleDeletePart(row) {
|
|
this.$modal
|
|
.confirm("是否确认删除所选择的数据项?")
|
|
.then(function () {
|
|
return deletePartInfo({id:row.id,taskId:row.taskId});
|
|
})
|
|
.then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
const formatTime = (date) => {
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0');
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
const hours = String(date.getHours()).padStart(2, '0');
|
|
const minutes = String(date.getMinutes()).padStart(2, '0');
|
|
const seconds = String(date.getSeconds()).padStart(2, '0');
|
|
return `${year}${month}${day}_${hours}${minutes}${seconds}`;
|
|
};
|
|
|
|
const currentTime = formatTime(new Date());
|
|
this.download(
|
|
"/material/part_arrived/export",
|
|
{ ...this.queryParams, taskStage: 1},
|
|
`配件新购到货__${currentTime}.xlsx`
|
|
);
|
|
},
|
|
|
|
//----消息通知
|
|
getNowTime() {
|
|
var today = new Date();
|
|
var year = today.getFullYear(); //获取年份
|
|
var month = today.getMonth() + 1; //获取月份
|
|
var day = today.getDate(); //获取日期
|
|
return year + "-" + month + "-" + day;
|
|
},
|
|
|
|
handleNotice(row) {
|
|
this.reset();
|
|
this.form.taskId = row.taskId;
|
|
this.$set(
|
|
this.form,
|
|
"remark",
|
|
"各位同事您好,请于" +
|
|
this.getNowTime() +
|
|
"在宏源工业园,进行"+row.purchaseMaTypeName+"验收。"
|
|
);
|
|
this.getNoticeList();
|
|
this.showPeople = true;
|
|
},
|
|
getNoticeList() {
|
|
const taskId = this.form.taskId;
|
|
getNoticePeople({ taskId: taskId, userName: this.form.userName }).then((response) => {
|
|
this.getListPeople = response.rows;
|
|
this.showPeople = true;
|
|
this.loadingTwo = false;
|
|
this.title = "通知";
|
|
});
|
|
},
|
|
resetDiaQuery() {
|
|
this.form.userName = ""
|
|
this.getNoticeList();
|
|
},
|
|
addUserOpen() {
|
|
this.getAllUserList();
|
|
this.peopleOpen = true;
|
|
},
|
|
/** 查询所有用户列表--可添加人员 */
|
|
getAllUserList() {
|
|
getListUnSelected({userName: this.userForm.userName}).then((response) => {
|
|
this.userList = response.rows;
|
|
});
|
|
},
|
|
restUser() {
|
|
this.userForm.userName = "";
|
|
this.getAllUserList();
|
|
},
|
|
|
|
// 多选框选中-添加人员
|
|
handleSelectionAddUser(selection) {
|
|
// console.log(selection)
|
|
this.chosenUserList = selection;
|
|
},
|
|
//添加人员
|
|
addUser() {
|
|
if (this.chosenUserList.length < 1) {
|
|
this.$message.error("请选择人员!");
|
|
return;
|
|
}
|
|
// console.log(this.chosenUserList,"chosenUserList")
|
|
addNoticeUser(this.chosenUserList).then((response) => {
|
|
if (response.code == 200) {
|
|
this.getNoticeList();
|
|
this.peopleOpen = false;
|
|
}
|
|
});
|
|
},
|
|
handleDeletePeople(row) {
|
|
const ids = row.id;
|
|
this.$modal
|
|
.confirm("是否删除所选择的通知人员?")
|
|
.then(function () {
|
|
return delPeople(ids);
|
|
})
|
|
.then(() => {
|
|
this.getNoticeList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
// 多选框选中-通知人员
|
|
handleSelectionUser(selection) {
|
|
// console.log(selection)
|
|
this.configUserList = selection;
|
|
},
|
|
//确认消息通知
|
|
configNotice() {
|
|
this.$refs["form"].validate((valid) => {
|
|
if (valid) {
|
|
this.configUserList.forEach((item, index) => {
|
|
console.log(item);
|
|
// item.telphone = item.telphone
|
|
// item.remark = this.form.remark
|
|
this.phoneNumbers.push(item.telphone);
|
|
});
|
|
let param = {
|
|
taskId: this.form.taskId,
|
|
phoneNumbers: this.phoneNumbers,
|
|
content: this.form.remark,
|
|
isPartFlag: 0,
|
|
};
|
|
if (this.configUserList.length > 0) {
|
|
if (this.btnLoading) return
|
|
this.btnLoading = true
|
|
bmNoticeInfo(param).then((response) => {
|
|
console.log(response);
|
|
if (response.code == 200) {
|
|
this.$message({
|
|
message: "操作成功",
|
|
type: "success",
|
|
});
|
|
this.btnLoading = false
|
|
this.showPeople = false;
|
|
this.getList();
|
|
}
|
|
}).catch(() => {
|
|
this.btnLoading = false
|
|
});
|
|
} else {
|
|
this.$message({
|
|
message: "请选择通知人员!",
|
|
type: "error",
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
// 人员取消按钮
|
|
cancel() {
|
|
this.showPeople = false;
|
|
this.reset();
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
$route: {
|
|
handler(to) {
|
|
if (to.query.keyWord) {
|
|
this.queryParams.keyWord = to.query.keyWord;
|
|
}
|
|
},
|
|
deep: true,
|
|
immediate: true,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
::v-deep.el-table .fixed-width .el-button--mini {
|
|
width: 70px !important;
|
|
margin-bottom: 10px;
|
|
}
|
|
.image-type {
|
|
/* 旋转图片 */
|
|
transform: rotate(-90deg);
|
|
/* 确保旋转后的图片不会超出容器 */
|
|
max-width: 100%;
|
|
/* 保持图片的宽高比 */
|
|
width: 40px;
|
|
height: 80px;
|
|
}
|
|
.sign-type{
|
|
width: 80px;
|
|
height: 40px;
|
|
}
|
|
</style>
|