|
|
@@ -8,18 +8,18 @@
|
|
|
:inline="true"
|
|
|
label-width="68px"
|
|
|
>
|
|
|
- <el-form-item label="项目" prop="projectId">
|
|
|
+ <el-form-item label="项目" prop="contractName">
|
|
|
<el-input
|
|
|
- v-model="queryParams.projectId"
|
|
|
+ v-model="queryParams.contractName"
|
|
|
placeholder="请输入项目"
|
|
|
clearable
|
|
|
@keyup.enter="handleQuery"
|
|
|
class="!w-240px"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="任务" prop="taskId">
|
|
|
+ <el-form-item label="任务" prop="taskName">
|
|
|
<el-input
|
|
|
- v-model="queryParams.taskId"
|
|
|
+ v-model="queryParams.taskName"
|
|
|
placeholder="请输入任务"
|
|
|
clearable
|
|
|
@keyup.enter="handleQuery"
|
|
|
@@ -107,6 +107,7 @@
|
|
|
type="primary"
|
|
|
@click="openForm('fill', scope.row.id)"
|
|
|
v-hasPermi="['pms:iot-rd-daily-report:update']"
|
|
|
+ v-if="scope.row.status === 0"
|
|
|
>
|
|
|
填报
|
|
|
</el-button>
|
|
|
@@ -155,7 +156,9 @@ const queryParams = reactive({
|
|
|
pageSize: 10,
|
|
|
deptId: undefined,
|
|
|
projectId: undefined,
|
|
|
+ contractName: undefined,
|
|
|
taskId: undefined,
|
|
|
+ taskName: undefined,
|
|
|
projectClassification: undefined,
|
|
|
techniqueIds: undefined,
|
|
|
deviceIds: undefined,
|