From 6a08de2fedd83c195d7755a13b81970fe6d2b822 Mon Sep 17 00:00:00 2001 From: batman <978517621@qq.com> Date: 星期二, 07 三月 2023 16:19:16 +0800 Subject: [PATCH] 新修改添加页面 --- src/views/specialWorkSystem/specialIndex/index.vue | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/views/specialWorkSystem/specialIndex/index.vue b/src/views/specialWorkSystem/specialIndex/index.vue index e7f696e..206a13f 100644 --- a/src/views/specialWorkSystem/specialIndex/index.vue +++ b/src/views/specialWorkSystem/specialIndex/index.vue @@ -70,6 +70,7 @@ :value="item.id" /> </el-select> + <el-button type="text" size="small">所有记录>></el-button> </div> </div> <div class="chart"> @@ -80,7 +81,7 @@ <el-table-column property="operators" label="角色" align="center"/> <el-table-column label="是否持证" align="center" width="180"> <template #default="scope"> - <el-tag :type="scope.row.status==2?'success':(scope.row.status==8||scope.row.status==9)?'warning':'danger'">{{ scope.row.statusDesc }}</el-tag> + </template> </el-table-column> </el-table> @@ -94,7 +95,7 @@ <el-col :span="5" style="display:flex;align-items: center"> <span style="white-space: nowrap">作业类型:</span> <div class="grid-content topInfo"> - <el-select v-model="searchWord"> + <el-select v-model="searchWord" size="small"> <el-option v-for="item in workType" :key="item.id" @@ -107,7 +108,7 @@ <el-col :span="5" style="display:flex;align-items: center"> <span style="white-space: nowrap">作业状态:</span> <div class="grid-content topInfo"> - <el-select v-model="searchStatus"> + <el-select v-model="searchStatus" size="small"> <el-option v-for="item in workStatus" :key="item.value" @@ -120,7 +121,7 @@ <el-col :span="5" style="display:flex;align-items: center"> <span style="white-space: nowrap">作业部门:</span> <div class="grid-content topInfo"> - <el-cascader v-model="searchDep" :options="departmentList" :props="casProps" :show-all-levels="false"/> + <el-cascader size="small" v-model="searchDep" :options="departmentList" :props="casProps" :show-all-levels="false"/> </div> </el-col> <el-col :span="6" style="display:flex;align-items: center;"> @@ -128,6 +129,7 @@ <div class="grid-content topInfo"> <el-date-picker v-model="searchDate" + size="small" type="daterange" unlink-panels range-separator="至" @@ -137,8 +139,8 @@ /> </div> </el-col> - <el-button type="primary" style="margin-left: 20px" @click="searchRecord">查询</el-button> - <el-button plain @click="clearSearch">重置</el-button> + <el-button type="primary" style="margin-left: 20px" @click="searchRecord" size="small">查询</el-button> + <el-button plain @click="clearSearch" size="small">重置</el-button> </el-row> <div class="main-card"> <el-row class="cardTop" style="justify-content: space-between"> @@ -497,7 +499,7 @@ xAxis: [ { type: 'category', - data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], + data: ['事业部1', '事业部2', '事业部3', '事业部4', '事业部5', '事业部6', '事业部7'], axisTick: { alignWithLabel: true } -- Gitblit v1.9.2