Compare commits
No commits in common. "7e6cfb63457ab29969375fdb92420d6f6193aee6" and "5a00db7dcd3f3f47081b66bf0423196ca021c700" have entirely different histories.
7e6cfb6345
...
5a00db7dcd
@ -1,20 +0,0 @@
|
|||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
tableH: this.tableHeight(260),
|
|
||||||
};
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
|
|
||||||
window.addEventListener('resize', this._setTableHeight);
|
|
||||||
},
|
|
||||||
destroyed() {
|
|
||||||
window.removeEventListener('resize', this._setTableHeight);
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
_setTableHeight() {
|
|
||||||
this.tableH = this?.heightNum ? this.tableHeight(this.heightNum) : this.tableHeight(260);
|
|
||||||
// this.tableH = this.tableHeight(260);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
@ -1,108 +0,0 @@
|
|||||||
<!--
|
|
||||||
* @Author: zhp
|
|
||||||
* @Date: 2023-11-06 15:15:30
|
|
||||||
* @LastEditTime: 2023-11-24 08:42:18
|
|
||||||
* @LastEditors: zhp
|
|
||||||
* @Description:
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<el-form
|
|
||||||
:model="dataForm"
|
|
||||||
:rules="dataRule"
|
|
||||||
ref="dataForm"
|
|
||||||
@keyup.enter.native="dataFormSubmit()">
|
|
||||||
<el-row :gutter="24">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="报废类型编码" prop="code" label-width="120px">
|
|
||||||
<el-input v-model="dataForm.code" placeholder="请输入报废类型编码" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="报废类型" prop="name" label-width="90px">
|
|
||||||
<el-input v-model="dataForm.name" placeholder="请输入报废类型" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="24">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="报废类型描述"
|
|
||||||
prop="description"
|
|
||||||
label-width="120px">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.description"
|
|
||||||
clearable
|
|
||||||
placeholder="报废类型描述" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="备注" prop="remark" label-width="90px">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.remark"
|
|
||||||
clearable
|
|
||||||
placeholder="请输入备注" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import basicAdd from '../../../core/mixins/basic-add';
|
|
||||||
import {
|
|
||||||
createQualityScrapType,
|
|
||||||
updateQualityScrapType,
|
|
||||||
getQualityScrapType,
|
|
||||||
getCode,
|
|
||||||
} from '@/api/base/qualityScrapType';
|
|
||||||
// import { getMaterialList } from "@/api/base/material";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
mixins: [basicAdd],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
urlOptions: {
|
|
||||||
isGetCode: true,
|
|
||||||
codeURL: getCode,
|
|
||||||
createURL: createQualityScrapType,
|
|
||||||
updateURL: updateQualityScrapType,
|
|
||||||
infoURL: getQualityScrapType,
|
|
||||||
},
|
|
||||||
dataForm: {
|
|
||||||
id: undefined,
|
|
||||||
code: undefined,
|
|
||||||
name: undefined,
|
|
||||||
description: undefined,
|
|
||||||
remark: undefined,
|
|
||||||
},
|
|
||||||
// materialList: [],
|
|
||||||
dataRule: {
|
|
||||||
// materialId: [{ required: true, message: "", trigger: "blur" }],
|
|
||||||
code: [
|
|
||||||
{ required: true, message: '报废类型编码不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
name: [
|
|
||||||
{ required: true, message: '报废类型不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
// this.getDict()
|
|
||||||
console.log('我看看', this.dataForm);
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
// async getDict() {
|
|
||||||
// // 物料列表
|
|
||||||
// const res = await getMaterialList();
|
|
||||||
// this.materialList = res.data;
|
|
||||||
// },
|
|
||||||
// setMaterialCode() {
|
|
||||||
// const chooseM = this.materialList.filter(item => {
|
|
||||||
// return item.id === this.dataForm.materialId
|
|
||||||
// })
|
|
||||||
// this.dataForm.materialCode = chooseM[0].code
|
|
||||||
// }
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -1,62 +1,30 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<SearchBar
|
<SearchBar :formConfigs="searchBarFormConfig" ref="search-bar" @headBtnClick="handleSearchBarBtnClick" />
|
||||||
:formConfigs="searchBarFormConfig"
|
|
||||||
ref="search-bar"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<base-table
|
<base-table :table-props="tableProps" :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-data="list"
|
||||||
:table-props="tableProps"
|
|
||||||
:page="queryParams.pageNo"
|
|
||||||
:limit="queryParams.pageSize"
|
|
||||||
:table-data="list"
|
|
||||||
@emitFun="handleEmitFun">
|
@emitFun="handleEmitFun">
|
||||||
<method-btn
|
<method-btn v-if="tableBtn.length" slot="handleBtn" label="操作" :width="120" fixed="right" :method-list="tableBtn"
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
label="操作"
|
|
||||||
:width="120"
|
|
||||||
fixed="right"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
<!-- 分页组件 -->
|
||||||
<pagination
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
v-show="total > 0"
|
|
||||||
:total="total"
|
|
||||||
:page.sync="queryParams.pageNo"
|
|
||||||
:limit.sync="queryParams.pageSize"
|
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
|
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<!-- 对话框(添加 / 修改) -->
|
||||||
<base-dialog
|
<base-dialog :dialogTitle="title" :dialogVisible="open" width="40%" @close="cancel" @cancel="cancel"
|
||||||
:dialogTitle="title"
|
|
||||||
:dialogVisible="open"
|
|
||||||
width="40%"
|
|
||||||
@close="cancel"
|
|
||||||
@cancel="cancel"
|
|
||||||
@confirm="submitForm">
|
@confirm="submitForm">
|
||||||
<DialogForm
|
<DialogForm v-if="open" ref="form" v-model="form" :rows="[
|
||||||
v-if="open"
|
|
||||||
ref="form"
|
|
||||||
v-model="form"
|
|
||||||
:rows="[
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
select: true,
|
select: true,
|
||||||
label: '检测类型',
|
label: '检测类型',
|
||||||
prop: 'typeId',
|
prop: 'typeId',
|
||||||
url: '/base/quality-inspection-type/listAll',
|
url: '/base/quality-inspection-type/listAll',
|
||||||
rules: [
|
rules: [{ required: true, message: '检测类型不能为空', trigger: 'blur' }],
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '检测类型不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
bind: {
|
bind: {
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
@ -65,13 +33,7 @@
|
|||||||
input: true,
|
input: true,
|
||||||
label: '检测内容',
|
label: '检测内容',
|
||||||
prop: 'content',
|
prop: 'content',
|
||||||
rules: [
|
rules: [{ required: true, message: '检测内容不能为空', trigger: 'blur' }],
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '检测内容不能为空',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
@ -82,8 +44,7 @@
|
|||||||
prop: 'code',
|
prop: 'code',
|
||||||
url: '/base/quality-inspection-det/getCode',
|
url: '/base/quality-inspection-det/getCode',
|
||||||
},
|
},
|
||||||
{ input: true, label: '备注', prop: 'remark' },
|
{ input: true, label: '备注', prop: 'remark' }],
|
||||||
],
|
|
||||||
]" />
|
]" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
</div>
|
</div>
|
||||||
@ -184,10 +145,10 @@ export default {
|
|||||||
width: 180,
|
width: 180,
|
||||||
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
},
|
},
|
||||||
{ prop: 'typeName', label: '检测类型' },
|
{ prop: 'typeName', label: '类型名称', },
|
||||||
{ prop: 'content', label: '检测内容' },
|
{ prop: 'content', label: '检测内容', },
|
||||||
{ prop: 'code', label: '检测编码' },
|
{ prop: 'code', label: '检测编码', },
|
||||||
{ prop: 'remark', label: '备注' },
|
{ prop: 'remark', label: '备注', },
|
||||||
],
|
],
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
@ -1,58 +1,32 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<SearchBar
|
<SearchBar :formConfigs="searchBarFormConfig" ref="search-bar" @headBtnClick="handleSearchBarBtnClick" />
|
||||||
:formConfigs="searchBarFormConfig"
|
|
||||||
ref="search-bar"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
<base-table
|
<base-table :table-props="tableProps" :page="queryParams.pageNo" :limit="queryParams.pageSize" :table-data="list"
|
||||||
:table-props="tableProps"
|
@emitFun="handleEmitFun">
|
||||||
:page="queryParams.pageNo"
|
<method-btn v-if="tableBtn.length" slot="handleBtn" label="操作" :width="120" :method-list="tableBtn"
|
||||||
:limit="queryParams.pageSize"
|
|
||||||
:table-data="list"
|
|
||||||
@emitFun="handleEmitFun"
|
|
||||||
:max-height="tableH">
|
|
||||||
<method-btn
|
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
label="操作"
|
|
||||||
:width="120"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
<!-- 分页组件 -->
|
||||||
<pagination
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
v-show="total > 0"
|
|
||||||
:total="total"
|
|
||||||
:page.sync="queryParams.pageNo"
|
|
||||||
:limit.sync="queryParams.pageSize"
|
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
|
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<!-- 对话框(添加 / 修改) -->
|
||||||
<base-dialog
|
<base-dialog :dialogTitle="title" :dialogVisible="open" @close="cancel" width="30%" @cancel="cancel"
|
||||||
:dialogTitle="title"
|
|
||||||
:dialogVisible="open"
|
|
||||||
@close="cancel"
|
|
||||||
width="30%"
|
|
||||||
@cancel="cancel"
|
|
||||||
@confirm="submitForm">
|
@confirm="submitForm">
|
||||||
<DialogForm
|
<DialogForm v-if="open" ref="form" v-model="form" :rows="[
|
||||||
v-if="open"
|
|
||||||
ref="form"
|
|
||||||
v-model="form"
|
|
||||||
:rows="[
|
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
input: true,
|
input: true,
|
||||||
label: '检测类型',
|
label: '检测类型名称',
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
message: '检测类型不能为空',
|
message: '检测类型名称不能为空',
|
||||||
trigger: 'blur',
|
trigger: 'blur',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@ -87,11 +61,10 @@ import {
|
|||||||
exportQualityInspectionTypeExcel,
|
exportQualityInspectionTypeExcel,
|
||||||
} from '@/api/base/qualityInspectionType';
|
} from '@/api/base/qualityInspectionType';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import tableHeightMixin from '@/mixins/tableHeightMixin';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'QualityInspectionType',
|
name: 'QualityInspectionType',
|
||||||
mixins: [basicPageMixin, tableHeightMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
@ -116,9 +89,41 @@ export default {
|
|||||||
width: 180,
|
width: 180,
|
||||||
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
},
|
},
|
||||||
{ prop: 'name', label: '检测类型' },
|
{ prop: 'name', label: '检测类型名称' },
|
||||||
{ prop: 'code', label: '类型编码' },
|
{ prop: 'code', label: '检测类型编码' },
|
||||||
{ prop: 'remark', label: '备注' },
|
{ prop: 'remark', label: '备注' },
|
||||||
|
// {
|
||||||
|
// label: '操作',
|
||||||
|
// alignt: 'center',
|
||||||
|
// subcomponent: {
|
||||||
|
// render: function (h) {
|
||||||
|
// return h('div', null, [
|
||||||
|
// h(
|
||||||
|
// 'el-button',
|
||||||
|
// {
|
||||||
|
// props: {
|
||||||
|
// icon: 'el-icon-edit',
|
||||||
|
// size: 'mini',
|
||||||
|
// type: 'text',
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// ' 修改'
|
||||||
|
// ),
|
||||||
|
// h(
|
||||||
|
// 'el-button',
|
||||||
|
// {
|
||||||
|
// props: {
|
||||||
|
// icon: 'el-icon-edit',
|
||||||
|
// size: 'mini',
|
||||||
|
// type: 'text',
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// ' 修改'
|
||||||
|
// ),
|
||||||
|
// ]);
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// },
|
||||||
],
|
],
|
||||||
//
|
//
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
@ -134,6 +139,11 @@ export default {
|
|||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// type: 'button',
|
||||||
|
// btnName: '重置',
|
||||||
|
// name: 'reset',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
@ -29,7 +29,7 @@
|
|||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
@confirm="handleConfirm"
|
@confirm="handleConfirm"
|
||||||
:before-close="handleCancel"
|
:before-close="handleCancel"
|
||||||
width="40%">
|
width="30%">
|
||||||
<add-or-update
|
<add-or-update
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
@refreshDataList="successSubmit"></add-or-update>
|
||||||
@ -45,28 +45,28 @@ import {
|
|||||||
getQualityScrapDetPage,
|
getQualityScrapDetPage,
|
||||||
deleteQualityScrapDet,
|
deleteQualityScrapDet,
|
||||||
} from '@/api/base/qualityScrapDet';
|
} from '@/api/base/qualityScrapDet';
|
||||||
import { getList } from '@/api/base/qualityScrapType';
|
import { getList, } from "@/api/base/qualityScrapType";
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'content',
|
prop: 'content',
|
||||||
label: '报废原因',
|
label: '报废原因'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '报废原因编码',
|
label: '报废原因编码'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'typeName',
|
prop: 'typeName',
|
||||||
label: '报废类型',
|
label: '报废类型'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注',
|
label: '备注'
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -120,13 +120,11 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:quality-scrap-det:create')
|
type: this.$auth.hasPermi('base:quality-scrap-det:create') ? 'button' : '',
|
||||||
? 'button'
|
|
||||||
: '',
|
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true,
|
plain: true
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -142,7 +140,7 @@ export default {
|
|||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
getDataList() {
|
getDataList() {
|
||||||
this.dataListLoading = true;
|
this.dataListLoading = true;
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then((response) => {
|
this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
this.tableData = response.data.list;
|
this.tableData = response.data.list;
|
||||||
this.listQuery.total = response.data.total;
|
this.listQuery.total = response.data.total;
|
||||||
this.dataListLoading = false;
|
this.dataListLoading = false;
|
209
src/views/quality/base/qualityScrapLog/add-or-updata.vue
Normal file
209
src/views/quality/base/qualityScrapLog/add-or-updata.vue
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2023-11-06 15:15:30
|
||||||
|
* @LastEditTime: 2023-11-21 14:11:18
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" label-width="auto">
|
||||||
|
<el-row :gutter="24">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="工单号" prop="workOrderId">
|
||||||
|
<el-select v-model="dataForm.workOrderId" placeholder="请选择工单号">
|
||||||
|
<el-option v-for="dict in workOrderList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="班组" prop="teamId">
|
||||||
|
<el-select v-model="dataForm.teamId" placeholder="请选择班组">
|
||||||
|
<el-option v-for="dict in teamList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="数量" prop="num">
|
||||||
|
<el-input v-model="dataForm.num" placeholder="请输入数量" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线" prop="lineId">
|
||||||
|
<el-select v-model="dataForm.lineId" placeholder="请选择产线">
|
||||||
|
<el-option v-for="dict in lineList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="报废原因" prop="detId">
|
||||||
|
<el-select v-model="dataForm.detId" placeholder="请选择报废原因">
|
||||||
|
<el-option v-for="dict in detList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="报废时间" prop="logTime">
|
||||||
|
<el-date-picker v-model="dataForm.logTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
placeholder="选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="来源" prop="source">
|
||||||
|
<el-select v-model="dataForm.source" placeholder="请选择来源">
|
||||||
|
<el-option v-for="dict in sourceList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="描述" prop="description">
|
||||||
|
<el-input v-model="dataForm.description" placeholder="请输入描述" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" placeholder="备注" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../core/mixins/basic-add';
|
||||||
|
import {
|
||||||
|
createQualityScrapLog, updateQualityScrapLog, getQualityScrapLog, getWorkOrderList,
|
||||||
|
getTeamList, getDetList,getLineList } from "@/api/base/qualityScrapLog";
|
||||||
|
import { getList,} from "@/api/base/qualityScrapType";
|
||||||
|
// import { getMaterialList } from "@/api/base/material";
|
||||||
|
import moment from 'moment';
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: false,
|
||||||
|
// codeURL: getCode,
|
||||||
|
createURL: createQualityScrapLog,
|
||||||
|
updateURL: updateQualityScrapLog,
|
||||||
|
infoURL: getQualityScrapLog,
|
||||||
|
},
|
||||||
|
lineList:[],
|
||||||
|
typeList: [],
|
||||||
|
workOrderList: [],
|
||||||
|
detList:[],
|
||||||
|
teamList: [],
|
||||||
|
sourceList: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: '手动',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: '自动',
|
||||||
|
}
|
||||||
|
],
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
logTime: undefined,
|
||||||
|
source:1,
|
||||||
|
detId: undefined,
|
||||||
|
workOrderId: null,
|
||||||
|
teamId: undefined,
|
||||||
|
num: undefined,
|
||||||
|
lineId:undefined,
|
||||||
|
description:undefined,
|
||||||
|
// description: undefined,
|
||||||
|
remark: undefined,
|
||||||
|
},
|
||||||
|
// materialList: [],
|
||||||
|
dataRule: {
|
||||||
|
// materialId: [{ required: true, message: "", trigger: "blur" }],
|
||||||
|
workOrderId: [{ required: true, message: "工单号不能为空", trigger: "change" }],
|
||||||
|
num: [{ required: true, message: "数量不能为空", trigger: "blur" }],
|
||||||
|
detId: [{ required: true, message: "报废原因不能为空", trigger: "change" }],
|
||||||
|
|
||||||
|
logTime: [{ required: true, message: "报废时间不能为空", trigger: "change" }],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getDict()
|
||||||
|
console.log('我看看', this.dataForm)
|
||||||
|
this.getCurrentTime()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getCurrentTime() {
|
||||||
|
// new Date().Format("yyyy-MM-dd HH:mm:ss")
|
||||||
|
this.dataForm.logTime = new Date()
|
||||||
|
// this.dataForm.logTime = year + "-" + month + "-" + day;
|
||||||
|
console.log(this.dataForm.logTime);
|
||||||
|
},
|
||||||
|
async getDict() {
|
||||||
|
// 物料列表
|
||||||
|
const res = await getList()
|
||||||
|
this.typeList = res.data
|
||||||
|
getWorkOrderList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.workOrderList = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.name,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
getLineList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.lineList = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.name,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
getDetList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.detList = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.content,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
getTeamList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.teamList = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.name,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// setMaterialCode() {
|
||||||
|
// const chooseM = this.materialList.filter(item => {
|
||||||
|
// return item.id === this.dataForm.materialId
|
||||||
|
// })
|
||||||
|
// this.dataForm.materialCode = chooseM[0].code
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
222
src/views/quality/base/qualityScrapLog/detail-or-updata.vue
Normal file
222
src/views/quality/base/qualityScrapLog/detail-or-updata.vue
Normal file
@ -0,0 +1,222 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2023-11-06 15:15:30
|
||||||
|
* @LastEditTime: 2023-11-07 19:38:13
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-dialog :visible.sync="dialogVisible" width="50%" :before-close="handleClose">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ '详情' }}
|
||||||
|
</small-title>
|
||||||
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()"
|
||||||
|
label-width="auto">
|
||||||
|
<el-row :gutter="24">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="工单号" prop="workOrderId">
|
||||||
|
<el-select v-model="dataForm.workOrderId" placeholder="请选择工单号" disabled>
|
||||||
|
<el-option v-for="dict in workOrderList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="班组" prop="teamId">
|
||||||
|
<el-select v-model="dataForm.teamId" placeholder="请选择班组" disabled>
|
||||||
|
<el-option v-for="dict in teamList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="数量" prop="sum">
|
||||||
|
<el-input v-model="dataForm.sum" placeholder="请输入数量" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线" prop="lineId">
|
||||||
|
<el-select v-model="dataForm.lineId" placeholder="请选择产线" disabled>
|
||||||
|
<el-option v-for="dict in lineList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="报废原因" prop="detId">
|
||||||
|
<el-select v-model="dataForm.detId" placeholder="请选择报废原因" disabled>
|
||||||
|
<el-option v-for="dict in detList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="报废时间" prop="logTime">
|
||||||
|
<el-date-picker v-model="dataForm.logTime" type="datetime" value-format="yyyy-MM-dd HH:mm:ss" disabled
|
||||||
|
placeholder="选择日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="来源" prop="source">
|
||||||
|
<el-select v-model="dataForm.source" placeholder="请选择来源" disabled>
|
||||||
|
<el-option v-for="dict in sourceList" :key="dict.id" :label="dict.name" :value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="描述" prop="description">
|
||||||
|
<el-input v-model="dataForm.description" placeholder="请输入描述" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" placeholder="备注" disabled />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../core/mixins/basic-add';
|
||||||
|
import {
|
||||||
|
createQualityScrapLog, updateQualityScrapLog, getQualityScrapLog, getWorkOrderList,
|
||||||
|
getTeamList, getDetList,getLineList } from "@/api/base/qualityScrapLog";
|
||||||
|
import { getList,} from "@/api/base/qualityScrapType";
|
||||||
|
import SmallTitle from './SmallTitle';
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
SmallTitle,
|
||||||
|
},
|
||||||
|
mixins: [basicAdd],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: false,
|
||||||
|
// codeURL: getCode,
|
||||||
|
createURL: createQualityScrapLog,
|
||||||
|
updateURL: updateQualityScrapLog,
|
||||||
|
infoURL: getQualityScrapLog,
|
||||||
|
},
|
||||||
|
lineList:[],
|
||||||
|
typeList: [],
|
||||||
|
workOrderList: [],
|
||||||
|
detList:[],
|
||||||
|
teamList: [],
|
||||||
|
sourceList: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: '手动',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: '自动',
|
||||||
|
}
|
||||||
|
],
|
||||||
|
dialogVisible:false,
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
logTime: undefined,
|
||||||
|
source:1,
|
||||||
|
detId: undefined,
|
||||||
|
workOrderId: null,
|
||||||
|
teamId: undefined,
|
||||||
|
num: undefined,
|
||||||
|
lineId:undefined,
|
||||||
|
description:undefined,
|
||||||
|
// description: undefined,
|
||||||
|
remark: undefined,
|
||||||
|
},
|
||||||
|
// materialList: [],
|
||||||
|
dataRule: {
|
||||||
|
// materialId: [{ required: true, message: "", trigger: "blur" }],
|
||||||
|
workOrderId: [{ required: true, message: "工单号不能为空", trigger: "change" }],
|
||||||
|
num: [{ required: true, message: "数量不能为空", trigger: "blur" }],
|
||||||
|
detId: [{ required: true, message: "报废原因不能为空", trigger: "change" }],
|
||||||
|
|
||||||
|
logTime: [{ required: true, message: "报废时间不能为空", trigger: "change" }],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// this.getDict()
|
||||||
|
console.log('我看看', this.dataForm)
|
||||||
|
this.getCurrentTime()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init() {
|
||||||
|
this.dialogVisible = true
|
||||||
|
},
|
||||||
|
getCurrentTime() {
|
||||||
|
// new Date().Format("yyyy-MM-dd HH:mm:ss")
|
||||||
|
this.dataForm.logTime = new Date()
|
||||||
|
// this.dataForm.logTime = year + "-" + month + "-" + day;
|
||||||
|
console.log(this.dataForm.logTime);
|
||||||
|
},
|
||||||
|
// async getDict() {
|
||||||
|
// // 物料列表
|
||||||
|
// const res = await getList()
|
||||||
|
// this.typeList = res.data
|
||||||
|
// getWorkOrderList().then((res) => {
|
||||||
|
// console.log(res);
|
||||||
|
// // console.log(response);
|
||||||
|
// this.workOrderList = res.data.map((item) => {
|
||||||
|
// return {
|
||||||
|
// name: item.name,
|
||||||
|
// id: item.id
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// // console.log(this.formConfig[0].selectOptions);
|
||||||
|
// // this.listQuery.total = response.data.total;
|
||||||
|
// })
|
||||||
|
// getLineList().then((res) => {
|
||||||
|
// console.log(res);
|
||||||
|
// // console.log(response);
|
||||||
|
// this.lineList = res.data.map((item) => {
|
||||||
|
// return {
|
||||||
|
// name: item.name,
|
||||||
|
// id: item.id
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// // console.log(this.formConfig[0].selectOptions);
|
||||||
|
// // this.listQuery.total = response.data.total;
|
||||||
|
// })
|
||||||
|
// getDetList().then((res) => {
|
||||||
|
// console.log(res);
|
||||||
|
// // console.log(response);
|
||||||
|
// this.workOrderList = res.data.map((item) => {
|
||||||
|
// return {
|
||||||
|
// name: item.name,
|
||||||
|
// id: item.id
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// // console.log(this.formConfig[0].selectOptions);
|
||||||
|
// // this.listQuery.total = response.data.total;
|
||||||
|
// })
|
||||||
|
// getTeamList().then((res) => {
|
||||||
|
// console.log(res);
|
||||||
|
// // console.log(response);
|
||||||
|
// this.teamList = res.data.map((item) => {
|
||||||
|
// return {
|
||||||
|
// name: item.name,
|
||||||
|
// id: item.id
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// // console.log(this.formConfig[0].selectOptions);
|
||||||
|
// // this.listQuery.total = response.data.total;
|
||||||
|
// })
|
||||||
|
// },
|
||||||
|
// setMaterialCode() {
|
||||||
|
// const chooseM = this.materialList.filter(item => {
|
||||||
|
// return item.id === this.dataForm.materialId
|
||||||
|
// })
|
||||||
|
// this.dataForm.materialCode = chooseM[0].code
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
213
src/views/quality/base/qualityScrapLog/index.vue
Normal file
213
src/views/quality/base/qualityScrapLog/index.vue
Normal file
@ -0,0 +1,213 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
|
<base-table v-loading="dataListLoading" :table-props="tableProps" :page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize" :table-data="tableData">
|
||||||
|
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick" />
|
||||||
|
</base-table>
|
||||||
|
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
|
||||||
|
@pagination="getDataList" />
|
||||||
|
<base-dialog :dialogTitle="addOrEditTitle" :dialogVisible="addOrUpdateVisible" @cancel="handleCancel"
|
||||||
|
@confirm="handleConfirm" :before-close="handleCancel" width="50%">
|
||||||
|
<add-or-update ref="addOrUpdate" @refreshDataList="successSubmit"></add-or-update>
|
||||||
|
</base-dialog>
|
||||||
|
<detail-or-update v-if="detailOrUpdateVisible" ref="detailOrUpdate" @refreshDataList="successSubmit" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AddOrUpdate from './add-or-updata';
|
||||||
|
import DetailOrUpdate from './detail-or-updata';
|
||||||
|
|
||||||
|
import basicPage from '../../../core/mixins/basic-page';
|
||||||
|
import { parseTime } from '../../../core/mixins/code-filter';
|
||||||
|
import {
|
||||||
|
getQualityScrapLogPage,
|
||||||
|
deleteQualityScrapLog,
|
||||||
|
getWorkOrderList,
|
||||||
|
getTeamList
|
||||||
|
} from '@/api/base/qualityScrapLog';
|
||||||
|
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'createTime',
|
||||||
|
label: '添加时间',
|
||||||
|
filter: parseTime
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'workOrderName',
|
||||||
|
label: '工单'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'teamId',
|
||||||
|
label: '班组'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'detContent',
|
||||||
|
label: '报废原因'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'logTime',
|
||||||
|
label: '报废时间',
|
||||||
|
filter: parseTime
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'num',
|
||||||
|
label: '数量'
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicPage],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
getDataListURL: getQualityScrapLogPage,
|
||||||
|
deleteURL: deleteQualityScrapLog,
|
||||||
|
// exportURL: exportFactoryExcel,
|
||||||
|
},
|
||||||
|
tableProps,
|
||||||
|
tableBtn: [
|
||||||
|
this.$auth.hasPermi(`base:quality-scrap-log:update`)
|
||||||
|
? {
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi(`base:quality-scrap-log:detail`)
|
||||||
|
? {
|
||||||
|
type: 'detail',
|
||||||
|
btnName: '详情',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi(`base:quality-scrap-log:delete`)
|
||||||
|
? {
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
].filter((v)=>v),
|
||||||
|
tableData: [],
|
||||||
|
detailOrUpdateVisible:false,
|
||||||
|
formConfig: [
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
label: '工单',
|
||||||
|
selectOptions: [],
|
||||||
|
labelField: 'name',
|
||||||
|
valueField: 'id',
|
||||||
|
param: 'workOrderId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'select',
|
||||||
|
label: '班组',
|
||||||
|
selectOptions: [],
|
||||||
|
labelField: 'name',
|
||||||
|
valueField: 'id',
|
||||||
|
param: 'teamId',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'separate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: this.$auth.hasPermi('base:quality-scrap-det:create') ? 'button' : '',
|
||||||
|
btnName: '新增',
|
||||||
|
name: 'add',
|
||||||
|
color: 'success',
|
||||||
|
plain: true
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
components: {
|
||||||
|
AddOrUpdate,
|
||||||
|
DetailOrUpdate
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getDict()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
otherMethods(val) {
|
||||||
|
if (val.type === 'detail') {
|
||||||
|
this.detailOrUpdateVisible = true;
|
||||||
|
// this.addOrEditTitle = "详情";
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.detailOrUpdate.init(val.data.id, true);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// 获取数据列表
|
||||||
|
getDict() {
|
||||||
|
getWorkOrderList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.formConfig[0].selectOptions = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.name,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
getTeamList().then((res) => {
|
||||||
|
console.log(res);
|
||||||
|
// console.log(response);
|
||||||
|
this.formConfig[1].selectOptions = res.data.map((item) => {
|
||||||
|
return {
|
||||||
|
name: item.name,
|
||||||
|
id: item.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getDataList() {
|
||||||
|
this.dataListLoading = true;
|
||||||
|
this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
|
this.tableData = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
this.dataListLoading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
buttonClick(val) {
|
||||||
|
switch (val.btnName) {
|
||||||
|
case 'search':
|
||||||
|
this.listQuery.pageNo = 1;
|
||||||
|
this.listQuery.pageSize = 10;
|
||||||
|
this.listQuery.workOrderId = val.workOrderId ? val.workOrderId : undefined;
|
||||||
|
this.listQuery.teamId = val.teamId ? val.teamId : undefined;
|
||||||
|
this.getDataList();
|
||||||
|
break;
|
||||||
|
case 'reset':
|
||||||
|
this.$refs.searchBarForm.resetForm();
|
||||||
|
this.listQuery = {
|
||||||
|
pageSize: 10,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 1,
|
||||||
|
};
|
||||||
|
this.getDataList();
|
||||||
|
break;
|
||||||
|
case 'add':
|
||||||
|
this.addOrEditTitle = '新增';
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrUpdateHandle();
|
||||||
|
break;
|
||||||
|
case 'export':
|
||||||
|
this.handleExport();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
86
src/views/quality/base/qualityScrapType/add-or-updata.vue
Normal file
86
src/views/quality/base/qualityScrapType/add-or-updata.vue
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zhp
|
||||||
|
* @Date: 2023-11-06 15:15:30
|
||||||
|
* @LastEditTime: 2023-11-24 08:42:18
|
||||||
|
* @LastEditors: zhp
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()">
|
||||||
|
<el-row :gutter="24">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="报废类型编码" prop="code">
|
||||||
|
<el-input v-model="dataForm.code" placeholder="请输入报废类型编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="报废类型" prop="name">
|
||||||
|
<el-input v-model="dataForm.name" placeholder="请输入报废类型" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="24">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="描述类型" prop="description">
|
||||||
|
<el-input v-model="dataForm.description" clearable placeholder="描述类型" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" clearable placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../core/mixins/basic-add';
|
||||||
|
import { createQualityScrapType, updateQualityScrapType, getQualityScrapType, getCode } from "@/api/base/qualityScrapType";
|
||||||
|
// import { getMaterialList } from "@/api/base/material";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: true,
|
||||||
|
codeURL: getCode,
|
||||||
|
createURL: createQualityScrapType,
|
||||||
|
updateURL: updateQualityScrapType,
|
||||||
|
infoURL: getQualityScrapType,
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
code: undefined,
|
||||||
|
name: undefined,
|
||||||
|
description: undefined,
|
||||||
|
remark: undefined,
|
||||||
|
},
|
||||||
|
// materialList: [],
|
||||||
|
dataRule: {
|
||||||
|
// materialId: [{ required: true, message: "", trigger: "blur" }],
|
||||||
|
code: [{ required: true, message: "报废类型编码不能为空", trigger: "blur" }],
|
||||||
|
name: [{ required: true, message: "报废类型不能为空", trigger: "blur" }],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
// this.getDict()
|
||||||
|
console.log('我看看', this.dataForm)
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// async getDict() {
|
||||||
|
// // 物料列表
|
||||||
|
// const res = await getMaterialList();
|
||||||
|
// this.materialList = res.data;
|
||||||
|
// },
|
||||||
|
// setMaterialCode() {
|
||||||
|
// const chooseM = this.materialList.filter(item => {
|
||||||
|
// return item.id === this.dataForm.materialId
|
||||||
|
// })
|
||||||
|
// this.dataForm.materialCode = chooseM[0].code
|
||||||
|
// }
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
@ -29,7 +29,7 @@
|
|||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
@confirm="handleConfirm"
|
@confirm="handleConfirm"
|
||||||
:before-close="handleCancel"
|
:before-close="handleCancel"
|
||||||
width="40%">
|
width="30%">
|
||||||
<add-or-update
|
<add-or-update
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
@refreshDataList="successSubmit"></add-or-update>
|
||||||
@ -43,30 +43,30 @@ import basicPage from '../../../core/mixins/basic-page';
|
|||||||
import { parseTime } from '../../../core/mixins/code-filter';
|
import { parseTime } from '../../../core/mixins/code-filter';
|
||||||
import {
|
import {
|
||||||
getQualityScrapTypePage,
|
getQualityScrapTypePage,
|
||||||
deleteQualityScrapType,
|
deleteQualityScrapType
|
||||||
} from '@/api/base/qualityScrapType';
|
} from '@/api/base/qualityScrapType';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '报废类型',
|
label: '报废类型'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '报废类型编码',
|
label: '报废类型编码'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'description',
|
prop: 'description',
|
||||||
label: '描述信息',
|
label: '描述信息'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注',
|
label: '备注'
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -112,13 +112,11 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:quality-scrap-type:create')
|
type: this.$auth.hasPermi('base:quality-scrap-type:create') ? 'button' : '',
|
||||||
? 'button'
|
|
||||||
: '',
|
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
color: 'success',
|
color: 'success',
|
||||||
plain: true,
|
plain: true
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -131,7 +129,7 @@ export default {
|
|||||||
// 获取数据列表
|
// 获取数据列表
|
||||||
getDataList() {
|
getDataList() {
|
||||||
this.dataListLoading = true;
|
this.dataListLoading = true;
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then((response) => {
|
this.urlOptions.getDataListURL(this.listQuery).then(response => {
|
||||||
this.tableData = response.data.list;
|
this.tableData = response.data.list;
|
||||||
this.listQuery.total = response.data.total;
|
this.listQuery.total = response.data.total;
|
||||||
this.dataListLoading = false;
|
this.dataListLoading = false;
|
@ -7,39 +7,23 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div style="flex: 1; display: flex; background: #f2f4f9">
|
<div style="flex: 1; display: flex; background: #f2f4f9">
|
||||||
<div
|
<div class="app-container" style="
|
||||||
class="app-container"
|
|
||||||
style="
|
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
">
|
">
|
||||||
<div
|
<div class="factory-list__selector" style="margin: 12px" title="点击切换工厂" @mouseenter="factoryListOpen = true"
|
||||||
class="factory-list__selector"
|
|
||||||
style="margin: 12px"
|
|
||||||
title="点击切换工厂"
|
|
||||||
@mouseenter="factoryListOpen = true"
|
|
||||||
@mouseleave="factoryListOpen = false">
|
@mouseleave="factoryListOpen = false">
|
||||||
{{ currentFactory?.label || '点我选择设备' }}
|
{{ currentFactory?.label || '点我选择设备' }}
|
||||||
<div class="factory-list__wrapper" :class="{ open: factoryListOpen }">
|
<div class="factory-list__wrapper" :class="{ open: factoryListOpen }">
|
||||||
<ul
|
<ul class="factory-list" v-if="sidebarContent.length" @click.prevent="factoryChangeHandler">
|
||||||
class="factory-list"
|
<li v-for="fc in sidebarContent" :key="fc.id" :data-value="fc.id" class="factory-list__item"
|
||||||
v-if="sidebarContent.length"
|
|
||||||
@click.prevent="factoryChangeHandler">
|
|
||||||
<li
|
|
||||||
v-for="fc in sidebarContent"
|
|
||||||
:key="fc.id"
|
|
||||||
:data-value="fc.id"
|
|
||||||
class="factory-list__item"
|
|
||||||
:class="{ 'is-current': fc.id == currentFactory?.id }">
|
:class="{ 'is-current': fc.id == currentFactory?.id }">
|
||||||
<span>
|
<span>
|
||||||
{{ fc.label }}
|
{{ fc.label }}
|
||||||
</span>
|
</span>
|
||||||
<svg-icon
|
<svg-icon v-if="fc.id == currentFactory?.id" icon-class="Confirm" style="height: 14px; width: 14px" />
|
||||||
v-if="fc.id == currentFactory?.id"
|
|
||||||
icon-class="Confirm"
|
|
||||||
style="height: 14px; width: 14px" />
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div v-else style="color: #0008; width: 128px; text-align: center">
|
<div v-else style="color: #0008; width: 128px; text-align: center">
|
||||||
@ -49,13 +33,8 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- side bar -->
|
<!-- side bar -->
|
||||||
<div class="side-bar__left" style="width: 240px; height: 100%">
|
<div class="side-bar__left" style="width: 240px; height: 100%">
|
||||||
<el-tree
|
<el-tree class="custom-tree-class" :data="currentFactory?.children" :props="treeProps" :empty-text="''"
|
||||||
class="custom-tree-class"
|
icon-class="custom-icon-class" @node-click="handleSidebarItemClick">
|
||||||
:data="currentFactory?.children"
|
|
||||||
:props="treeProps"
|
|
||||||
:empty-text="''"
|
|
||||||
icon-class="custom-icon-class"
|
|
||||||
@node-click="handleSidebarItemClick">
|
|
||||||
<!-- <div class="custom-tree-node" slot-scope="{ node, data }">
|
<!-- <div class="custom-tree-node" slot-scope="{ node, data }">
|
||||||
<span class="icon"></span>
|
<span class="icon"></span>
|
||||||
<span>{{ node.label }}</span>
|
<span>{{ node.label }}</span>
|
||||||
@ -63,46 +42,30 @@
|
|||||||
</el-tree>
|
</el-tree>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div class="app-container equipment-process-amount" style="flex: 1; border-radius: 8px; background: #fff">
|
||||||
class="app-container equipment-process-amount"
|
|
||||||
style="flex: 1; border-radius: 8px; background: #fff">
|
|
||||||
<!-- main area -->
|
<!-- main area -->
|
||||||
<div class="main-content" style="display: flex; flex-direction: column">
|
<div class="main-content" style="display: flex; flex-direction: column">
|
||||||
<SearchBar
|
<SearchBar :formConfigs="searchBarFormConfig" ref="search-bar" @headBtnClick="handleSearchBarBtnClick"
|
||||||
:formConfigs="searchBarFormConfig"
|
|
||||||
ref="search-bar"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick"
|
|
||||||
@select-changed="handleSearchBarChanged" />
|
@select-changed="handleSearchBarChanged" />
|
||||||
|
|
||||||
<el-row>
|
<el-row>
|
||||||
<el-col class="custom-tabs">
|
<el-col class="custom-tabs">
|
||||||
<div v-if="tableList.length" class="tables">
|
<div v-if="tableList.length" class="tables">
|
||||||
<div
|
<div class="custom-table" v-for="table in tableList" :key="table.key">
|
||||||
class="custom-table"
|
|
||||||
v-for="table in tableList"
|
|
||||||
:key="table.key">
|
|
||||||
<!-- {{ JSON.stringify(spanMethod) }} -->
|
<!-- {{ JSON.stringify(spanMethod) }} -->
|
||||||
<base-table
|
<base-table :key="table.key + '__basetable'" :table-props="table.tableProps"
|
||||||
:key="table.key + '__basetable'"
|
:table-data="table.dataManager?.dataList ?? []" :span-method="spanMethod"
|
||||||
:table-props="table.tableProps"
|
|
||||||
:table-data="table.dataManager?.dataList ?? []"
|
|
||||||
:span-method="spanMethod"
|
|
||||||
@emitFun="(val) => handleEmitFun(table, val)"></base-table>
|
@emitFun="(val) => handleEmitFun(table, val)"></base-table>
|
||||||
<pagination
|
<pagination :key="table.key + '__pagination'" v-show="table.total > 0" :total="table.total"
|
||||||
:key="table.key + '__pagination'"
|
:page.sync="table.pageNo" :limit.sync="table.pageSize" :page-size="table.pageSize"
|
||||||
v-show="table.total > 0"
|
:page-sizes="[1, 3, 5, 10, 20]" @pagination="
|
||||||
:total="table.total"
|
|
||||||
:page.sync="table.pageNo"
|
|
||||||
:limit.sync="table.pageSize"
|
|
||||||
:page-size="table.pageSize"
|
|
||||||
:page-sizes="[1, 3, 5, 10, 20]"
|
|
||||||
@pagination="
|
|
||||||
({ page, limit, current }) =>
|
({ page, limit, current }) =>
|
||||||
getListFor(table, { page, limit, current })
|
getListFor(table, { page, limit, current })
|
||||||
" />
|
" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else class="no-data-bg"></div>
|
<div v-else class="no-data-bg">
|
||||||
|
</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
@ -114,7 +77,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import Graph from './graph.vue';
|
// import Graph from './graph.vue';
|
||||||
import { getWorkOrderList, getTreeData } from '@/api/quality/deviceParameters';
|
import {
|
||||||
|
getWorkOrderList,
|
||||||
|
getTreeData
|
||||||
|
} from '@/api/quality/deviceParameters';
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentProcessAmount',
|
name: 'EquipmentProcessAmount',
|
||||||
// components: { Graph },
|
// components: { Graph },
|
||||||
@ -237,7 +203,6 @@ export default {
|
|||||||
valueField: 'id',
|
valueField: 'id',
|
||||||
param: 'workOrderId',
|
param: 'workOrderId',
|
||||||
onchange: true,
|
onchange: true,
|
||||||
filterable: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
@ -258,9 +223,9 @@ export default {
|
|||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'separate',
|
// type: 'separate',
|
||||||
},
|
// },
|
||||||
// {
|
// {
|
||||||
// type: 'button',
|
// type: 'button',
|
||||||
// btnName: '表格',
|
// btnName: '表格',
|
||||||
@ -275,15 +240,12 @@ export default {
|
|||||||
// plain: true,
|
// plain: true,
|
||||||
// color: 'warning',
|
// color: 'warning',
|
||||||
// },
|
// },
|
||||||
{
|
// {
|
||||||
type: this.$auth.hasPermi('base:equipment-group:export')
|
// type: this.$auth.hasPermi('base:equipment-group:export') ? 'button' : '',
|
||||||
? 'button'
|
// btnName: '导出',
|
||||||
: '',
|
// name: 'export',
|
||||||
btnName: '导出',
|
// color: 'warning',
|
||||||
name: 'export',
|
// },
|
||||||
plain: true,
|
|
||||||
color: 'success',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'lineName', label: '产线' },
|
{ prop: 'lineName', label: '产线' },
|
||||||
@ -324,7 +286,7 @@ export default {
|
|||||||
// },
|
// },
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getDict();
|
this.getDict()
|
||||||
// if (this.id) this.$set(this.queryParams, 'id', this.id);
|
// if (this.id) this.$set(this.queryParams, 'id', this.id);
|
||||||
// if (this.code)
|
// if (this.code)
|
||||||
// this.$set(this.searchBarFormConfig[0], 'defaultSelect', this.code);
|
// this.$set(this.searchBarFormConfig[0], 'defaultSelect', this.code);
|
||||||
@ -341,7 +303,7 @@ export default {
|
|||||||
}
|
}
|
||||||
switch (param) {
|
switch (param) {
|
||||||
case 'workOrderId':
|
case 'workOrderId':
|
||||||
this.getTree(value);
|
this.getTree(value)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -363,12 +325,12 @@ export default {
|
|||||||
this.searchBarFormConfig[0].selectOptions = res.data.map((item) => {
|
this.searchBarFormConfig[0].selectOptions = res.data.map((item) => {
|
||||||
return {
|
return {
|
||||||
name: item.name,
|
name: item.name,
|
||||||
id: item.id,
|
id: item.id
|
||||||
};
|
}
|
||||||
});
|
})
|
||||||
// console.log(this.formConfig[0].selectOptions);
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
buildProps(table) {
|
buildProps(table) {
|
||||||
console.log('building props', table);
|
console.log('building props', table);
|
||||||
@ -403,8 +365,7 @@ export default {
|
|||||||
prop: item.name,
|
prop: item.name,
|
||||||
width: 128,
|
width: 128,
|
||||||
});
|
});
|
||||||
firstLineData[item.name] = `${item.minValue ?? ''}-${
|
firstLineData[item.name] = `${item.minValue ?? ''}-${item.maxValue ?? ''
|
||||||
item.maxValue ?? ''
|
|
||||||
}${item.defaultValue != null ? '/' + item.defaultValue : ''}`;
|
}${item.defaultValue != null ? '/' + item.defaultValue : ''}`;
|
||||||
});
|
});
|
||||||
return { props, firstLineData };
|
return { props, firstLineData };
|
||||||
@ -532,9 +493,10 @@ export default {
|
|||||||
console.log('tree', this.sidebarContent);
|
console.log('tree', this.sidebarContent);
|
||||||
// console.log(this.formConfig[0].selectOptions);
|
// console.log(this.formConfig[0].selectOptions);
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
});
|
})
|
||||||
// const { data } = await this.$axios('/base/core-factory/getTreeByWorkOrder');
|
// const { data } = await this.$axios('/base/core-factory/getTreeByWorkOrder');
|
||||||
// console.log(data)
|
// console.log(data)
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
handleTabClick(tab, event) {
|
handleTabClick(tab, event) {
|
||||||
@ -549,7 +511,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
handleSidebarItemClick({ label, id, type }) {
|
handleSidebarItemClick({ label, id, type }) {
|
||||||
this.equipmentId = id;
|
this.equipmentId = id
|
||||||
console.log('label clicked!', label, id, type);
|
console.log('label clicked!', label, id, type);
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case '设备':
|
case '设备':
|
||||||
@ -725,10 +687,7 @@ li {
|
|||||||
padding: 8px 18px !important;
|
padding: 8px 18px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-tree-class
|
.custom-tree-class>>>.el-tree-node__children .el-tree-node__children .el-tree-node__content {
|
||||||
>>> .el-tree-node__children
|
|
||||||
.el-tree-node__children
|
|
||||||
.el-tree-node__content {
|
|
||||||
padding: 8px 24px !important;
|
padding: 8px 24px !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -738,8 +697,7 @@ li {
|
|||||||
margin-right: 8px;
|
margin-right: 8px;
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
background: url('../../../../assets/images/Qian.png') center center / contain
|
background: url('../../../../assets/images/Qian.png') center center / contain no-repeat;
|
||||||
no-repeat;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.custom-icon-class.el-tree-node__expand-icon.expanded {
|
.custom-icon-class.el-tree-node__expand-icon.expanded {
|
||||||
@ -747,8 +705,7 @@ li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-tree-node__children .custom-icon-class {
|
.el-tree-node__children .custom-icon-class {
|
||||||
background: url('../../../../assets/images/tree-icon-2.png') 100% / contain
|
background: url('../../../../assets/images/tree-icon-2.png') 100% / contain no-repeat;
|
||||||
no-repeat;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-tree-node__children .el-tree-node__children .custom-icon-class {
|
.el-tree-node__children .el-tree-node__children .custom-icon-class {
|
||||||
|
@ -186,16 +186,16 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// prop: 'oee',
|
prop: 'oee',
|
||||||
// label: 'OEE',
|
label: 'OEE',
|
||||||
// filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
||||||
// },
|
},
|
||||||
// {
|
{
|
||||||
// prop: 'teep',
|
prop: 'teep',
|
||||||
// label: 'TEEP',
|
label: 'TEEP',
|
||||||
// filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
filter: (val) => (val != null ? +val.toFixed(3) : '-'),
|
||||||
// },
|
},
|
||||||
// {
|
// {
|
||||||
// _action: 'view-trend',
|
// _action: 'view-trend',
|
||||||
// label: '趋势',
|
// label: '趋势',
|
||||||
@ -232,7 +232,6 @@ export default {
|
|||||||
placeholder: '请选择工单',
|
placeholder: '请选择工单',
|
||||||
param: 'workOrderId',
|
param: 'workOrderId',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
filterable: true,
|
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// type: 'select',
|
// type: 'select',
|
||||||
@ -257,7 +256,7 @@ export default {
|
|||||||
// parent: 'dateFilterType',
|
// parent: 'dateFilterType',
|
||||||
// 时间段选择
|
// 时间段选择
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间段',
|
// label: '时间段',
|
||||||
dateType: 'daterange',
|
dateType: 'daterange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
@ -286,16 +285,16 @@ export default {
|
|||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'separate',
|
// type: 'separate',
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
type: 'button',
|
// type: 'button',
|
||||||
btnName: '导出',
|
// btnName: '设备可视化',
|
||||||
name: 'export',
|
// name: 'visualization',
|
||||||
plain: true,
|
// plain: true,
|
||||||
color: 'success',
|
// color: 'success',
|
||||||
},
|
// },
|
||||||
// {
|
// {
|
||||||
// type: 'button',
|
// type: 'button',
|
||||||
// btnName: 'OEE',
|
// btnName: 'OEE',
|
||||||
@ -325,7 +324,7 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getWorkOrder();
|
this.getWorkOrder()
|
||||||
// this.getLine();
|
// this.getLine();
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
|
@ -7,22 +7,12 @@
|
|||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<search-bar
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
:formConfigs="formConfig"
|
<base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :table-data="list">
|
||||||
ref="searchBarForm"
|
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
<base-table
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="list">
|
|
||||||
<!-- <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
<!-- <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
||||||
@clickBtn="handleClick" /> -->
|
@clickBtn="handleClick" /> -->
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination
|
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
||||||
</div>
|
</div>
|
||||||
@ -36,48 +26,48 @@ import { parseTime } from '../mixins/code-filter';
|
|||||||
import {
|
import {
|
||||||
getMaterialUseLogPage,
|
getMaterialUseLogPage,
|
||||||
getWorkOrderList,
|
getWorkOrderList,
|
||||||
exportEnergyPlcExcel,
|
exportEnergyPlcExcel
|
||||||
} from '@/api/quality/materialTraceability';
|
} from '@/api/quality/materialTraceability';
|
||||||
|
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'materialName',
|
prop: 'materialName',
|
||||||
label: '物料名称',
|
label: '物料名称'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'materialCode',
|
prop: 'materialCode',
|
||||||
label: '物料编码',
|
label: '物料编码'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'dateName',
|
prop: 'dateName',
|
||||||
label: '物料批次',
|
label: '物料批次'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'equipName',
|
prop: 'equipName',
|
||||||
label: '使用设备',
|
label: '使用设备'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'num',
|
prop: 'num',
|
||||||
label: '使用数量',
|
label: '使用数量'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'useTime',
|
prop: 'useTime',
|
||||||
label: '使用时间',
|
label: '使用时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'userName',
|
prop: 'userName',
|
||||||
label: '操作人',
|
label: '操作人'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'source',
|
prop: 'source',
|
||||||
label: '数据来源',
|
label: '数据来源',
|
||||||
filter: (val) => (val == 1 ? '内部' : '外部'),
|
filter: (val) => val == 1 ? '内部' : '外部'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'remark',
|
prop: 'remark',
|
||||||
label: '备注',
|
label: '备注'
|
||||||
},
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -103,6 +93,7 @@ export default {
|
|||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
list: [],
|
list: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
@ -120,24 +111,24 @@ export default {
|
|||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
labelField: 'name',
|
labelField: 'name',
|
||||||
valueField: 'id',
|
valueField: 'id',
|
||||||
param: 'workOrderId',
|
param: 'workOrderId'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间段',
|
label: '时间段',
|
||||||
dateType: 'daterange',
|
dateType: 'daterange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd',
|
valueFormat: "yyyy-MM-dd",
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
param: 'timeVal',
|
param: 'timeVal',
|
||||||
defaultSelect: [],
|
defaultSelect: [],
|
||||||
width: 250,
|
width: 250
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '搜索',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
@ -167,13 +158,10 @@ export default {
|
|||||||
// type: this.$auth.hasPermi('base:product:create') ? 'separate' : '',
|
// type: this.$auth.hasPermi('base:product:create') ? 'separate' : '',
|
||||||
// },
|
// },
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('monitoring:materiel-date-from:export')
|
type: this.$auth.hasPermi('monitoring:materiel-date-from:export') ? 'button' : '',
|
||||||
? 'button'
|
|
||||||
: '',
|
|
||||||
btnName: '导出',
|
btnName: '导出',
|
||||||
name: 'export',
|
name: 'export',
|
||||||
plain: true,
|
color: 'warning',
|
||||||
color: 'success',
|
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
@ -182,15 +170,15 @@ export default {
|
|||||||
// AddOrUpdate,
|
// AddOrUpdate,
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList()
|
||||||
this.getDict();
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
getList() {
|
||||||
getMaterialUseLogPage({ ...this.listQuery }).then((res) => {
|
getMaterialUseLogPage({ ...this.listQuery }).then(res => {
|
||||||
this.list = res.data || [];
|
this.list = res.data || []
|
||||||
this.listQuery.total = res.data.total || 0;
|
this.listQuery.total = res.data.total || 0
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
getDict() {
|
getDict() {
|
||||||
// 获取产品的属性列表
|
// 获取产品的属性列表
|
||||||
@ -209,47 +197,41 @@ export default {
|
|||||||
this.formConfig[0].selectOptions = response.data.map((item) => {
|
this.formConfig[0].selectOptions = response.data.map((item) => {
|
||||||
return {
|
return {
|
||||||
name: item.name,
|
name: item.name,
|
||||||
id: item.id,
|
id: item.id
|
||||||
};
|
}
|
||||||
});
|
})
|
||||||
console.log(this.formConfig[0].selectOptions);
|
console.log(this.formConfig[0].selectOptions);
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
handleExport() {
|
handleExport() {
|
||||||
// 处理查询参数
|
// 处理查询参数
|
||||||
let params = { ...this.listQuery };
|
let params = { ...this.listQuery };
|
||||||
params.pageNo = undefined;
|
params.pageNo = undefined;
|
||||||
params.pageSize = undefined;
|
params.pageSize = undefined;
|
||||||
this.$modal
|
this.$modal.confirm('是否确认导出所有数据项?').then(() => {
|
||||||
.confirm('是否确认导出所有数据项?')
|
|
||||||
.then(() => {
|
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return exportEnergyPlcExcel(params);
|
return exportEnergyPlcExcel(params);
|
||||||
})
|
}).then(response => {
|
||||||
.then((response) => {
|
|
||||||
this.$download.excel(response, '物料信息追溯 ');
|
this.$download.excel(response, '物料信息追溯 ');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
}).catch(() => { });
|
||||||
.catch(() => {});
|
|
||||||
},
|
},
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
console.log(val);
|
console.log(val)
|
||||||
if (val.btnName === 'search') {
|
if (val.btnName === 'search') {
|
||||||
this.listQuery.workOrderId = val.workOrderId
|
this.listQuery.workOrderId = val.workOrderId ? val.workOrderId :undefined
|
||||||
? val.workOrderId
|
|
||||||
: undefined;
|
|
||||||
// this.queryParams.status = val.status
|
// this.queryParams.status = val.status
|
||||||
if (val.timeVal && val.timeVal.length != 0 ) {
|
if (val.timeVal && val.timeVal.length != 0 ) {
|
||||||
this.listQuery.startTime = val.timeVal[0] + ' 00:00:00';
|
this.listQuery.startTime = val.timeVal[0] + ' 00:00:00'
|
||||||
this.listQuery.endTime = val.timeVal[1] + ' 23:59:59';
|
this.listQuery.endTime = val.timeVal[1] + ' 23:59:59'
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.startTime = undefined;
|
this.listQuery.startTime = undefined
|
||||||
this.listQuery.endTime = undefined;
|
this.listQuery.endTime = undefined
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList()
|
||||||
} else {
|
} else {
|
||||||
this.handleExport();
|
this.handleExport()
|
||||||
// this.addOrEditTitle = '新增'
|
// this.addOrEditTitle = '新增'
|
||||||
// this.centervisible = true
|
// this.centervisible = true
|
||||||
// this.$nextTick(() => {
|
// this.$nextTick(() => {
|
||||||
|
@ -7,27 +7,12 @@
|
|||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<search-bar
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
:formConfigs="formConfig"
|
<base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :table-data="list">
|
||||||
ref="searchBarForm"
|
<method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
<base-table
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="list">
|
|
||||||
<method-btn
|
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
:width="120"
|
|
||||||
label="操作"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination
|
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
||||||
</div>
|
</div>
|
||||||
@ -41,64 +26,55 @@ import { parseTime } from '../mixins/code-filter';
|
|||||||
import {
|
import {
|
||||||
getProcessTraceabilityPage,
|
getProcessTraceabilityPage,
|
||||||
getWorkOrderList,
|
getWorkOrderList,
|
||||||
getCoreProduct,
|
getCoreProduct
|
||||||
// exportEnergyPlcExcel
|
// exportEnergyPlcExcel
|
||||||
} from '@/api/quality/processTraceability';
|
} from '@/api/quality/processTraceability';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
{
|
{
|
||||||
prop: 'name',
|
prop: 'name',
|
||||||
label: '工单名称',
|
label: '工单名称'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'code',
|
prop: 'code',
|
||||||
label: '工单编码',
|
label: '工单编码'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'planProductName',
|
prop: 'planProductName',
|
||||||
label: '产品名',
|
label: '产品名'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'status',
|
prop: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
filter: (val) =>
|
filter: (val) => val == 1 ? '等待' : val == 2 ? '激活' : val == 3 ? '暂停' : val == 4 ? '完成' : '作废',
|
||||||
val == 1
|
|
||||||
? '等待'
|
|
||||||
: val == 2
|
|
||||||
? '激活'
|
|
||||||
: val == 3
|
|
||||||
? '暂停'
|
|
||||||
: val == 4
|
|
||||||
? '完成'
|
|
||||||
: '作废',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'startProduceTime',
|
prop: 'startProduceTime',
|
||||||
label: '开始生产时间',
|
label: '开始生产时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'finishProduceTime',
|
prop: 'finishProduceTime',
|
||||||
label: '结束生产时间',
|
label: '结束生产时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'actualQuantity',
|
prop: 'actualQuantity',
|
||||||
label: '生产数量',
|
label: '生产数量'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'planProductUnit',
|
prop: 'planProductUnit',
|
||||||
label: '单位',
|
label: '单位',
|
||||||
filter: publicFormatter('unit_dict'),
|
filter: publicFormatter('unit_dict')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'processFlowName',
|
prop: 'processFlowName',
|
||||||
label: '工艺名称',
|
label: '工艺名称'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'yield',
|
prop: 'yield',
|
||||||
label: '合格率',
|
label: '合格率'
|
||||||
},
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -122,6 +98,7 @@ export default {
|
|||||||
type: 'processDetail',
|
type: 'processDetail',
|
||||||
btnName: '查看工艺详情',
|
btnName: '查看工艺详情',
|
||||||
},
|
},
|
||||||
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
list: [],
|
list: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
@ -135,7 +112,7 @@ export default {
|
|||||||
formConfig: [
|
formConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '工单名称',
|
label: '工单',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
labelField: 'name',
|
labelField: 'name',
|
||||||
valueField: 'id',
|
valueField: 'id',
|
||||||
@ -147,17 +124,17 @@ export default {
|
|||||||
label: '工单开始时间',
|
label: '工单开始时间',
|
||||||
dateType: 'daterange',
|
dateType: 'daterange',
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd',
|
valueFormat: "yyyy-MM-dd",
|
||||||
rangeSeparator: '-',
|
rangeSeparator: '-',
|
||||||
startPlaceholder: '开始时间',
|
startPlaceholder: '开始时间',
|
||||||
endPlaceholder: '结束时间',
|
endPlaceholder: '结束时间',
|
||||||
param: 'timeVal',
|
param: 'timeVal',
|
||||||
defaultSelect: [],
|
defaultSelect: [],
|
||||||
width: 250,
|
width: 250
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '搜索',
|
||||||
name: 'search',
|
name: 'search',
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
@ -196,22 +173,22 @@ export default {
|
|||||||
// AddOrUpdate,
|
// AddOrUpdate,
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList()
|
||||||
this.getDict();
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
getList() {
|
||||||
getProcessTraceabilityPage(this.listQuery).then((res) => {
|
getProcessTraceabilityPage(this.listQuery).then(res => {
|
||||||
this.list = res.data.list || [];
|
this.list = res.data.list || []
|
||||||
this.listQuery.total = res.data.total || 0;
|
this.listQuery.total = res.data.total || 0
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
handleClick(val) {
|
handleClick(val) {
|
||||||
if (val.type === 'processDetail') {
|
if (val.type === "processDetail") {
|
||||||
console.log(val);
|
console.log(val);
|
||||||
let specificationsData = '';
|
let specificationsData =''
|
||||||
getCoreProduct(val.data.planProductId).then((res) => {
|
getCoreProduct(val.data.planProductId).then((res) => {
|
||||||
console.log(res);
|
console.log(res)
|
||||||
|
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: 'process-traceability-detail',
|
path: 'process-traceability-detail',
|
||||||
@ -226,7 +203,7 @@ export default {
|
|||||||
// equipmentName,
|
// equipmentName,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
})
|
||||||
|
|
||||||
// this.deleteHandle(val.data.id, val.data.name, val.data._pageIndex)
|
// this.deleteHandle(val.data.id, val.data.name, val.data._pageIndex)
|
||||||
}
|
}
|
||||||
@ -248,12 +225,12 @@ export default {
|
|||||||
this.formConfig[0].selectOptions = response.data.map((item) => {
|
this.formConfig[0].selectOptions = response.data.map((item) => {
|
||||||
return {
|
return {
|
||||||
name: item.name,
|
name: item.name,
|
||||||
id: item.name,
|
id: item.name
|
||||||
};
|
}
|
||||||
});
|
})
|
||||||
console.log(this.formConfig[0].selectOptions);
|
console.log(this.formConfig[0].selectOptions);
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
// handleExport() {
|
// handleExport() {
|
||||||
// // 处理查询参数
|
// // 处理查询参数
|
||||||
@ -269,18 +246,18 @@ export default {
|
|||||||
// }).catch(() => { });
|
// }).catch(() => { });
|
||||||
// },
|
// },
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
console.log(val);
|
console.log(val)
|
||||||
if (val.btnName === 'search') {
|
if (val.btnName === 'search') {
|
||||||
this.listQuery.orderName = val.orderName ? val.orderName : undefined;
|
this.listQuery.orderName = val.orderName ? val.orderName :undefined
|
||||||
// this.queryParams.status = val.status
|
// this.queryParams.status = val.status
|
||||||
if (val.timeVal && val.timeVal.length != 0 ) {
|
if (val.timeVal && val.timeVal.length != 0 ) {
|
||||||
this.listQuery.startTime = val.timeVal[0] + ' 00:00:00';
|
this.listQuery.startTime = val.timeVal[0] + ' 00:00:00'
|
||||||
this.listQuery.endTime = val.timeVal[1] + ' 23:59:59';
|
this.listQuery.endTime = val.timeVal[1] + ' 23:59:59'
|
||||||
} else {
|
} else {
|
||||||
this.listQuery.startTime = undefined;
|
this.listQuery.startTime = undefined
|
||||||
this.listQuery.endTime = undefined;
|
this.listQuery.endTime = undefined
|
||||||
}
|
}
|
||||||
this.getList();
|
this.getList()
|
||||||
} else {
|
} else {
|
||||||
// this.handleExport()
|
// this.handleExport()
|
||||||
// this.addOrEditTitle = '新增'
|
// this.addOrEditTitle = '新增'
|
||||||
|
@ -0,0 +1,219 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-09-11 15:55:13
|
||||||
|
description: DialogForm for qualityInspectionRecord only
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-form ref="form" :model="innerDataForm" label-width="100px" v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工单名称" prop="workOrderId" :rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select v-model="innerDataForm.workOrderId" placeholder="请选择工单名称" filterable clearable>
|
||||||
|
<el-option v-for="opt in workOrderList" :key="opt.value" :label="opt.label" :value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="检测内容" prop="inspectionDetId"
|
||||||
|
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select v-model="innerDataForm.inspectionDetId" placeholder="请选择检测内容" filterable clearable
|
||||||
|
@change="handleInspectionDetChange">
|
||||||
|
<el-option v-for="opt in inspectionDetList" :key="opt.value" :label="opt.label" :value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="产线" prop="productionLineId"
|
||||||
|
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select v-model="innerDataForm.productionLineId" placeholder="请选择产线" filterable clearable
|
||||||
|
@change="handleProductlineChange">
|
||||||
|
<el-option v-for="opt in productionLineList" :key="opt.value" :label="opt.label" :value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="工段" prop="sectionId" :rules="[{ required: false, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select v-model="innerDataForm.sectionId" placeholder="请选择工段" clearable filterable
|
||||||
|
@change="$emit('update', innerDataForm)">
|
||||||
|
<el-option v-for="opt in sectionList" :key="opt.value" :label="opt.label" :value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="检测人员" prop="checkPerson">
|
||||||
|
<el-input v-model="innerDataForm.checkPerson" clearable @change="$emit('update', innerDataForm)"
|
||||||
|
placeholder="请输入检测人员" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="检测时间" prop="checkTime" :rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-date-picker v-model="innerDataForm.checkTime" type="datetime" placeholder="请选择检测时间"
|
||||||
|
value-format="timestamp" @change="$emit('update', innerDataForm)"></el-date-picker>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="来源" prop="source" :rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
||||||
|
<el-select v-model="innerDataForm.source" placeholder="请选择来源" filterable clearable
|
||||||
|
@change="$emit('update', innerDataForm)">
|
||||||
|
<el-option v-for="opt in [
|
||||||
|
{ label: '手动', value: 1 },
|
||||||
|
{ label: '自动', value: 2 },
|
||||||
|
]" :key="opt.value" :label="opt.label" :value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="innerDataForm.remark" @change="$emit('update', innerDataForm)" placeholder="请输入备注">
|
||||||
|
</el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'DialogForm',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
dataForm: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
formLoading: true,
|
||||||
|
inspectionDetList: [],
|
||||||
|
productionLineList: [],
|
||||||
|
sectionList: [],
|
||||||
|
workOrderList:[],
|
||||||
|
innerDataForm: {},
|
||||||
|
cacheInspectionDetList: null,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
Promise.all([this.getProductLineList(), this.getInspectionDetList(), this.getWorkOrderList()]).then(
|
||||||
|
() => {
|
||||||
|
this.formLoading = false;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
// 'innerDataForm.productionLineId': {
|
||||||
|
// handler: async function (plId) {
|
||||||
|
// if (plId) await this.getWorksectionList(plId);
|
||||||
|
// },
|
||||||
|
// immediate: true,
|
||||||
|
// },
|
||||||
|
dataForm: {
|
||||||
|
handler: function (dataForm) {
|
||||||
|
this.innerDataForm = Object.assign({}, dataForm);
|
||||||
|
|
||||||
|
if (dataForm.productionLineId)
|
||||||
|
this.getWorksectionList(dataForm.productionLineId);
|
||||||
|
},
|
||||||
|
immediate: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.form.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.form.resetFields(args);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleInspectionDetChange(value) {
|
||||||
|
const { id, content } = this.cacheInspectionDetList.find(
|
||||||
|
(item) => item.id == value
|
||||||
|
);
|
||||||
|
this.innerDataForm.inspectionDetId = id;
|
||||||
|
this.innerDataForm.inspectionDetContent = content;
|
||||||
|
this.$emit('update', this.innerDataForm);
|
||||||
|
},
|
||||||
|
|
||||||
|
async handleProductlineChange(id) {
|
||||||
|
// await this.getWorksectionList(id);
|
||||||
|
this.innerDataForm.sectionId = null;
|
||||||
|
this.$emit('update', this.innerDataForm);
|
||||||
|
},
|
||||||
|
|
||||||
|
// getCode
|
||||||
|
async getCode(url) {
|
||||||
|
const response = await this.$axios(url);
|
||||||
|
return response.data;
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获取产线列表
|
||||||
|
async getProductLineList() {
|
||||||
|
const response = await this.$axios('/base/core-production-line/listAll');
|
||||||
|
this.productionLineList = response.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
async getWorkOrderList() {
|
||||||
|
const response = await this.$axios('base/core-work-order/listbyfilter');
|
||||||
|
this.workOrderList = response.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获取检测内容列表
|
||||||
|
async getInspectionDetList() {
|
||||||
|
const response = await this.$axios(
|
||||||
|
'/base/quality-inspection-det/listAll'
|
||||||
|
);
|
||||||
|
this.cacheInspectionDetList = response.data;
|
||||||
|
this.inspectionDetList = response.data.map((item) => ({
|
||||||
|
label: item.content,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
|
||||||
|
// 获取工段列表
|
||||||
|
async getWorksectionList(plId) {
|
||||||
|
const response = await this.$axios(
|
||||||
|
'/base/core-workshop-section/listByParentId',
|
||||||
|
{
|
||||||
|
params: {
|
||||||
|
id: plId,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
this.sectionList = response.data.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
@ -17,7 +17,7 @@
|
|||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="80"
|
:width="120"
|
||||||
fixed="right"
|
fixed="right"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
@ -66,6 +66,78 @@ export default {
|
|||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
rows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '检测内容',
|
||||||
|
url: '/base/quality-inspection-det/listAll',
|
||||||
|
prop: 'inspectionDetId',
|
||||||
|
labelKey: 'content',
|
||||||
|
rules: [{ required: true, message: '检测内容不能为空', trigger: 'blur' }],
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '来源',
|
||||||
|
prop: 'source',
|
||||||
|
value: 1, // 默认手动
|
||||||
|
options: [
|
||||||
|
{ label: '手动', value: 1 },
|
||||||
|
{ label: '自动', value: 2 },
|
||||||
|
],
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '产线',
|
||||||
|
url: '/base/production-line/listAll',
|
||||||
|
prop: 'productionLineId',
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
|
rules: [{ required: true, message: '产线不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '工段',
|
||||||
|
url: '/base/workshop-section/listAll', // 这个 url 其实可加可不加,因为下面会更新 options
|
||||||
|
options: [], // 这个options也可加可不加, 因为下面会更新 options
|
||||||
|
prop: 'sectionId',
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
},
|
||||||
|
rules: [{ required: false, message: '不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '检测人员',
|
||||||
|
prop: 'checkPerson',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
datetime: true,
|
||||||
|
label: '检测时间',
|
||||||
|
prop: 'checkTime',
|
||||||
|
rules: [{ required: true, message: '检测时间不能为空', trigger: 'blur' }],
|
||||||
|
bind: {
|
||||||
|
format: 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
'value-format': 'timestamp',
|
||||||
|
// 'value-format': 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
clearable: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[{ textarea: true, label: '描述', prop: 'explainText' }],
|
||||||
|
[{ input: true, label: '备注', prop: 'remark' }],
|
||||||
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -73,7 +145,7 @@ export default {
|
|||||||
placeholder: '请选择工单名称',
|
placeholder: '请选择工单名称',
|
||||||
param: 'workOrderId',
|
param: 'workOrderId',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
filterable: true,
|
filterable:true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
@ -81,7 +153,7 @@ export default {
|
|||||||
placeholder: '请输入检测内容',
|
placeholder: '请输入检测内容',
|
||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
param: 'inspectionDetContent',
|
param: 'inspectionDetContent',
|
||||||
filterable: true,
|
filterable: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
@ -107,7 +179,9 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('base:quality-inspection-record:create')
|
type: this.$auth.hasPermi(
|
||||||
|
'base:quality-inspection-record:create'
|
||||||
|
)
|
||||||
? 'button'
|
? 'button'
|
||||||
: '',
|
: '',
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
@ -150,7 +224,7 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
// width: 128,
|
// width: 128,
|
||||||
prop: 'productionLineName',
|
prop: 'lineName',
|
||||||
label: '产线',
|
label: '产线',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -173,7 +247,7 @@ export default {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
// 搜索框需要的 keys, 与上面 queryParams 的除 pageNo, pageSize 之外的 key 一一对应
|
// 搜索框需要的 keys, 与上面 queryParams 的除 pageNo, pageSize 之外的 key 一一对应
|
||||||
searchBarKeys: ['workOrderId', 'inspectionDetContent', 'checkTime'],
|
searchBarKeys: ['inspectionDetContent', 'checkTime', 'productionLineId'],
|
||||||
form: {
|
form: {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
inspectionDetId: undefined,
|
inspectionDetId: undefined,
|
||||||
@ -184,7 +258,7 @@ export default {
|
|||||||
workOrderId:undefined,
|
workOrderId:undefined,
|
||||||
checkTime: undefined,
|
checkTime: undefined,
|
||||||
source: undefined,
|
source: undefined,
|
||||||
workOrderId: undefined,
|
explainText: undefined,
|
||||||
remark: undefined,
|
remark: undefined,
|
||||||
},
|
},
|
||||||
// 查询参数
|
// 查询参数
|
||||||
@ -200,15 +274,38 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList();
|
||||||
this.getProductLineList();
|
this.getProductLineList()
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
form: {
|
form: {
|
||||||
handler: function (val) {
|
handler: function (val) {
|
||||||
console.log('form change:', val);
|
console.log('form change:', val);
|
||||||
},
|
},
|
||||||
deep: true,
|
deep: true
|
||||||
},
|
}
|
||||||
|
// 注册弹窗里产线改变时的监听事件
|
||||||
|
// 'form.productionLineId': {
|
||||||
|
// handler: function (val) {
|
||||||
|
// if (val == null) return;
|
||||||
|
// this.$axios('/base/workshop-section/listByParentId', {
|
||||||
|
// params: {
|
||||||
|
// id: val,
|
||||||
|
// },
|
||||||
|
// }).then((response) => {
|
||||||
|
// this.$set(
|
||||||
|
// this.rows[1][1], // 这里索引是硬编码,所以当 this.rows 里数据顺序改变时,此处也要改
|
||||||
|
// 'options',
|
||||||
|
// response.data.map((item) => {
|
||||||
|
// return {
|
||||||
|
// label: item.name,
|
||||||
|
// value: item.id,
|
||||||
|
// };
|
||||||
|
// })
|
||||||
|
// );
|
||||||
|
// });
|
||||||
|
// },
|
||||||
|
// immediate: true,
|
||||||
|
// },
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
/** 获取搜索栏的产线列表 */
|
/** 获取搜索栏的产线列表 */
|
||||||
@ -222,7 +319,7 @@ export default {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
});
|
})
|
||||||
this.$axios('/base/quality-inspection-det/listAll').then((response) => {
|
this.$axios('/base/quality-inspection-det/listAll').then((response) => {
|
||||||
this.searchBarFormConfig[1].selectOptions = response.data.map(
|
this.searchBarFormConfig[1].selectOptions = response.data.map(
|
||||||
(item) => {
|
(item) => {
|
||||||
@ -259,7 +356,7 @@ export default {
|
|||||||
checkPerson: undefined,
|
checkPerson: undefined,
|
||||||
checkTime: undefined,
|
checkTime: undefined,
|
||||||
source: undefined,
|
source: undefined,
|
||||||
workOrderId: undefined,
|
explainText: undefined,
|
||||||
remark: undefined,
|
remark: undefined,
|
||||||
productionLineId: undefined,
|
productionLineId: undefined,
|
||||||
};
|
};
|
||||||
@ -279,7 +376,7 @@ export default {
|
|||||||
handleAdd() {
|
handleAdd() {
|
||||||
this.reset();
|
this.reset();
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '新增';
|
this.title = '添加质量检查信息记录表';
|
||||||
},
|
},
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
@ -287,13 +384,13 @@ export default {
|
|||||||
const id = row.id;
|
const id = row.id;
|
||||||
getQualityInspectionRecord(id).then((response) => {
|
getQualityInspectionRecord(id).then((response) => {
|
||||||
/** 因为后端返回的时间是时间戳格式,需转换 */
|
/** 因为后端返回的时间是时间戳格式,需转换 */
|
||||||
const info = {};
|
const info = {}
|
||||||
Object.keys(this.form).forEach((key) => {
|
Object.keys(this.form).forEach(key => {
|
||||||
info[key] = response.data[key];
|
info[key] = response.data[key]
|
||||||
});
|
});
|
||||||
this.form = info;
|
this.form = info;
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '编辑';
|
this.title = '修改质量检查信息记录表';
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
/** 提交按钮 */
|
/** 提交按钮 */
|
120
src/views/quality/monitoring/qualityRecentHours/index.vue
Normal file
120
src/views/quality/monitoring/qualityRecentHours/index.vue
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<!--
|
||||||
|
filename: index.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-08-04 14:44:58
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="[{ label: '近24小时检测记录', type: 'title' }]"
|
||||||
|
ref="search-bar" />
|
||||||
|
<!-- <pre><code v-html="jsondemo"></code></pre> -->
|
||||||
|
|
||||||
|
<el-skeleton v-if="initing" :rows="6" animated />
|
||||||
|
<div v-else >
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="queryParams.pageNo"
|
||||||
|
:limit="queryParams.pageSize"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun"></base-table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// import response from './response.json';
|
||||||
|
import { handleNameData, handleDynamicData } from '@/utils/dynamicProps';
|
||||||
|
// import hljs from 'highlight.js/lib/highlight';
|
||||||
|
// import json from 'highlight.js/lib/languages/json';
|
||||||
|
// import 'highlight.js/styles/github-gist.css';
|
||||||
|
|
||||||
|
// hljs.registerLanguage('json', json);
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'QualityRecentHours',
|
||||||
|
components: {},
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
initing: false,
|
||||||
|
queryParams: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
},
|
||||||
|
list: [
|
||||||
|
// {
|
||||||
|
// inspectionContent: '检测内容1',
|
||||||
|
// '2023-03-18T00:00:00-产线1': '产线1-asdf',
|
||||||
|
// '2023-03-18T01:00:00-产线2': '产线2-kldf',
|
||||||
|
// '2023-03-18T02:00:00-产线1': '产线1-vasdkj',
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
tableProps: [
|
||||||
|
{
|
||||||
|
prop: 'inspectionContent',
|
||||||
|
label: '检测内容',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
mounted() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async getList() {
|
||||||
|
const response = await this.$axios({
|
||||||
|
url: '/analysis/record-in-one-day/get',
|
||||||
|
method: 'get',
|
||||||
|
});
|
||||||
|
const {
|
||||||
|
data: { data: dyanmicData, nameData },
|
||||||
|
} = response;
|
||||||
|
|
||||||
|
this.initing = true;
|
||||||
|
const dynamicProps = handleNameData(nameData);
|
||||||
|
this.tableProps.push(...dynamicProps);
|
||||||
|
const dataList = handleDynamicData(dyanmicData);
|
||||||
|
this.list = dataList;
|
||||||
|
this.queryParams.pageSize = dataList.length;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.initing = false;
|
||||||
|
}, 1000);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleEmitFun(payload) {
|
||||||
|
console.log('payload', payload);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin: 10px;
|
||||||
|
background: #f6f8faf6;
|
||||||
|
border: 1px solid #e1e4e8;
|
||||||
|
padding: 12px;
|
||||||
|
border-radius: 12px;
|
||||||
|
position: fixed;
|
||||||
|
// top: 15vh;
|
||||||
|
top: 10vh;
|
||||||
|
left: 0;
|
||||||
|
max-height: 80vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
z-index: 100000;
|
||||||
|
box-shadow: 0 0 32px 12px #0001;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
font-family: 'IntelOne Mono', 'Ubuntu', 'Courier New', Courier, monospace;
|
||||||
|
}
|
||||||
|
</style>
|
80
src/views/quality/monitoring/qualityRecentHours/props.json
Normal file
80
src/views/quality/monitoring/qualityRecentHours/props.json
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
{
|
||||||
|
"tableProps": [
|
||||||
|
{
|
||||||
|
"prop": "inspectionContent",
|
||||||
|
"label": "检测内容",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00",
|
||||||
|
"label": "2023-03-18T00:00:00",
|
||||||
|
"align": "center",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00-产线1",
|
||||||
|
"label": "产线1",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00-产线2",
|
||||||
|
"label": "产线2",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00-产线3",
|
||||||
|
"label": "产线3",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00-产线4",
|
||||||
|
"label": "产线4",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T00:00:00-产线5",
|
||||||
|
"label": "产线5",
|
||||||
|
"align": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T01:00:00",
|
||||||
|
"label": "2023-03-18T01:00:00",
|
||||||
|
"align": "center",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T01:00:00-产线1",
|
||||||
|
"label": "产线1",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T01:00:00-产线2",
|
||||||
|
"label": "产线2",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T01:00:00-产线3",
|
||||||
|
"label": "产线3",
|
||||||
|
"align": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T02:00:00",
|
||||||
|
"label": "2023-03-18T02:00:00",
|
||||||
|
"align": "center",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T02:00:00-产线1",
|
||||||
|
"label": "产线1",
|
||||||
|
"align": "center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"prop": "2023-03-18T02:00:00-产线2",
|
||||||
|
"label": "产线2",
|
||||||
|
"align": "center"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
176
src/views/quality/monitoring/qualityRecentHours/response.json
Normal file
176
src/views/quality/monitoring/qualityRecentHours/response.json
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
{
|
||||||
|
"code": 0,
|
||||||
|
"data": {
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"id": "测试222023-08-09T02:00",
|
||||||
|
"parentId": "测试22",
|
||||||
|
"dynamicName": "2023-08-09T02:00",
|
||||||
|
"dynamicValue": 1691517600000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T02:00",
|
||||||
|
"dynamicName": "产线1",
|
||||||
|
"dynamicValue": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "测试222023-08-09T08:00",
|
||||||
|
"parentId": "测试22",
|
||||||
|
"dynamicName": "2023-08-09T08:00",
|
||||||
|
"dynamicValue": 1691539200000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T08:00",
|
||||||
|
"dynamicName": "产线1",
|
||||||
|
"dynamicValue": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "测试222023-08-09T11:00",
|
||||||
|
"parentId": "测试22",
|
||||||
|
"dynamicName": "2023-08-09T11:00",
|
||||||
|
"dynamicValue": 1691550000000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T11:00",
|
||||||
|
"dynamicName": "产线1",
|
||||||
|
"dynamicValue": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"inspectionDetContent": "测试22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"data": [
|
||||||
|
{
|
||||||
|
"id": "测试112023-08-09T02:00",
|
||||||
|
"parentId": "测试11",
|
||||||
|
"dynamicName": "2023-08-09T02:00",
|
||||||
|
"dynamicValue": 1691517600000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821954",
|
||||||
|
"parentId": "测试112023-08-09T02:00",
|
||||||
|
"dynamicName": "产线22",
|
||||||
|
"dynamicValue": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "测试112023-08-09T08:00",
|
||||||
|
"parentId": "测试11",
|
||||||
|
"dynamicName": "2023-08-09T08:00",
|
||||||
|
"dynamicValue": 1691539200000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试112023-08-09T08:00",
|
||||||
|
"dynamicName": "产线1",
|
||||||
|
"dynamicValue": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "测试112023-08-09T09:00",
|
||||||
|
"parentId": "测试11",
|
||||||
|
"dynamicName": "2023-08-09T09:00",
|
||||||
|
"dynamicValue": 1691542800000,
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"id": "1672847052717821954",
|
||||||
|
"parentId": "测试112023-08-09T09:00",
|
||||||
|
"dynamicName": "产线22",
|
||||||
|
"dynamicValue": 2
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"inspectionDetContent": "测试11"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"nameData": [
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T02:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试222023-08-09T02:00",
|
||||||
|
"parentId": "测试22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线1",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T02:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T08:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试222023-08-09T08:00",
|
||||||
|
"parentId": "测试22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线1",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T08:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T11:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试222023-08-09T11:00",
|
||||||
|
"parentId": "测试22"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线1",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试222023-08-09T11:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T02:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试112023-08-09T02:00",
|
||||||
|
"parentId": "测试11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线22",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821954",
|
||||||
|
"parentId": "测试112023-08-09T02:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T08:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试112023-08-09T08:00",
|
||||||
|
"parentId": "测试11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线1",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821953",
|
||||||
|
"parentId": "测试112023-08-09T08:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2023-08-09T09:00",
|
||||||
|
"tree": 1,
|
||||||
|
"id": "测试112023-08-09T09:00",
|
||||||
|
"parentId": "测试11"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "产线22",
|
||||||
|
"tree": 2,
|
||||||
|
"id": "1672847052717821954",
|
||||||
|
"parentId": "测试112023-08-09T09:00"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"msg": ""
|
||||||
|
}
|
@ -7,22 +7,12 @@
|
|||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<search-bar
|
<search-bar :formConfigs="formConfig" ref="searchBarForm" @headBtnClick="buttonClick" />
|
||||||
:formConfigs="formConfig"
|
<base-table :table-props="tableProps" :page="listQuery.pageNo" :limit="listQuery.pageSize" :table-data="list">
|
||||||
ref="searchBarForm"
|
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
<base-table
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="list">
|
|
||||||
<!-- <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
<!-- <method-btn v-if="tableBtn.length" slot="handleBtn" :width="120" label="操作" :method-list="tableBtn"
|
||||||
@clickBtn="handleClick" /> -->
|
@clickBtn="handleClick" /> -->
|
||||||
</base-table>
|
</base-table>
|
||||||
<pagination
|
<pagination :limit.sync="listQuery.pageSize" :page.sync="listQuery.pageNo" :total="listQuery.total"
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList" /> -->
|
||||||
</div>
|
</div>
|
||||||
@ -44,36 +34,35 @@ const tableProps = [
|
|||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'createTime',
|
||||||
label: '添加时间',
|
label: '添加时间',
|
||||||
filter: parseTime,
|
filter: parseTime
|
||||||
width: 150,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'material',
|
prop: 'material',
|
||||||
label: '原料名称',
|
label: '原料名称',
|
||||||
filter: publicFormatter('material'),
|
filter: publicFormatter('material')
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'origin',
|
prop: 'origin',
|
||||||
label: '来源',
|
label: '来源',
|
||||||
filter: (val) => (val == 1 ? '内部' : '外部'),
|
filter: (val)=>val == 1 ? '内部' : '外部'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'supplierId',
|
prop: 'supplierId',
|
||||||
label: '供应商',
|
label: '供应商'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'batch',
|
prop: 'batch',
|
||||||
label: '批次',
|
label: '批次'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'num',
|
prop: 'num',
|
||||||
label: '数量',
|
label: '数量'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'unit',
|
prop: 'unit',
|
||||||
label: '单位',
|
label: '单位',
|
||||||
filter: publicFormatter('unit_dict'),
|
filter: publicFormatter('unit_dict')
|
||||||
},
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -99,6 +88,7 @@ export default {
|
|||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
|
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
list: [],
|
list: [],
|
||||||
listQuery: {
|
listQuery: {
|
||||||
@ -116,7 +106,7 @@ export default {
|
|||||||
selectOptions: [],
|
selectOptions: [],
|
||||||
labelField: 'name',
|
labelField: 'name',
|
||||||
valueField: 'id',
|
valueField: 'id',
|
||||||
param: 'workOrderId',
|
param: 'workOrderId'
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// type: 'datePicker',
|
// type: 'datePicker',
|
||||||
@ -172,15 +162,15 @@ export default {
|
|||||||
// AddOrUpdate,
|
// AddOrUpdate,
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getList();
|
this.getList()
|
||||||
this.getDict();
|
this.getDict()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
getList() {
|
||||||
getRawMaterialPage({ ...this.listQuery }).then((res) => {
|
getRawMaterialPage({ ...this.listQuery }).then(res => {
|
||||||
this.list = res.data.records || [];
|
this.list = res.data.list || []
|
||||||
this.listQuery.total = res.data.total || 0;
|
this.listQuery.total = res.data.total || 0
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
getDict() {
|
getDict() {
|
||||||
// 获取产品的属性列表
|
// 获取产品的属性列表
|
||||||
@ -199,12 +189,12 @@ export default {
|
|||||||
this.formConfig[0].selectOptions = response.data.map((item) => {
|
this.formConfig[0].selectOptions = response.data.map((item) => {
|
||||||
return {
|
return {
|
||||||
name: item.name,
|
name: item.name,
|
||||||
id: item.id,
|
id: item.id
|
||||||
};
|
}
|
||||||
});
|
})
|
||||||
console.log(this.formConfig[0].selectOptions);
|
console.log(this.formConfig[0].selectOptions);
|
||||||
// this.listQuery.total = response.data.total;
|
// this.listQuery.total = response.data.total;
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
// handleExport() {
|
// handleExport() {
|
||||||
// // 处理查询参数
|
// // 处理查询参数
|
||||||
@ -220,11 +210,9 @@ export default {
|
|||||||
// }).catch(() => { });
|
// }).catch(() => { });
|
||||||
// },
|
// },
|
||||||
buttonClick(val) {
|
buttonClick(val) {
|
||||||
console.log(val);
|
console.log(val)
|
||||||
if (val.btnName === 'search') {
|
if (val.btnName === 'search') {
|
||||||
this.listQuery.workOrderId = val.workOrderId
|
this.listQuery.workOrderId = val.workOrderId ? val.workOrderId :undefined
|
||||||
? val.workOrderId
|
|
||||||
: undefined;
|
|
||||||
// this.queryParams.status = val.status
|
// this.queryParams.status = val.status
|
||||||
// if (val.timeVal && val.timeVal.length != 0 ) {
|
// if (val.timeVal && val.timeVal.length != 0 ) {
|
||||||
// this.listQuery.startTime = val.timeVal[0] + ' 00:00:00'
|
// this.listQuery.startTime = val.timeVal[0] + ' 00:00:00'
|
||||||
@ -233,7 +221,7 @@ export default {
|
|||||||
// this.listQuery.startTime = undefined
|
// this.listQuery.startTime = undefined
|
||||||
// this.listQuery.endTime = undefined
|
// this.listQuery.endTime = undefined
|
||||||
// }
|
// }
|
||||||
this.getList();
|
this.getList()
|
||||||
} else {
|
} else {
|
||||||
// this.handleExport()
|
// this.handleExport()
|
||||||
// this.addOrEditTitle = '新增'
|
// this.addOrEditTitle = '新增'
|
||||||
|
@ -1,290 +0,0 @@
|
|||||||
<!--
|
|
||||||
filename: dialogForm.vue
|
|
||||||
author: liubin
|
|
||||||
date: 2023-09-11 15:55:13
|
|
||||||
description: DialogForm for qualityInspectionRecord only
|
|
||||||
-->
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<el-form
|
|
||||||
ref="form"
|
|
||||||
:model="innerDataForm"
|
|
||||||
label-width="100px"
|
|
||||||
v-loading="formLoading">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="工单名称"
|
|
||||||
prop="workOrderId"
|
|
||||||
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-select
|
|
||||||
v-model="innerDataForm.workOrderId"
|
|
||||||
placeholder="请选择工单名称"
|
|
||||||
filterable
|
|
||||||
clearable>
|
|
||||||
<el-option
|
|
||||||
v-for="opt in workOrderList"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="检测内容"
|
|
||||||
prop="inspectionDetId"
|
|
||||||
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-select
|
|
||||||
v-model="innerDataForm.inspectionDetId"
|
|
||||||
placeholder="请选择检测内容"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
@change="handleInspectionDetChange">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in inspectionDetList"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="产线"
|
|
||||||
prop="productionLineId"
|
|
||||||
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-select
|
|
||||||
v-model="innerDataForm.productionLineId"
|
|
||||||
placeholder="请选择产线"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
@change="handleProductlineChange">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in productionLineList"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="工段"
|
|
||||||
prop="sectionId"
|
|
||||||
:rules="[{ required: false, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-select
|
|
||||||
v-model="innerDataForm.sectionId"
|
|
||||||
placeholder="请选择工段"
|
|
||||||
clearable
|
|
||||||
filterable
|
|
||||||
@change="$emit('update', innerDataForm)">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in sectionList"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="检测人" prop="checkPerson">
|
|
||||||
<el-input
|
|
||||||
v-model="innerDataForm.checkPerson"
|
|
||||||
clearable
|
|
||||||
@change="$emit('update', innerDataForm)"
|
|
||||||
placeholder="请输入检测人" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="检测时间"
|
|
||||||
prop="checkTime"
|
|
||||||
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="innerDataForm.checkTime"
|
|
||||||
type="datetime"
|
|
||||||
placeholder="请选择检测时间"
|
|
||||||
value-format="timestamp"
|
|
||||||
@change="$emit('update', innerDataForm)"></el-date-picker>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item
|
|
||||||
label="来源"
|
|
||||||
prop="source"
|
|
||||||
:rules="[{ required: true, message: '不能为空', trigger: 'blur' }]">
|
|
||||||
<el-select
|
|
||||||
v-model="innerDataForm.source"
|
|
||||||
placeholder="请选择来源"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
@change="$emit('update', innerDataForm)">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in [
|
|
||||||
{ label: '手动', value: 1 },
|
|
||||||
{ label: '自动', value: 2 },
|
|
||||||
]"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input
|
|
||||||
v-model="innerDataForm.remark"
|
|
||||||
@change="$emit('update', innerDataForm)"
|
|
||||||
placeholder="请输入备注"></el-input>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'DialogForm',
|
|
||||||
model: {
|
|
||||||
prop: 'dataForm',
|
|
||||||
event: 'update',
|
|
||||||
},
|
|
||||||
emits: ['update'],
|
|
||||||
components: {},
|
|
||||||
props: {
|
|
||||||
dataForm: {
|
|
||||||
type: Object,
|
|
||||||
default: () => ({}),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
formLoading: true,
|
|
||||||
inspectionDetList: [],
|
|
||||||
productionLineList: [],
|
|
||||||
sectionList: [],
|
|
||||||
workOrderList: [],
|
|
||||||
innerDataForm: {},
|
|
||||||
cacheInspectionDetList: null,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
Promise.all([
|
|
||||||
this.getProductLineList(),
|
|
||||||
this.getInspectionDetList(),
|
|
||||||
this.getWorkOrderList(),
|
|
||||||
]).then(() => {
|
|
||||||
this.formLoading = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
// 'innerDataForm.productionLineId': {
|
|
||||||
// handler: async function (plId) {
|
|
||||||
// if (plId) await this.getWorksectionList(plId);
|
|
||||||
// },
|
|
||||||
// immediate: true,
|
|
||||||
// },
|
|
||||||
dataForm: {
|
|
||||||
handler: function (dataForm) {
|
|
||||||
this.innerDataForm = Object.assign({}, dataForm);
|
|
||||||
|
|
||||||
if (dataForm.productionLineId)
|
|
||||||
this.getWorksectionList(dataForm.productionLineId);
|
|
||||||
},
|
|
||||||
immediate: true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
/** 模拟透传 ref */
|
|
||||||
validate(cb) {
|
|
||||||
return this.$refs.form.validate(cb);
|
|
||||||
},
|
|
||||||
resetFields(args) {
|
|
||||||
return this.$refs.form.resetFields(args);
|
|
||||||
},
|
|
||||||
|
|
||||||
handleInspectionDetChange(value) {
|
|
||||||
const { id, content } = this.cacheInspectionDetList.find(
|
|
||||||
(item) => item.id == value
|
|
||||||
);
|
|
||||||
this.innerDataForm.inspectionDetId = id;
|
|
||||||
this.innerDataForm.inspectionDetContent = content;
|
|
||||||
this.$emit('update', this.innerDataForm);
|
|
||||||
},
|
|
||||||
|
|
||||||
async handleProductlineChange(id) {
|
|
||||||
// await this.getWorksectionList(id);
|
|
||||||
this.innerDataForm.sectionId = null;
|
|
||||||
this.$emit('update', this.innerDataForm);
|
|
||||||
},
|
|
||||||
|
|
||||||
// getCode
|
|
||||||
async getCode(url) {
|
|
||||||
const response = await this.$axios(url);
|
|
||||||
return response.data;
|
|
||||||
},
|
|
||||||
|
|
||||||
// 获取产线列表
|
|
||||||
async getProductLineList() {
|
|
||||||
const response = await this.$axios('/base/core-production-line/listAll');
|
|
||||||
this.productionLineList = response.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
|
|
||||||
async getWorkOrderList() {
|
|
||||||
const response = await this.$axios('base/core-work-order/listbyfilter');
|
|
||||||
this.workOrderList = response.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
|
|
||||||
// 获取检测内容列表
|
|
||||||
async getInspectionDetList() {
|
|
||||||
const response = await this.$axios(
|
|
||||||
'/base/quality-inspection-det/listAll'
|
|
||||||
);
|
|
||||||
this.cacheInspectionDetList = response.data;
|
|
||||||
this.inspectionDetList = response.data.map((item) => ({
|
|
||||||
label: item.content,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
|
|
||||||
// 获取工段列表
|
|
||||||
async getWorksectionList(plId) {
|
|
||||||
const response = await this.$axios(
|
|
||||||
'/base/core-workshop-section/listByParentId',
|
|
||||||
{
|
|
||||||
params: {
|
|
||||||
id: plId,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
);
|
|
||||||
this.sectionList = response.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.el-date-editor,
|
|
||||||
.el-select {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,269 +0,0 @@
|
|||||||
<template>
|
|
||||||
<el-form
|
|
||||||
:model="dataForm"
|
|
||||||
:rules="dataRule"
|
|
||||||
ref="dataForm"
|
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
|
||||||
label-width="auto">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="工单号" prop="workOrderId">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.workOrderId"
|
|
||||||
placeholder="请选择工单号"
|
|
||||||
style="width: 100%"
|
|
||||||
:disabled="showDetail">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in workOrderList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="班组" prop="teamId" :disabled="showDetail">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.teamId"
|
|
||||||
placeholder="请选择班组"
|
|
||||||
style="width: 100%"
|
|
||||||
:disabled="showDetail">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in teamList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="数量" prop="num" style="width: 100%">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.num"
|
|
||||||
placeholder="请输入数量"
|
|
||||||
:disabled="showDetail" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="产线" prop="lineId">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.lineId"
|
|
||||||
placeholder="请选择产线"
|
|
||||||
style="width: 100%"
|
|
||||||
:disabled="showDetail">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in lineList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="报废原因" prop="detId">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.detId"
|
|
||||||
placeholder="请选择报废原因"
|
|
||||||
style="width: 100%"
|
|
||||||
:disabled="showDetail">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in detList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="报废时间" prop="logTime">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="dataForm.logTime"
|
|
||||||
type="datetime"
|
|
||||||
label-format="yyyy-MM-dd HH:mm:ss"
|
|
||||||
value-format="yyyy-MM-dd HH:mm:ss"
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="选择日期"
|
|
||||||
:disabled="showDetail"></el-date-picker>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-form-item label="来源" prop="source">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.source"
|
|
||||||
placeholder="请选择来源"
|
|
||||||
style="width: 100%"
|
|
||||||
:disabled="showDetail">
|
|
||||||
<el-option
|
|
||||||
v-for="dict in sourceList"
|
|
||||||
:key="dict.id"
|
|
||||||
:label="dict.name"
|
|
||||||
:value="dict.id" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="24">
|
|
||||||
<el-form-item label="描述" prop="description">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.description"
|
|
||||||
placeholder="请输入描述"
|
|
||||||
type="textarea"
|
|
||||||
:autosize="{ minRows: 2, maxRows: 4 }"
|
|
||||||
:disabled="showDetail" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col :span="24">
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.remark"
|
|
||||||
placeholder="备注"
|
|
||||||
:disabled="showDetail" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import {
|
|
||||||
createQualityScrapLog,
|
|
||||||
updateQualityScrapLog,
|
|
||||||
getQualityScrapLog,
|
|
||||||
getWorkOrderList,
|
|
||||||
getTeamList,
|
|
||||||
getDetList,
|
|
||||||
getLineList,
|
|
||||||
} from '@/api/base/qualityScrapLog';
|
|
||||||
// import { getList } from '@/api/base/qualityScrapType';
|
|
||||||
import moment from 'moment';
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
lineList: [],
|
|
||||||
workOrderList: [],
|
|
||||||
detList: [],
|
|
||||||
teamList: [],
|
|
||||||
sourceList: [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
name: '手动',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
name: '自动',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
dataForm: {
|
|
||||||
id: undefined,
|
|
||||||
logTime: undefined,
|
|
||||||
source: 1,
|
|
||||||
detId: undefined,
|
|
||||||
workOrderId: null,
|
|
||||||
teamId: undefined,
|
|
||||||
num: null,
|
|
||||||
lineId: undefined,
|
|
||||||
description: undefined,
|
|
||||||
remark: undefined,
|
|
||||||
},
|
|
||||||
dataRule: {
|
|
||||||
workOrderId: [
|
|
||||||
{ required: true, message: '工单号不能为空', trigger: 'change' },
|
|
||||||
],
|
|
||||||
num: [{ required: true, message: '数量不能为空', trigger: 'blur' }],
|
|
||||||
detId: [
|
|
||||||
{ required: true, message: '报废原因不能为空', trigger: 'change' },
|
|
||||||
],
|
|
||||||
|
|
||||||
logTime: [
|
|
||||||
{ required: true, message: '报废时间不能为空', trigger: 'change' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
showDetail: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
init(id, show) {
|
|
||||||
this.showDetail = show ? true : false;
|
|
||||||
this.dataForm.id = id || undefined;
|
|
||||||
if (id) {
|
|
||||||
// 编辑
|
|
||||||
getQualityScrapLog(id).then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
this.dataForm = res.data;
|
|
||||||
this.dataForm.logTime = res.data.logTime || null;
|
|
||||||
console.log('==================');
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this.dataForm.logTime = moment().format('yyyy-MM-DD hh:mm:ss');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 表单提交
|
|
||||||
dataFormSubmit() {
|
|
||||||
this.$refs['dataForm'].validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
if (this.dataForm.id) {
|
|
||||||
updateQualityScrapLog(this.dataForm).then((response) => {
|
|
||||||
this.$modal.msgSuccess('修改成功');
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
createQualityScrapLog(this.dataForm).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
getList() {
|
|
||||||
// 物料列表
|
|
||||||
getWorkOrderList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
this.workOrderList = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
getLineList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
this.lineList = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
getDetList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
this.detList = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.content,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
getTeamList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
this.teamList = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
|
||||||
formClear() {
|
|
||||||
this.$refs.dataForm.resetFields();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
@ -1,250 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="app-container">
|
|
||||||
<search-bar
|
|
||||||
:formConfigs="formConfig"
|
|
||||||
ref="searchBarForm"
|
|
||||||
@headBtnClick="buttonClick" />
|
|
||||||
<base-table
|
|
||||||
v-loading="dataListLoading"
|
|
||||||
:table-props="tableProps"
|
|
||||||
:page="listQuery.pageNo"
|
|
||||||
:limit="listQuery.pageSize"
|
|
||||||
:table-data="tableData">
|
|
||||||
<method-btn
|
|
||||||
v-if="tableBtn.length"
|
|
||||||
slot="handleBtn"
|
|
||||||
:width="120"
|
|
||||||
label="操作"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleClick" />
|
|
||||||
</base-table>
|
|
||||||
<pagination
|
|
||||||
:limit.sync="listQuery.pageSize"
|
|
||||||
:page.sync="listQuery.pageNo"
|
|
||||||
:total="listQuery.total"
|
|
||||||
@pagination="getDataList" />
|
|
||||||
<base-dialog
|
|
||||||
:dialogTitle="addOrEditTitle"
|
|
||||||
:dialogVisible="addOrUpdateVisible"
|
|
||||||
:before-close="handleCancel"
|
|
||||||
width="50%">
|
|
||||||
<add-or-update
|
|
||||||
ref="addOrUpdate"
|
|
||||||
@refreshDataList="successSubmit"></add-or-update>
|
|
||||||
<el-row slot="footer" type="flex" justify="end">
|
|
||||||
<el-col :span="12">
|
|
||||||
<el-button size="small" class="btnTextStyle" @click="handleCancel">
|
|
||||||
{{ this.addOrEditTitle === '详情' ? '关闭' : '取消' }}
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
v-show="this.addOrEditTitle !== '详情'"
|
|
||||||
type="primary"
|
|
||||||
size="small"
|
|
||||||
class="btnTextStyle"
|
|
||||||
@click="handleConfirm">
|
|
||||||
确定
|
|
||||||
</el-button>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</base-dialog>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import AddOrUpdate from './add-or-updata';
|
|
||||||
|
|
||||||
import basicPage from '../../core/mixins/basic-page';
|
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
|
||||||
import {
|
|
||||||
getQualityScrapLogPage,
|
|
||||||
deleteQualityScrapLog,
|
|
||||||
getWorkOrderList,
|
|
||||||
getTeamList,
|
|
||||||
} from '@/api/base/qualityScrapLog';
|
|
||||||
|
|
||||||
const tableProps = [
|
|
||||||
{
|
|
||||||
prop: 'createTime',
|
|
||||||
label: '添加时间',
|
|
||||||
filter: parseTime,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'workOrderName',
|
|
||||||
label: '工单',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'teamId',
|
|
||||||
label: '班组',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'detContent',
|
|
||||||
label: '报废原因',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'logTime',
|
|
||||||
label: '报废时间',
|
|
||||||
filter: parseTime,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'num',
|
|
||||||
label: '数量',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
export default {
|
|
||||||
mixins: [basicPage],
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
urlOptions: {
|
|
||||||
getDataListURL: getQualityScrapLogPage,
|
|
||||||
deleteURL: deleteQualityScrapLog,
|
|
||||||
// exportURL: exportFactoryExcel,
|
|
||||||
},
|
|
||||||
tableProps,
|
|
||||||
tableBtn: [
|
|
||||||
this.$auth.hasPermi(`base:quality-scrap-log:detail`)
|
|
||||||
? {
|
|
||||||
type: 'detail',
|
|
||||||
btnName: '详情',
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
this.$auth.hasPermi(`base:quality-scrap-log:update`)
|
|
||||||
? {
|
|
||||||
type: 'edit',
|
|
||||||
btnName: '编辑',
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
this.$auth.hasPermi(`base:quality-scrap-log:delete`)
|
|
||||||
? {
|
|
||||||
type: 'delete',
|
|
||||||
btnName: '删除',
|
|
||||||
}
|
|
||||||
: undefined,
|
|
||||||
].filter((v) => v),
|
|
||||||
tableData: [],
|
|
||||||
formConfig: [
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '工单名称',
|
|
||||||
selectOptions: [],
|
|
||||||
labelField: 'name',
|
|
||||||
valueField: 'id',
|
|
||||||
param: 'workOrderId',
|
|
||||||
filterable: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '班组',
|
|
||||||
selectOptions: [],
|
|
||||||
labelField: 'name',
|
|
||||||
valueField: 'id',
|
|
||||||
param: 'teamId',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '查询',
|
|
||||||
name: 'search',
|
|
||||||
color: 'primary',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'separate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: this.$auth.hasPermi('base:quality-scrap-det:create')
|
|
||||||
? 'button'
|
|
||||||
: '',
|
|
||||||
btnName: '新增',
|
|
||||||
name: 'add',
|
|
||||||
color: 'success',
|
|
||||||
plain: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
showDetail: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
AddOrUpdate,
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
this.getDict();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
otherMethods(val) {
|
|
||||||
if (val.type === 'detail') {
|
|
||||||
this.addOrEditTitle = '详情';
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.addOrUpdate.init(val.data.id, true);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// 获取数据列表
|
|
||||||
getDict() {
|
|
||||||
getWorkOrderList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
// console.log(response);
|
|
||||||
this.formConfig[0].selectOptions = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
// console.log(this.formConfig[0].selectOptions);
|
|
||||||
// this.listQuery.total = response.data.total;
|
|
||||||
});
|
|
||||||
getTeamList().then((res) => {
|
|
||||||
console.log(res);
|
|
||||||
// console.log(response);
|
|
||||||
this.formConfig[1].selectOptions = res.data.map((item) => {
|
|
||||||
return {
|
|
||||||
name: item.name,
|
|
||||||
id: item.id,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
// console.log(this.formConfig[0].selectOptions);
|
|
||||||
// this.listQuery.total = response.data.total;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
getDataList() {
|
|
||||||
this.dataListLoading = true;
|
|
||||||
this.urlOptions.getDataListURL(this.listQuery).then((response) => {
|
|
||||||
this.tableData = response.data.list;
|
|
||||||
this.listQuery.total = response.data.total;
|
|
||||||
this.dataListLoading = false;
|
|
||||||
});
|
|
||||||
},
|
|
||||||
buttonClick(val) {
|
|
||||||
switch (val.btnName) {
|
|
||||||
case 'search':
|
|
||||||
this.listQuery.pageNo = 1;
|
|
||||||
this.listQuery.pageSize = 10;
|
|
||||||
this.listQuery.workOrderId = val.workOrderId
|
|
||||||
? val.workOrderId
|
|
||||||
: undefined;
|
|
||||||
this.listQuery.teamId = val.teamId ? val.teamId : undefined;
|
|
||||||
this.getDataList();
|
|
||||||
break;
|
|
||||||
case 'reset':
|
|
||||||
this.$refs.searchBarForm.resetForm();
|
|
||||||
this.listQuery = {
|
|
||||||
pageSize: 10,
|
|
||||||
pageNo: 1,
|
|
||||||
total: 1,
|
|
||||||
};
|
|
||||||
this.getDataList();
|
|
||||||
break;
|
|
||||||
case 'add':
|
|
||||||
this.addOrEditTitle = '新增';
|
|
||||||
this.addOrUpdateVisible = true;
|
|
||||||
this.addOrUpdateHandle();
|
|
||||||
break;
|
|
||||||
case 'export':
|
|
||||||
this.handleExport();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
console.log(val);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
Loading…
Reference in New Issue
Block a user