中航光电热表web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1246 lines
51 KiB

<template>
7 months ago
<basic-container>
<avue-crud :option="option" :table-loading="loading" :data="data" v-model="form" v-model:page="page" ref="crud"
@row-del="rowDel" @search-change="searchChange" @search-reset="searchReset"
@selection-change="selectionChange" @current-change="currentChange" @size-change="sizeChange"
@refresh-change="refreshChange" @on-load="onLoad">
<template #body>
<el-tag style="width:100%;display:block;line-height:22px">有10个零件工艺即将到期请尽快维护有效期</el-tag>
7 months ago
</template>
<template #tip>
</template>
<template #menu-left>
7 months ago
<el-button type="primary" @click="setIndate()">有效期维护</el-button>
7 months ago
</template>
<template #menu-right="{ size }">
</template>
<template #menu="scope">
</template>
<template #bsWorkType.wtName="scope">
<span>
{{ scope.row.bsWorkType ? scope.row.bsWorkType.wtName : '-' }}
</span>
</template>
<template #name="{ row }">
<i :class="row.source" style="margin-right: 5px" />
<span>{{ row.name }}</span>
</template>
<template #source="{ row }">
<div style="text-align: center">
<i :class="row.source" />
</div>
</template>
</avue-crud>
7 months ago
<!-- 有效期维护 -->
<indateDailog :id="bcId" :set-crew-open="indateOpen" v-if="indateOpen" type="platingAssort"
@setIndateCancel="setIndateCancel" :title="'有效期维护'"></indateDailog>
7 months ago
</basic-container>
</template>
<script>
import { mapGetters } from 'vuex';
6 months ago
7 months ago
import indateDailog from "./components/indateDailog.vue"
7 months ago
export default {
components: {
6 months ago
7 months ago
indateDailog
7 months ago
},
data() {
return {
indateOpen: false,
7 months ago
bcId: null,
setCrewOpen: false,
form: {},
query: {},
loading: true,
selectionList: [],
parentId: '',
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
option: {
height: 'auto',
7 months ago
calcHeight: 32,
7 months ago
tip: false,
size: 'medium',
simplePage: true,
7 months ago
searchShow: true,
6 months ago
searchMenuSpan: 12,
7 months ago
searchIcon: true,
searchIndex: 3,
tree: false,
7 months ago
border: true,
selection: false,
7 months ago
viewBtn: true,
delBtn: false,
addBtn: false,
editBtn: false,
7 months ago
editBtnText: '修改',
addBtnIcon: ' ',
viewBtnIcon: ' ',
delBtnIcon: ' ',
editBtnIcon: ' ',
viewBtnText: '详情',
7 months ago
labelWidth: 120,
6 months ago
menuWidth: 80,
7 months ago
dialogWidth: 1200,
7 months ago
dialogClickModal: false,
7 months ago
searchEnter: true,
excelBtn: false,
filterBtn: true,
7 months ago
searchShowBtn: false,
7 months ago
columnSort: true,
excelBtn: true,
columnSort: true,
7 months ago
index: false,
showOverflowTooltip: true,
menuAlign: 'left',
6 months ago
gridBtn: false,
searchLabelPosition: 'left',
searchGutter: 24,
searchSpan: 6,
6 months ago
searchMenuPosition: 'right',
6 months ago
align: 'center',
7 months ago
column: [
{
label: '零件号',
prop: 'partCode',
search: true,
sortable: true,
overHidden: true,
width: 210,
headerAlign: 'center',
align: 'center',
searchLabelWidth: 60,
6 months ago
7 months ago
},
{
label: '零件名称',
prop: 'partName',
sortable: true,
search: false,
overHidden: true,
width: 170,
headerAlign: 'center',
align: 'left',
6 months ago
7 months ago
},
{
label: '零件类型',
prop: 'outTypeTitle',
sortable: true,
6 months ago
search: false,
7 months ago
overHidden: true,
type: 'select',
headerAlign: 'center',
align: 'center',
7 months ago
dicData: [
{
label: '烧结零件',
value: '1',
},
{
label: '热表零件',
value: '2',
}
],
width: 120,
6 months ago
7 months ago
},
{
label: '工艺路线',
prop: 'wayDetails',
sortable: true,
search: false,
overHidden: true,
headerAlign: 'center',
align: 'center',
6 months ago
7 months ago
},
{
label: '状态',
prop: 'taskStatus',
sortable: true,
search: true,
overHidden: true,
width: 120,
type: "select",
headerAlign: 'center',
align: 'center',
searchLabelWidth: 45,
7 months ago
dicData: [{
value: 0,
label: '待分派'
}, {
value: 1,
label: '已分派'
}, {
value: 2,
label: '已处理'
}],
},
{
label: '到期时间',
prop: 'assignTime',
sortable: true,
search: false,
overHidden: true,
width: 140,
headerAlign: 'center',
align: 'center',
6 months ago
7 months ago
},
{
label: '操作人',
prop: 'craftMan.userName',
bind: "craftMan.userName",
sortable: true,
search: false,
overHidden: true,
width: 120,
headerAlign: 'center',
align: 'center',
6 months ago
7 months ago
},
{
6 months ago
label: '维护时间',
7 months ago
prop: 'assignTime',
sortable: true,
search: false,
overHidden: true,
width: 140,
headerAlign: 'center',
align: 'center',
6 months ago
7 months ago
},
],
},
data: [],
title: '分派'
}
},
computed: {
...mapGetters(['userInfo', 'permission']),
permissionList() {
return {
addBtn: this.validData(this.permission.menu_add, false),
viewBtn: this.validData(this.permission.menu_view, false),
delBtn: this.validData(this.permission.menu_delete, false),
editBtn: this.validData(this.permission.menu_edit, false),
};
},
ids() {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
},
methods: {
7 months ago
// 有效期维护
setIndate() {
7 months ago
this.indateOpen = true
},
setIndateCancel(isRefresh) {
if (isRefresh) {
this.$refs.myTable.load();
}
this.indateOpen = false;
},
7 months ago
// 设置班组人员
setCrew(bcId) {
this.bcId = bcId;
this.setCrewOpen = true;
this.title = '分派'
},
// 设置班组人员弹框关闭
7 months ago
setCrewOpenCancel(isRefresh) {
7 months ago
if (isRefresh) {
this.$refs.myTable.load();
}
this.setCrewOpen = false;
},
initData() {
// getMenuTree().then(res => {
// const column = this.findObject(this.option.column, 'parentId');
// column.dicData = res.data.data;
// });
},
handleAdd(row) {
this.parentId = row.id;
const column = this.findObject(this.option.column, 'parentId');
column.value = row.id;
column.addDisabled = true;
this.$refs.crud.rowAdd();
},
// 保存
rowSave(row, done, loading) {
// add(row).then(
// res => {
// // 获取新增数据的相关字段
// const data = res.data.data;
// row.id = data.id;
// this.$message({
// type: 'success',
// message: '操作成功!',
// });
// // 数据回调进行刷新
// done(row);
// },
// error => {
// window.console.log(error);
// loading();
// }
// );
},
// 修改
rowUpdate(row, index, done, loading) {
// update(row).then(
// () => {
// this.$message({
// type: 'success',
// message: '操作成功!',
// });
// // 数据回调进行刷新
// done(row);
// },
// error => {
// window.console.log(error);
// loading();
// }
// );
},
rowDel(row, index, done) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
7 months ago
// return remove(row.id);
return true
7 months ago
})
.then(() => {
this.$message({
type: 'success',
message: '操作成功!',
});
// 数据回调进行刷新
done(row);
});
},
// 重置
searchReset() {
this.query = {};
this.parentId = 0;
this.onLoad(this.page);
},
// 搜索
searchChange(params, done) {
this.query = params;
this.parentId = '';
this.page.currentPage = 1;
this.onLoad(this.page, params);
done();
},
// 选中表格数据
selectionChange(list) {
this.selectionList = list;
},
//
selectionClear() {
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
// 打开弹框 前操作 打开表单前会执行beforeOpen方法
beforeOpen(done, type) {
if (['add', 'edit'].includes(type)) {
this.initData();
}
if (['edit', 'view'].includes(type)) {
7 months ago
// getMenu(this.form.id).then(res => {
// this.form = Object.assign(res.data.data, {
// hasChildren: this.form.hasChildren,
// });
// if (this.form.parentId === '0') {
// this.form.parentId = '';
// }
// });
7 months ago
}
done();
},
// 关闭 弹框 关闭表单前会执行beforeClose方法,
beforeClose(done) {
this.parentId = '';
const column = this.findObject(this.option.column, 'parentId');
column.value = '';
column.addDisabled = false;
done();
},
// 切换 页码
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
// 切换页面 数量
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
refreshChange() {
this.onLoad(this.page, this.query);
},
// 加载页面数据
onLoad(page, params = {}) {
this.loading = true;
7 months ago
// getLazyList(this.parentId, Object.assign(params, this.query)).then(res => {
// this.data = res.data.data;
this.data = [
{
"id": "1",
"children": [
{
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33177,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33177,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
},
{
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33176,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33176,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
}
],
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33184,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33184,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
},
{
"id": "2",
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33183,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33183,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
},
{
"id": "3",
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33182,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33182,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
},
{
"id": "4",
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
7 months ago
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33181,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33181,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
},
{
"id": "5",
"askForMold": true,
"assignMan": {
"accountId": 541,
"card": null,
"createTime": "2023-05-04",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 102,
"head": 0,
"jobName": "MES开发",
"keyValue": 541,
"ldapName": "cdl",
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CUIDIANLONG,CDL",
"ucUserId": null,
"updateTime": "2023-05-04 09:16:54",
"userCode": "cdl",
"userId": 541,
"userName": "崔殿龙",
"userSex": 1,
"userSources": "崔殿龙",
"userString": "541:A:崔殿龙",
"userType": "A"
},
"assignTime": "2023-11-10 09:46:34",
"craftMan": {
"accountId": 602,
"card": null,
"createTime": "2023-04-06",
"curStatus": 1,
"deleted": false,
"deptName": null,
"dimissionTime": null,
"factoryId": 1,
"head": 0,
"jobName": "软件工程师",
"keyValue": 521,
"ldapName": null,
"mail": null,
"mobile": null,
"pfDepartment": {
"appLink": null,
"createTime": "2022-08-31",
7 months ago
"deleted": false,
"deptCode": "001",
"deptId": 1,
"deptName": "MES开发部",
"deptType": 1,
"deptTypeTitle": "厂",
"keyValue": 1,
"memo": null,
"orders": "00",
"parentDeptId": null,
"parentPath": null,
"ucDeptId": null,
"updateTime": "2022-08-31 16:32:46"
7 months ago
},
"pinyinIndex": "CESHI,CS",
"ucUserId": null,
"updateTime": "2023-04-06 16:23:38",
"userCode": "0001",
"userId": 521,
"userName": "测试",
"userSex": 1,
"userSources": "测试",
"userString": "521:A:测试",
"userType": "A"
},
"craftManName": null,
"craftTime": null,
"craftWay": "LX08-05-002",
"createTime": "2023-04-14 18:15:54",
"dtId": 33180,
"ecnLink": null,
"ecnNo": "1815055",
"extension": false,
"finalPlate": null,
"inProduction": false,
"keyValue": 33180,
"material": null,
"memo": null,
"outFlag": false,
"outType": "2",
"outTypeTitle": "设计变更任务",
"partCode": "21E6-575-12846_001-B1",
"partId": "13924198",
"partName": "封接插座部件",
"plate": "XXXX",
"syncTime": "2023-04-14 18:20:08",
"taskStatus": 0,
"taskStatusTitle": "待分派",
"transferMess": null,
"versionNo": "C",
"wayDetails": "4(封接、表、涂色带)-库2",
"wipTake": "继续使用"
}
]
this.loading = false;
this.page.total = this.data.length
this.selectionClear();
7 months ago
// });
7 months ago
},
},
}
</script>