实际工时查询
This commit is contained in:
@@ -13,13 +13,13 @@
|
|||||||
placeholder="选择日期"
|
placeholder="选择日期"
|
||||||
@change="pageCurrent=1;total=0;searchTable()"/>
|
@change="pageCurrent=1;total=0;searchTable()"/>
|
||||||
<span>操作者:</span>
|
<span>操作者:</span>
|
||||||
<el-input v-model="workerName" placeholder="操作者" size="small" clearable style="width:200px; margin-top: 10px;margin-bottom: 10px"/>
|
<el-input v-model="workerName" placeholder="操作者" size="small" clearable style="width:100px; margin-top: 10px;margin-bottom: 10px"/>
|
||||||
<el-button :disabled="loading" type="success" class="el-icon-search" size="small" style="margin: 10px 0 0 10px" @click="pageCurrent=1;total=0;searchTable();">查询</el-button>
|
<el-button :disabled="loading" type="success" class="el-icon-search" size="small" style="margin: 10px 0 0 10px" @click="pageCurrent=1;total=0;searchTable();">查询</el-button>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-card>
|
</el-card>
|
||||||
|
|
||||||
<el-card>
|
<el-card>
|
||||||
<el-table v-loading="loading" :data="tableData" stripe height="700" size="mini" style="width: 1050px;" border>
|
<el-table v-loading="loading" :data="tableData" stripe height="700" size="mini" style="width: 1100px;" border>
|
||||||
<el-table-column label="序号" type="index" align="center" width="55"/>
|
<el-table-column label="序号" type="index" align="center" width="55"/>
|
||||||
<el-table-column label="操作者" prop="姓名" align="center" width="80px">
|
<el-table-column label="操作者" prop="姓名" align="center" width="80px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@@ -46,14 +46,14 @@
|
|||||||
{{ scope.row.工艺名称 }}
|
{{ scope.row.工艺名称 }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="实际工时" align="center" width="70px">
|
<el-table-column label="实际工时" align="center" width="100px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.实际加工时间段 || '—' }}
|
{{ scope.row.实际加工时间段 || '—' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="计划工时" prop="理论加工时间段" align="center" width="90px">
|
<el-table-column label="计划工时" prop="理论加工时间段" align="center" width="100px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ isShow ? scope.row.理论加工时间段 : '-' }}
|
{{ scope.row.理论加工时间段 }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="实际开始时间" align="center" width="160px">
|
<el-table-column label="实际开始时间" align="center" width="160px">
|
||||||
@@ -91,7 +91,6 @@ export default {
|
|||||||
name: 'ActualTimeSupplement',
|
name: 'ActualTimeSupplement',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isShow: false,
|
|
||||||
startTime: getNowShotTime(),
|
startTime: getNowShotTime(),
|
||||||
workerName: '',
|
workerName: '',
|
||||||
loading: false,
|
loading: false,
|
||||||
|
|||||||
Reference in New Issue
Block a user