班组管理问题修改
This commit is contained in:
parent
fd7c3aa5ca
commit
98ffe7a9d9
|
|
@ -1,21 +1,21 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
<!-- <el-form-item label="关键字" prop="postName">
|
<el-form-item label="关键字" prop="keyWord">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.postName"
|
v-model="queryParams.keyWord"
|
||||||
placeholder="请输入关键字"
|
placeholder="请输入关键字"
|
||||||
clearable
|
clearable maxlength="20"
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
/>
|
/>
|
||||||
</el-form-item> -->
|
</el-form-item>
|
||||||
<el-form-item label="班组名称" prop="teamName">
|
<el-form-item label="班组名称" prop="teamName">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.teamName"
|
v-model="queryParams.teamName"
|
||||||
placeholder="请输入班组名称"
|
placeholder="请输入班组名称"
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="30"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="班组长" prop="teamLeader">
|
<el-form-item label="班组长" prop="teamLeader">
|
||||||
|
|
@ -24,17 +24,18 @@
|
||||||
placeholder="请输入班组长"
|
placeholder="请输入班组长"
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
maxlength="30"
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="项目部" prop="roleCode">
|
<el-form-item label="工程名称" prop="proName">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="queryParams.roleCode"
|
v-model="queryParams.proName"
|
||||||
placeholder="请输入项目部"
|
placeholder="请输入工程名称"
|
||||||
clearable
|
clearable
|
||||||
@keyup.enter.native="handleQuery"
|
@keyup.enter.native="handleQuery"
|
||||||
|
maxlength="20"
|
||||||
/>
|
/>
|
||||||
</el-form-item> -->
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
|
@ -193,24 +194,28 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- 表格 -->
|
<!-- 表格 -->
|
||||||
<el-table :data="memberList">
|
<el-table :data="memberList" border="1">
|
||||||
<el-table-column label="序号" align="center" type="index" />
|
<el-table-column label="序号" align="center" type="index" />
|
||||||
<el-table-column label="姓名" align="center" prop="name" />
|
<el-table-column label="姓名" align="left" prop="name">
|
||||||
<el-table-column label="性别" align="center" prop="sex" width="60">
|
<template slot-scope="scope">
|
||||||
<template slot-scope="scope">
|
<span>{{ scope.row.name }}</span> <span class="teamLeaderBox" v-if="scope.row.isTeamLeader==1">班组长</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="性别" align="left" prop="sex" width="60">
|
||||||
|
<template slot-scope="scope">
|
||||||
<dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex"/>
|
<dict-tag :options="dict.type.sys_user_sex" :value="scope.row.sex"/>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="身份证号" align="center" prop="idCard" width="180"/>
|
<el-table-column label="身份证号" align="left" prop="idCard" width="180"/>
|
||||||
<el-table-column label="电话" align="center" prop="phone" />
|
<el-table-column label="电话" align="left" prop="phone" />
|
||||||
|
|
||||||
<el-table-column label="状态" align="center" prop="workStatus">
|
<el-table-column label="状态" align="left" prop="workStatus">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div v-if="scope.row.workStatus==0" style="color: green;">{{ workStateList[Number(scope.row.workStatus)] }}</div>
|
<div v-if="scope.row.workStatus==0" style="color: #19BE6B;">{{ workStateList[Number(scope.row.workStatus)] }}</div>
|
||||||
<div v-if="scope.row.workStatus==1" style="color: grey;">{{ workStateList[Number(scope.row.workStatus)] }}</div>
|
<div v-if="scope.row.workStatus==1" style="color: grey;">{{ workStateList[Number(scope.row.workStatus)] }}</div>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="手环编码" align="center" prop="braceletCode">
|
<el-table-column label="手环编码" align="left" prop="braceletCode">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<div>{{ scope.row.braceletCode || '- -'}}</div>
|
<div>{{ scope.row.braceletCode || '- -'}}</div>
|
||||||
|
|
||||||
|
|
@ -384,9 +389,11 @@
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
teamName:'',
|
teamName:'',
|
||||||
teamLeader:'',
|
teamLeader:'',
|
||||||
roleCode: this.$store.getters.roleCode,
|
proName:'',
|
||||||
departId: this.$store.getters.departId,
|
keyWord:'',
|
||||||
teamId: this.$store.getters.teamId,
|
// roleCode: this.$store.getters.roleCode,
|
||||||
|
// departId: this.$store.getters.departId,
|
||||||
|
// teamId: this.$store.getters.teamId,
|
||||||
},
|
},
|
||||||
stateList:['正常','已解散'],
|
stateList:['正常','已解散'],
|
||||||
workStateList:['在施工','未施工'],
|
workStateList:['在施工','未施工'],
|
||||||
|
|
@ -724,4 +731,17 @@
|
||||||
.dialog-header{
|
.dialog-header{
|
||||||
width: 100%;height: 60px;background-color: #F2F2F2;display: flex;align-items: center;justify-content: center;
|
width: 100%;height: 60px;background-color: #F2F2F2;display: flex;align-items: center;justify-content: center;
|
||||||
}
|
}
|
||||||
|
.teamLeaderBox{
|
||||||
|
width: 40px;
|
||||||
|
height: 20px;
|
||||||
|
line-height: 20px;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 10px;
|
||||||
|
background: #E7F4EE;
|
||||||
|
border: 1px solid #19BE6B;
|
||||||
|
border-radius: 20px;
|
||||||
|
margin-left: 5px;
|
||||||
|
color: #19BE6B;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
Loading…
Reference in New Issue