This commit is contained in:
mashuai 2025-11-28 14:24:25 +08:00
parent 1f5861e97c
commit 6c6cc8769d
2 changed files with 7 additions and 4 deletions

View File

@ -90,7 +90,7 @@
<template slot-scope="scope">
<el-button type="text" size="mini" icon="el-icon-search" @click="handleEdit(scope.row, 1)">查看</el-button>
<el-button
v-show="scope.row.status == '0'"
v-show="scope.row.status == '0' ||scope.row.status == '3'"
v-hasPermi="['direct:info:edit']"
type="text"
size="mini"
@ -100,7 +100,7 @@
编辑
</el-button>
<el-button
v-show="scope.row.status == '0'"
v-show="scope.row.status == '0' ||scope.row.status == '3'"
v-hasPermi="['direct:info:delete']"
type="text"
size="mini"

View File

@ -27,10 +27,10 @@
</el-select>
</el-form-item>
<el-form-item label="工程" prop="proName">
<el-form-item label="工程名称" prop="proName">
<el-select
v-model="queryParams.proName"
placeholder="请选择工程"
placeholder="请选择工程名称"
clearable
filterable
style="width: 240px"
@ -287,9 +287,12 @@ export default {
//
total: 0,
tableColumns: [
{ label: '分公司', prop: 'impUnitName', unShowTooltip: true },
{ label: '项目部', prop: 'departName', unShowTooltip: true },
{ label: '工程名称', prop: 'proName', unShowTooltip: true },
{ label: '物资名称', prop: 'typeName', width: 180 },
{ label: '规格型号', prop: 'typeModelName', width: 160 },
{ label: '机具类型', prop: 'jiJuType', width: 100 },
{ label: '计量单位', prop: 'unit', width: 100 },
{ label: '业务需求数量', prop: 'businessNum',width: 130 },
{ label: '实际供应数量', prop: 'supplyNum',width: 130 },