From ea2b0825e761a55b17e7bfa044e8267de09c27a9 Mon Sep 17 00:00:00 2001
From: Admin <978517621@qq.com>
Date: Tue, 13 Sep 2022 14:44:13 +0800
Subject: [PATCH] Default Changelist
---
src/views/specialWorkSystem/workPlan/workAppoint/index.vue | 29 +++++++++++++----------------
1 files changed, 13 insertions(+), 16 deletions(-)
diff --git a/src/views/specialWorkSystem/workPlan/workAppoint/index.vue b/src/views/specialWorkSystem/workPlan/workAppoint/index.vue
index a627b01..ffeac33 100644
--- a/src/views/specialWorkSystem/workPlan/workAppoint/index.vue
+++ b/src/views/specialWorkSystem/workPlan/workAppoint/index.vue
@@ -11,27 +11,24 @@
<el-col :span="6" style="display:flex;align-items: center">
<span style="white-space: nowrap">预约日期:</span>
<div class="grid-content topInfo">
- <el-select v-model="workType" placeholder="请选择作业类型">
- <el-option
- v-for="item in workTypeList"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- />
- </el-select>
+ <el-date-picker
+ v-model="searchDate"
+ type="datetime"
+ format="YYYY/MM/DD HH:mm:ss" value-format="YYYY-MM-DD HH:mm:ss"
+ />
</div>
</el-col>
- <el-button type="primary" @click="searchRecord">查询</el-button>
+ <el-button style="margin-left: 20px" type="primary" @click="searchRecord">查询</el-button>
<el-button plain @click="clearSearch">重置</el-button>
</el-row>
<div class="homeCard">
<div class="main-card">
-<!-- <el-row class="cardTop">-->
-<!-- <el-col :span="12" class="mainCardBtn">-->
+ <el-row class="cardTop">
+ <el-col :span="12" class="mainCardBtn">
<!-- <el-button type="primary" :icon="Plus" size="default" @click="dialogAddRecord = true">新增</el-button>-->
-<!-- </el-col>-->
-<!-- <el-button type="primary" :icon="Refresh" size="default" @click="reLoadData"/>-->
-<!-- </el-row>-->
+ </el-col>
+ <el-button type="primary" :icon="Refresh" size="default" @click="reLoadData"/>
+ </el-row>
<el-table
:data="tableData"
style="width: 100%"
@@ -234,7 +231,7 @@
chosenIndex: null | number;
deleteId: null | number;
workPermitNo: string;
- workType: number | null;
+ searchDate: string;
totalSize: number;
addRecord: {
@@ -257,7 +254,7 @@
totalSize: 0,
chosenIndex: null,
workPermitNo: '',
- workType: null,
+ searchDate: '',
tableData: [],
departmentList: [],
department: '',
--
Gitblit v1.9.2