790 lines
27 KiB
Vue
790 lines
27 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form
|
|
:model="queryParams"
|
|
ref="queryForm"
|
|
size="small"
|
|
:inline="true"
|
|
v-show="showSearch"
|
|
label-width="80px"
|
|
>
|
|
<el-form-item label="关键字" prop="keyword">
|
|
<el-input
|
|
v-model="queryParams.keyword"
|
|
placeholder="请输入关键字"
|
|
clearable
|
|
style="width: 240px"
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="领料单位" prop="unitId">
|
|
<el-select
|
|
v-model="queryParams.unitId"
|
|
filterable
|
|
clearable
|
|
@change="GetProData"
|
|
style="width: 240px"
|
|
placeholder="请选择"
|
|
>
|
|
<el-option
|
|
v-for="item in unitList"
|
|
:key="item.id"
|
|
:label="item.name"
|
|
:value="item.id"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="工程名称" prop="proId">
|
|
<el-select
|
|
v-model="queryParams.proId"
|
|
filterable
|
|
clearable
|
|
@change="GetUnitData"
|
|
style="width: 240px"
|
|
placeholder="请选择"
|
|
>
|
|
<el-option
|
|
v-for="item in proList"
|
|
:key="item.id"
|
|
:label="item.name"
|
|
:value="item.id"
|
|
>
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="申请日期" prop="time">
|
|
<el-date-picker
|
|
v-model="queryParams.time"
|
|
type="daterange"
|
|
value-format="yyyy-MM-dd"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
end-placeholder="结束日期"
|
|
style="width: 240px"
|
|
>
|
|
</el-date-picker>
|
|
</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>
|
|
<!-- <el-col :span="1.5">-->
|
|
<!-- <el-button-->
|
|
<!-- type="danger"-->
|
|
<!-- plain-->
|
|
<!-- icon="el-icon-refresh"-->
|
|
<!-- size="mini"-->
|
|
<!-- @click="handleRefreshCache"-->
|
|
<!-- v-hasPermi="['store:labelType:remove']"-->
|
|
<!-- >刷新缓存</el-button>-->
|
|
<!-- </el-col>-->
|
|
<right-toolbar
|
|
:showSearch.sync="showSearch"
|
|
@queryTable="getList"
|
|
></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table
|
|
v-loading="loading"
|
|
:data="leaseAuditList"
|
|
@selection-change="handleSelectionChange"
|
|
>
|
|
<!-- <el-table-column type="selection" width="55" align="center" /> -->
|
|
<!-- <el-table-column
|
|
label="序号"
|
|
align="center"
|
|
width="80"
|
|
type="index"
|
|
>
|
|
<template scope="scope">
|
|
<span>{{
|
|
(queryParams.pageNum - 1) * 10 + scope.$index + 1
|
|
}}</span>
|
|
</template>
|
|
</el-table-column> -->
|
|
<el-table-column
|
|
align="center"
|
|
label="序号"
|
|
type="index"
|
|
:index="
|
|
indexContinuation(queryParams.pageNum, queryParams.pageSize)
|
|
"
|
|
/>
|
|
<el-table-column
|
|
label="领料单号"
|
|
align="center"
|
|
prop="code"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="领料单位"
|
|
align="center"
|
|
prop="unitName"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="领料工程"
|
|
align="center"
|
|
prop="proName"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="协议号"
|
|
align="center"
|
|
prop="agreementCode"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="领料人"
|
|
align="center"
|
|
prop="leasePerson"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="联系电话"
|
|
align="center"
|
|
prop="leasePhone"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="申请人"
|
|
align="center"
|
|
prop="applyFor"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="申请时间"
|
|
align="center"
|
|
prop="createTimes"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<el-table-column
|
|
label="任务状态"
|
|
align="center"
|
|
prop="taskName"
|
|
:show-overflow-tooltip="true"
|
|
/>
|
|
<!-- <el-table-column label="审批结果 " align="center" prop="dictName" :show-overflow-tooltip="true" />-->
|
|
<el-table-column
|
|
label="备注"
|
|
align="center"
|
|
:show-overflow-tooltip="true"
|
|
>
|
|
<template slot-scope="scope">
|
|
<span>{{ scope.row.leaseApplyInfoList[0].remark }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="250" align="center">
|
|
<template slot-scope="scope">
|
|
<el-button size="mini" @click="handleView(scope.row)"
|
|
>查看</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleExamine(scope.row)"
|
|
v-hasPermi="['receive:examine:fgs']"
|
|
v-if="Number(scope.row.examineStatusId) == 30"
|
|
>审批</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleExamine(scope.row)"
|
|
v-hasPermi="['receive:examine:sgb']"
|
|
v-if="
|
|
Number(scope.row.examineStatusId) == 31 &&
|
|
(scope.row.leaseApplyInfoList[0].status == '0' ||
|
|
scope.row.leaseApplyInfoList[0].status == '7' ||
|
|
scope.row.leaseApplyInfoList[0].status == '8' ||
|
|
scope.row.leaseApplyInfoList[0].status == '6')
|
|
"
|
|
>审批</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleExamine(scope.row)"
|
|
v-hasPermi="['receive:examine:ajb']"
|
|
v-if="
|
|
Number(scope.row.examineStatusId) == 31 &&
|
|
(scope.row.leaseApplyInfoList[0].status == '0' ||
|
|
scope.row.leaseApplyInfoList[0].status == '5' ||
|
|
scope.row.leaseApplyInfoList[0].status == '6' ||
|
|
scope.row.leaseApplyInfoList[0].status == '8')
|
|
"
|
|
>审批</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleExamine(scope.row, 'jjfgs')"
|
|
v-hasPermi="['receive:examine:nbry-jjfgs']"
|
|
v-if="
|
|
Number(scope.row.examineStatusId) == 32 &&
|
|
(scope.row.leaseApplyInfoList[0].status == '5' ||
|
|
scope.row.leaseApplyInfoList[0].status == '7' ||
|
|
scope.row.leaseApplyInfoList[0].status == '4' ||
|
|
scope.row.leaseApplyInfoList[0].status == '2')
|
|
"
|
|
>审批</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleExamine(scope.row, 'sbfgs')"
|
|
v-hasPermi="['receive:examine:nbry-sbfgs']"
|
|
v-if="
|
|
Number(scope.row.examineStatusId) == 32 &&
|
|
(scope.row.leaseApplyInfoList[0].status == '5' ||
|
|
scope.row.leaseApplyInfoList[0].status == '7' ||
|
|
scope.row.leaseApplyInfoList[0].status == '4' ||
|
|
scope.row.leaseApplyInfoList[0].status == '2')
|
|
"
|
|
>审批</el-button
|
|
>
|
|
<el-button
|
|
size="mini"
|
|
type="info"
|
|
@click="openLld(scope.row)"
|
|
>领料单</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 :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 {
|
|
listType,
|
|
getType,
|
|
delType,
|
|
addType,
|
|
updateType,
|
|
refreshCache,
|
|
} from '@/api/system/dict/type'
|
|
import {
|
|
getLeaseManageListAll,
|
|
getUnitData,
|
|
getProData,
|
|
getLeaseListAll,
|
|
} from '@/api/claimAndRefund/receive'
|
|
import { getInfo } from '@/api/login'
|
|
import vueEasyPrint from 'vue-easy-print'
|
|
export default {
|
|
// name: "ReceiveManage",
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 字典表格数据
|
|
typeList: [],
|
|
// 弹出层标题
|
|
title: '',
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 日期范围
|
|
dateRange: [],
|
|
// 查询参数
|
|
queryParams: {
|
|
time: [],
|
|
unitId: null,
|
|
proId: null,
|
|
keyword: '',
|
|
types: 2,
|
|
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
dictName: undefined,
|
|
dictType: undefined,
|
|
status: undefined,
|
|
},
|
|
user: {},
|
|
unitList: [],
|
|
proList: [],
|
|
leaseAuditList: [],
|
|
showJJExamineBtn: false, //内部审批-机具分公司
|
|
showSBExamineBtn: false, //内部审批-调试分公司
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
dictName: [
|
|
{
|
|
required: true,
|
|
message: '字典名称不能为空',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
dictType: [
|
|
{
|
|
required: true,
|
|
message: '字典类型不能为空',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
peopleOpen: false,
|
|
noticeOpen: false,
|
|
nform: {
|
|
notice: '',
|
|
},
|
|
nrules: {
|
|
notice: [
|
|
{
|
|
required: true,
|
|
message: '通知内容不能为空',
|
|
trigger: 'blur',
|
|
},
|
|
],
|
|
},
|
|
deptName: undefined,
|
|
|
|
//领料单
|
|
leaseApplyDetails: [],
|
|
// 领料任务详情数据
|
|
leaseApplyData: {},
|
|
}
|
|
},
|
|
created() {
|
|
this.GetUserInfo()
|
|
// this.getList();
|
|
|
|
this.GetUnitData()
|
|
this.GetProData()
|
|
},
|
|
components: { vueEasyPrint },
|
|
methods: {
|
|
// 获取用户信息
|
|
async GetUserInfo() {
|
|
const res = await getInfo()
|
|
this.user = res.user
|
|
// console.log(this.user)
|
|
this.getList()
|
|
},
|
|
/** 查询列表 */
|
|
async getList() {
|
|
this.loading = true
|
|
const params = {
|
|
unitId: this.queryParams.unitId,
|
|
projectId: this.queryParams.proId,
|
|
keyWord: this.queryParams.keyword,
|
|
startTime: this.queryParams.time && this.queryParams.time[0],
|
|
endTime: this.queryParams.time && this.queryParams.time[1],
|
|
types: this.queryParams.types,
|
|
souceBy: 0,
|
|
pageSize: this.queryParams.pageSize,
|
|
pageNum: this.queryParams.pageNum,
|
|
}
|
|
|
|
const res = await getLeaseManageListAll(params)
|
|
this.loading = false
|
|
console.log('getList ============', res)
|
|
this.leaseAuditList = res.data.rows
|
|
// this.leaseAuditList.forEach((item,index)=>{
|
|
// console.log(item.leaseApplyInfoList)
|
|
// if(item.leaseApplyInfoList.length>0){
|
|
// // item.showExamineBtn = true;
|
|
// if(item.leaseApplyInfoList[0].status=="0"||item.leaseApplyInfoList[0].status=="5"||item.leaseApplyInfoList[0].status=="7"||item.leaseApplyInfoList[0].status=="8"){
|
|
// item.showExamineBtn = true;
|
|
// }
|
|
// }
|
|
|
|
// })
|
|
console.log(this.leaseAuditList)
|
|
this.total = res.data.total
|
|
},
|
|
|
|
// 获取 来往单位 列表数据
|
|
async GetUnitData() {
|
|
const params = {
|
|
id: this.queryParams.proId,
|
|
}
|
|
const res = await getUnitData(params)
|
|
this.unitList = res.data
|
|
},
|
|
// 获取 工程名称 列表数据
|
|
async GetProData() {
|
|
const params = {
|
|
id: this.queryParams.unitId,
|
|
}
|
|
const res = await getProData(params)
|
|
this.proList = res.data
|
|
},
|
|
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false
|
|
this.reset()
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
dictId: undefined,
|
|
dictName: undefined,
|
|
dictType: undefined,
|
|
status: '0',
|
|
remark: undefined,
|
|
}
|
|
this.resetForm('form')
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1
|
|
this.getList()
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.queryParams.time = []
|
|
this.resetForm('queryForm')
|
|
this.GetUnitData()
|
|
this.GetProData()
|
|
this.handleQuery()
|
|
},
|
|
handleNotice() {
|
|
this.noticeOpen = true
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
// this.$tab.closeOpenPage("/claimAndRefund/receive/receiveManageAdd");
|
|
// this.reset();
|
|
// this.open = true;
|
|
// this.title = "添加字典类型";
|
|
},
|
|
handleExamine(row, type) {
|
|
this.$tab.closeOpenPage({
|
|
path: '/claimAndRefund/receive/receiveExamine',
|
|
query: {
|
|
taskId: row.taskId,
|
|
},
|
|
})
|
|
},
|
|
handleView(row) {
|
|
this.$tab.closeOpenPage({
|
|
path: '/claimAndRefund/receive/receiveExamine?isView=true',
|
|
query: {
|
|
taskId: row.taskId,
|
|
},
|
|
})
|
|
},
|
|
//打开领料单
|
|
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()
|
|
},
|
|
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map((item) => item.dictId)
|
|
this.single = selection.length != 1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset()
|
|
const dictId = row.dictId || this.ids
|
|
getType(dictId).then((response) => {
|
|
this.form = response.data
|
|
this.open = true
|
|
this.title = '验收'
|
|
})
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm: function () {
|
|
this.$refs['form'].validate((valid) => {
|
|
if (valid) {
|
|
if (this.form.dictId != undefined) {
|
|
updateType(this.form).then((response) => {
|
|
this.$modal.msgSuccess('修改成功')
|
|
this.open = false
|
|
this.getList()
|
|
})
|
|
} else {
|
|
addType(this.form).then((response) => {
|
|
this.$modal.msgSuccess('新增成功')
|
|
this.open = false
|
|
this.getList()
|
|
})
|
|
}
|
|
}
|
|
})
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const dictIds = row.dictId || this.ids
|
|
this.$modal
|
|
.confirm('是否确认删除所选择的数据项?')
|
|
.then(function () {
|
|
return delType(dictIds)
|
|
})
|
|
.then(() => {
|
|
this.getList()
|
|
this.$modal.msgSuccess('删除成功')
|
|
})
|
|
.catch(() => {})
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download(
|
|
'material/base/tm_task/applyExport',
|
|
{
|
|
...this.queryParams,
|
|
},
|
|
`领料审批单_${new Date().getTime()}.xlsx`,
|
|
)
|
|
},
|
|
/** 刷新缓存按钮操作 */
|
|
handleRefreshCache() {
|
|
refreshCache().then(() => {
|
|
this.$modal.msgSuccess('刷新成功')
|
|
this.$store.dispatch('dict/cleanDict')
|
|
})
|
|
},
|
|
},
|
|
watch: {
|
|
$route: {
|
|
handler(to) {
|
|
if (to.query.keyWord) {
|
|
this.queryParams.keyWord = to.query.keyWord
|
|
}
|
|
},
|
|
deep: true,
|
|
immediate: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.print {
|
|
.title {
|
|
text-align: center;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
.info {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.item {
|
|
width: 50%;
|
|
flex-shrink: 0;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.fillIn {
|
|
margin-top: 15px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
::v-deep.el-table .fixed-width .el-button--mini {
|
|
width: 60px !important;
|
|
margin-bottom: 10px;
|
|
}
|
|
</style>
|