From dc1226c67b9b34b602254ed3ca3de0e5b272cffa Mon Sep 17 00:00:00 2001
From: loulijun2021 <1694218219@qq.com>
Date: 星期四, 22 九月 2022 17:49:06 +0800
Subject: [PATCH] 1.不良明细报表、品质异常排行报表、维修明细报表开发完成
---
src/views/sbgl/djjl.vue | 126 +++++++++++++++++++++++++++++++-----------
1 files changed, 93 insertions(+), 33 deletions(-)
diff --git a/src/views/sbgl/djjl.vue b/src/views/sbgl/djjl.vue
index 9f1d18b..9c0ecfc 100644
--- a/src/views/sbgl/djjl.vue
+++ b/src/views/sbgl/djjl.vue
@@ -38,8 +38,18 @@
<el-form-item label="鐐规浜哄憳" style=" display: flex;">
<el-input v-model="form.checkuser" style="width: 200px" placeholder="璇疯緭鍏�" />
</el-form-item>
- <el-form-item v-show="isExpandForm" label="鐐规鏃堕棿" style=" display: flex;">
- <el-input v-model="form.checkdate" style="width: 200px" placeholder="璇疯緭鍏�" />
+ <el-form-item v-show="isExpandForm" label="鐐规鏃堕棿" style=" display: flex;font-size:14px;align-items: center">
+ <el-date-picker
+ v-model="form.checkdate"
+ type="daterange"
+ :clearable="false"
+ class="timeMini"
+ range-separator="~"
+ start-placeholder="寮�濮嬫棩鏈�"
+ style="width: 200px;display: flex;line-height: 34px ;height: 34px;"
+ end-placeholder="缁撴潫鏃ユ湡"
+ size="mini"
+ />
</el-form-item>
<!-- <el-form-item v-show="isExpandForm" label="鐐规缁撴灉" style=" display: flex;">-->
<!-- <el-select v-model="form.isOK" style="width: 200px" placeholder="璇烽�夋嫨">-->
@@ -85,7 +95,7 @@
label="搴忓彿"
/>
<el-table-column
- prop="org_code"
+ prop="djwo"
label="鐐规鍗曞彿"
sortable="custom"
/>
@@ -95,45 +105,50 @@
sortable="custom"
/>
<el-table-column
- prop="description"
+ prop="eqp_code"
label="璁惧缂栧彿"
sortable="custom"
/>
<el-table-column
- prop="parentorg_name"
+ prop="eqp_name"
label="璁惧鍚嶇О"
sortable="custom"
/>
<el-table-column
- prop="lm_user"
+ prop="stanedcode"
label="鐐规鏍囧噯缂栫爜"
sortable="custom"
/>
<el-table-column
- prop="lm_date"
+ prop="stanedname"
label="鐐规鏍囧噯鍚嶇О"
width="160"
sortable="custom"
/>
<el-table-column
- prop="lm_date"
+ prop="chk_user"
label="鐐规浜哄憳"
width="160"
sortable="custom"
- />
+ >
+ <template slot-scope="{row}">
+ <div v-if="row.chk_user&&row.chk_user!=='null'">{{ row.chk_user }}</div>
+ <div v-else>/</div>
+ </template>
+ </el-table-column>
<el-table-column
- prop="djjg"
+ prop="chk_result"
label="鐐规缁撴灉"
width="160"
sortable="custom"
>
<template slot-scope="{row}">
- <div v-if="row.djjg==='Y'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: #42b983" />姝e父</div>
- <div v-if="row.djjg==='N'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: red" />寮傚父</div>
+ <div v-if="row.chk_result==='OK'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: #42b983" />姝e父</div>
+ <div v-if="row.chk_result==='NG'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: red" />寮傚父</div>
</template>
</el-table-column>
<el-table-column
- prop="lm_date"
+ prop="chk_date"
label="鐐规鏃堕棿"
width="160"
sortable="custom"
@@ -196,30 +211,36 @@
@sort-change="sortChange"
>
<el-table-column
- prop="RowNum"
+ prop="seq"
width="50"
fixed
label="搴忓彿"
/>
<el-table-column
- prop="RowNum"
+ prop="itemcode"
label="閮ㄤ綅缂栫爜"
/>
<el-table-column
- prop="RowNum"
+ prop="itemname"
label="閮ㄤ綅鍚嶇О"
/>
<el-table-column
- prop="RowNum"
+ prop="result"
label="鐐规缁撴灉"
- />
+ >
+ <template slot-scope="{row}">
+ <div v-if="row.result==='OK'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: #42b983" />姝e父</div>
+ <div v-if="row.result==='NG'" style="display: flex;align-items: center"><div style="margin-right: 5px;width:10px;height: 10px;border-radius: 50%;background-color: red" />寮傚父</div>
+ </template>
+ </el-table-column>
<el-table-column
- prop="RowNum"
+ prop="chk_value"
label="鏁板��"
/>
<el-table-column
- prop="bz"
+ prop="remark"
label="澶囨敞"
+ show-tooltip-when-overflow
/>
</el-table>
</div>
@@ -251,7 +272,7 @@
import { AddUpdateOrganization, DeleteOrganization, OrganizationSearch, PrentOrganization } from '@/api/jcsz'
import { getCookie } from '@/utils/auth'
import ImportPicker from '@/components/ImportPicker'
-import { validateCode } from '@/utils/global'
+import { handleDatetime, validateCode } from '@/utils/global'
import { DeviceCheckSubTakeSearch, DeviceCheckTakeOutExcel, DeviceCheckTakeSearch } from '@/api/sbgl'
import { ShopSearch } from '@/api/dzkb'
@@ -272,7 +293,7 @@
stanedname: '', // 鏍囧噯鍚嶇О
checkuser: '', // 鐐规浜哄憳
checkdate: '', // 鐐规鏃堕棿
- prop: 'eqp_code', // 鎺掑簭瀛楁
+ prop: 'chk_date', // 鎺掑簭瀛楁
order: 'desc', // 鎺掑簭瀛楁
page: 1, // 绗嚑椤�
rows: 20 // 姣忛〉澶氬皯鏉�
@@ -321,13 +342,27 @@
})
},
async getDeviceCheckTakeSearch() {
- const res = await DeviceCheckTakeSearch(this.form)
- this.tableData = res.data
- // this.tableData = [
- // { RowNum: 1, djjg: 'N' }
- // ]
- this.total = res.count
+ let tempDate = this.form.checkdate
+ if (tempDate.length > 0) {
+ tempDate = handleDatetime(tempDate[0]) + '~' + handleDatetime(tempDate[1])
+ }
+ const data = {
+ wkshopcode: this.form.wkshopcode,
+ eqpcode: this.form.eqpcode,
+ eqpname: this.form.eqpname,
+ stanedname: this.form.stanedname,
+ checkuser: this.form.checkuser,
+ checkdate: tempDate,
+ prop: this.form.prop, // 鎺掑簭瀛楁
+ order: this.form.order, // 鎺掑簭瀛楁
+ page: this.form.page, // 绗嚑椤�
+ rows: this.form.rows // 姣忛〉澶氬皯鏉�
+ }
+
+ const res = await DeviceCheckTakeSearch(data)
+ this.tableData = res.data
+ this.total = res.count
return { code: res.code }
},
// 鑾峰彇鎵ц杞﹂棿涓嬫媺鏁扮粍
@@ -381,11 +416,9 @@
this.operation = operation
this.dialogVisible = true
- // const res = await DeviceCheckSubTakeSearch({djwo:row.id})
+ const res = await DeviceCheckSubTakeSearch({ djwo: row.djwo })
- this.tableDataDialog = [
- { bz: '1231' }
- ]
+ this.tableDataDialog = res.data
// this.$nextTick(() => {
// this.dialogForm.OrgCode = row.org_code
// this.dialogForm.OrgName = row.org_name
@@ -448,7 +481,19 @@
})
},
async download() {
- const { data: res } = await DeviceCheckTakeOutExcel(this.form)
+ let tempDate = this.form.checkdate
+ if (tempDate.length > 0) {
+ tempDate = handleDatetime(tempDate[0]) + '~' + handleDatetime(tempDate[1])
+ }
+ const data = {
+ wkshopcode: this.form.wkshopcode,
+ eqpcode: this.form.eqpcode,
+ eqpname: this.form.eqpname,
+ stanedname: this.form.stanedname,
+ checkuser: this.form.checkuser,
+ checkdate: tempDate
+ }
+ const { data: res } = await DeviceCheckTakeOutExcel(data)
window.location.href = res
},
// 鑾峰彇椤甸潰楂樺害
@@ -469,6 +514,21 @@
<!--鍏叡椤甸潰鏍峰紡-->
<style lang="scss" scoped>
$main_color: #42b983;
+::v-deep .el-range__icon{
+ line-height: 28px !important;
+}
+::v-deep .el-range-separator{
+ line-height: 28px !important;
+}
+::v-deep .el-range-input{
+ font-size: 14px;
+}
+::v-deep .el-range-separator{
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
::v-deep .el-button--text {
font-size: 14px;
cursor: pointer;
--
Gitblit v1.9.3