This commit is contained in:
parent
1f5861e97c
commit
6c6cc8769d
|
|
@ -90,7 +90,7 @@
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button type="text" size="mini" icon="el-icon-search" @click="handleEdit(scope.row, 1)">查看</el-button>
|
<el-button type="text" size="mini" icon="el-icon-search" @click="handleEdit(scope.row, 1)">查看</el-button>
|
||||||
<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']"
|
v-hasPermi="['direct:info:edit']"
|
||||||
type="text"
|
type="text"
|
||||||
size="mini"
|
size="mini"
|
||||||
|
|
@ -100,7 +100,7 @@
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
<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']"
|
v-hasPermi="['direct:info:delete']"
|
||||||
type="text"
|
type="text"
|
||||||
size="mini"
|
size="mini"
|
||||||
|
|
|
||||||
|
|
@ -27,10 +27,10 @@
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
<el-form-item label="工程" prop="proName">
|
<el-form-item label="工程名称" prop="proName">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="queryParams.proName"
|
v-model="queryParams.proName"
|
||||||
placeholder="请选择工程"
|
placeholder="请选择工程名称"
|
||||||
clearable
|
clearable
|
||||||
filterable
|
filterable
|
||||||
style="width: 240px"
|
style="width: 240px"
|
||||||
|
|
@ -287,9 +287,12 @@ export default {
|
||||||
// 总条数
|
// 总条数
|
||||||
total: 0,
|
total: 0,
|
||||||
tableColumns: [
|
tableColumns: [
|
||||||
|
{ label: '分公司', prop: 'impUnitName', unShowTooltip: true },
|
||||||
|
{ label: '项目部', prop: 'departName', unShowTooltip: true },
|
||||||
{ label: '工程名称', prop: 'proName', unShowTooltip: true },
|
{ label: '工程名称', prop: 'proName', unShowTooltip: true },
|
||||||
{ label: '物资名称', prop: 'typeName', width: 180 },
|
{ label: '物资名称', prop: 'typeName', width: 180 },
|
||||||
{ label: '规格型号', prop: 'typeModelName', width: 160 },
|
{ label: '规格型号', prop: 'typeModelName', width: 160 },
|
||||||
|
{ label: '机具类型', prop: 'jiJuType', width: 100 },
|
||||||
{ label: '计量单位', prop: 'unit', width: 100 },
|
{ label: '计量单位', prop: 'unit', width: 100 },
|
||||||
{ label: '业务需求数量', prop: 'businessNum',width: 130 },
|
{ label: '业务需求数量', prop: 'businessNum',width: 130 },
|
||||||
{ label: '实际供应数量', prop: 'supplyNum',width: 130 },
|
{ label: '实际供应数量', prop: 'supplyNum',width: 130 },
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue