From ecd3de3cd507a17acbfa0db4c63db0882b108269 Mon Sep 17 00:00:00 2001 From: yanggongyan <929128837@qq.com> Date: Wed, 5 Feb 2020 10:28:50 +0800 Subject: [PATCH 01/17] =?UTF-8?q?=E6=B8=AC=E8=A9=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ContractDetailsInquiry.js | 0 src/utils/curd.js | 24 +++ src/utils/request.js | 11 +- .../ContractDetailsInquiry/index.vue | 106 +++++++++- .../MonthEndHourAccounting/index.vue | 2 +- .../ContractInformationManagement/index.vue | 56 +++--- .../WorkshopProcurement/ExcelExport/index.vue | 186 ++++++++++++++++++ 7 files changed, 345 insertions(+), 40 deletions(-) delete mode 100644 src/api/ManufacturingCenter/ContractDetailsInquiry.js create mode 100644 src/views/WorkshopProcurement/ExcelExport/index.vue diff --git a/src/api/ManufacturingCenter/ContractDetailsInquiry.js b/src/api/ManufacturingCenter/ContractDetailsInquiry.js deleted file mode 100644 index e69de29b..00000000 diff --git a/src/utils/curd.js b/src/utils/curd.js index 664ddb7e..5bbc55eb 100644 --- a/src/utils/curd.js +++ b/src/utils/curd.js @@ -5,6 +5,30 @@ Created by hedekun import { type } from './tool' // type判断传入值的类型,比typeof更详细 export default { install(Vue) { + Vue.prototype.CreateData = function(type, name, data, pageSize, pageList) { + var paramStr = '' + var paramarray = [] + if (data !== undefined) { + for (let i = 0; i < data.length; i++) { + paramarray.push({ + name: data[i][0], + value: data[i][1], + type: data[i][2], + output: data[i][3] + }) + } + paramStr = JSON.stringify(paramarray) + } + var obj = [] + obj[0] = {} + obj[0].type = type + obj[0].name = name + obj[0].param = paramStr + obj[0].pageSize = pageSize + obj[0].pageList = pageList + var numn = JSON.stringify(obj[0]) + return numn + } // 用于打开增加框,方法能重置表单,并使表单内容回到初始化状态。 // 传入参数 // 1)表单名称,字符串形式如'form',必须 diff --git a/src/utils/request.js b/src/utils/request.js index 4112ffa0..c06db966 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -17,8 +17,8 @@ export const uploadInvoiceScan1 = `http://192.168.1.231:8411/submit/uploadInvoic export const download = `http://192.168.1.231:8411/submit/downloadFile.ashx` // ContractInformationManagement export const uploadPerson = `http://192.168.1.231:8411/submit/uploadPerson.ashx` export const uploadOP = `http://192.168.1.231:8411/submit/uploadOP.ashx` -export const url = `http://192.168.0.100:8074/submit/MESCommonBase.ashx` // 采购件入库、离线件入库 -export const ExcelDownLoad = 'http://192.168.0.100:8074/submit/downloadFile.ashx' // 导出excel +export const url = `http://192.168.1.5:8079/submit/MESCommonBase.ashx` // 采购件入库、离线件入库 +export const ExcelDownLoad = 'http://192.168.1.5:8079/submit/downloadFile.ashx' // 导出excel // 技术中心程序发布时要更改下面所有的IP到0段 export const ServerIP = `http://192.168.1.231:8411/webpage/file/` export const uploadFileMachine = `http://192.168.1.231:8411/submit/uploadFileMachine.ashx` // 机床总图 发布时改成0.231 @@ -26,12 +26,7 @@ export const downloadFileMachine = `http://192.168.1.231:8411/submit/downloadFil export const MESUploadFile = `http://192.168.1.231:8411/submit/MESUploadFile.ashx` export const MESDownloadFile = `http://192.168.1.231:8411/submit/MESDownloadFile.ashx` const service = axios.create({ -<<<<<<< HEAD - - baseURL: `http://192.168.0.100:8074/submit/MESCommonBase.ashx`, -======= - baseURL: `http://192.168.1.231:8411/submit/MESCommonBase.ashx`, ->>>>>>> 4fb54f4d3ea13e7c327b17bde7ac4ffc21b9b821 + baseURL: `http://192.168.1.5:8079/submit/MESCommonBase.ashx`, timeout: 1500000 // 请求超时时间 }) export default service diff --git a/src/views/ManufacturingCenter/ContractDetailsInquiry/index.vue b/src/views/ManufacturingCenter/ContractDetailsInquiry/index.vue index e4cccfff..2daef2e2 100644 --- a/src/views/ManufacturingCenter/ContractDetailsInquiry/index.vue +++ b/src/views/ManufacturingCenter/ContractDetailsInquiry/index.vue @@ -2,7 +2,7 @@
项目名称 - + 机床名称 - + + 分组 + + + + 规格及型号 + + 加工总工时(小时): + + 计划总工时(小时): + + 查询 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -29,7 +123,13 @@ export default { project: [], projectValue: '', // 项目名称 machineValue: '', // 机床名称 - machine: [] + machine: [], + part: [], // 分組 + partValue: '', + specificationValue: '', // 规格型号 + totalProcessingHours: '', // 加工总工时 + totalPlannedHours: '', // 计划总工时 + tableData: [] // 详情表 } }, created() { diff --git a/src/views/ManufacturingCenter/MonthEndHourAccounting/index.vue b/src/views/ManufacturingCenter/MonthEndHourAccounting/index.vue index 4a51526e..84431c84 100644 --- a/src/views/ManufacturingCenter/MonthEndHourAccounting/index.vue +++ b/src/views/ManufacturingCenter/MonthEndHourAccounting/index.vue @@ -69,7 +69,7 @@ diff --git a/src/views/MarketingCenter/ContractInformationManagement/index.vue b/src/views/MarketingCenter/ContractInformationManagement/index.vue index a832a446..ecab7e45 100644 --- a/src/views/MarketingCenter/ContractInformationManagement/index.vue +++ b/src/views/MarketingCenter/ContractInformationManagement/index.vue @@ -427,7 +427,7 @@
- + - + @@ -340,16 +348,16 @@ {{ scope.row.出库数量1 }} - - - + + + + + + @@ -358,7 +366,7 @@ - + @@ -384,7 +392,7 @@ - + { if (res.data[0].result === '1') { this.$message.success('操作成功') - this.pickingListNumber = '' this.searchList() } else { this.$message.error('操作失败') @@ -580,67 +588,68 @@ export default { }, // 标准件 searchTable0() { - let check1, check2, check3, check4, check5, check6 + let check1, check2, check3 this.machineNumberValue ? check1 = 1 : check1 = 0 this.groupNumberValue ? check2 = 1 : check2 = 0 this.Name ? check3 = 1 : check3 = 0 - this.materialModel ? check4 = 1 : check4 = 0 - this.materialSpec ? check5 = 1 : check5 = 0 - if (this.PickingValue !== 0 && this.PickingValue !== 1) { - check6 = 0 + console.log(this.PickingValue, 111) + if (this.PickingValue === false) { + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 0, this.pageCurrent0, this.pageSize0, 1).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } else { - check6 = 1 + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 1, this.pageCurrent0, this.pageSize0, 1).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } - searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, check4, this.materialModel, check5, this.materialSpec, check6, this.PickingValue, this.pageCurrent0, this.pageSize0, 1).then(response => { - this.tableData0 = response.data.rows - this.total0 = response.data.total - }) }, // 外购件 searchTable1() { - let check1, check2, check3, check4, check5, check6 + let check1, check2, check3 this.machineNumberValue ? check1 = 1 : check1 = 0 this.groupNumberValue ? check2 = 1 : check2 = 0 this.Name ? check3 = 1 : check3 = 0 - this.materialModel ? check4 = 1 : check4 = 0 - this.materialSpec ? check5 = 1 : check5 = 0 - if (this.PickingValue !== 0 && this.PickingValue !== 1) { - check6 = 0 + console.log(this.PickingValue, 111) + if (this.PickingValue === false) { + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 0, this.pageCurrent1, this.pageSize1, 2).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } else { - check6 = 1 + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 1, this.pageCurrent1, this.pageSize1, 2).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } - searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, check4, this.materialModel, check5, this.materialSpec, check6, this.PickingValue, this.pageCurrent1, this.pageSize1, 2).then(response => { - this.tableData1 = response.data.rows - this.total1 = response.data.total - }) }, // 基本件 searchTable2() { - let check1, check2, check3, check4, check5, check6 + let check1, check2, check3 this.machineNumberValue ? check1 = 1 : check1 = 0 this.groupNumberValue ? check2 = 1 : check2 = 0 this.Name ? check3 = 1 : check3 = 0 - this.materialModel ? check4 = 1 : check4 = 0 - this.materialSpec ? check5 = 1 : check5 = 0 - if (this.PickingValue !== 0 && this.PickingValue !== 1) { - check6 = 0 + console.log(this.PickingValue, 111) + if (this.PickingValue === false) { + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 0, this.pageCurrent2, this.pageSize2, 3).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } else { - check6 = 1 + searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, 1, 1, this.pageCurrent2, this.pageSize2, 3).then(response => { + this.tableData0 = response.data.rows + this.total0 = response.data.total + }) } - searchTable(check1, this.machineNumberValue, check2, this.groupNumberValue, check3, this.Name, check4, this.materialModel, check5, this.materialSpec, check6, this.PickingValue, this.pageCurrent2, this.pageSize2, 3).then(response => { - this.tableData2 = response.data.rows - this.total2 = response.data.total - }) }, // 离线采购件 searchTable4() { this.listLoading = true this.tableDataBasic = [] - let check1, check2, check3 + let check1 this.Name ? check1 = 1 : check1 = 0 - this.materialSpec ? check2 = 1 : check2 = 0 - this.materialModel ? check3 = 1 : check3 = 0 - searchPart(check1, this.Name, check2, this.materialSpec, check3, this.materialModel, this.pageCurrent4, this.pageSize4).then(response => { + searchPart(check1, this.Name, this.pageCurrent4, this.pageSize4).then(response => { this.tableDataBasic = response.data.rows this.total4 = response.data.total this.listLoading = false @@ -689,10 +698,11 @@ export default { }, // 查询领料单列表 searchList() { - let check, isElectrical - this.pickingListNumber ? check = 1 : check = 0 + let check, isElectrical, check1 + this.pickingListPeople ? check = 1 : check = 0 + this.startTime ? check1 = 1 : (check1 = 0, this.startTime = '') Number(this.token) === 37 || Number(this.token) === 36 || Number(this.token) === 35 ? isElectrical = 1 : isElectrical = 0 // 35电工 36电气部长 37电气副部长 - searchList(this.pageCurrent3, this.pageSize3, check, this.pickingListNumber, isElectrical).then(response => { + searchList(this.pageCurrent3, this.pageSize3, check, this.pickingListPeople, isElectrical, check1, this.startTime[0], this.startTime[1]).then(response => { this.pickListTable1 = response.data.rows this.total3 = response.data.total }) @@ -754,7 +764,6 @@ export default { request(param).then(res => { if (res.data[0].result === '1') { this.$message.success('操作成功') - this.pickingListNumber = '' this.searchList() } else { this.$message.error('操作失败') @@ -793,6 +802,9 @@ export default { handleSelectionChange(val) { this.multipleSelection = val }, + handleSelectionChange1(val) { + this.multipleSelection1 = val + }, // 选入 selectInto() { if (this.PartType === '离线采购件') { diff --git a/src/views/ManufacturingCenter/SparePartsForScrap/index.vue b/src/views/ManufacturingCenter/SparePartsForScrap/index.vue index c32bcfb9..f56a6752 100644 --- a/src/views/ManufacturingCenter/SparePartsForScrap/index.vue +++ b/src/views/ManufacturingCenter/SparePartsForScrap/index.vue @@ -105,7 +105,7 @@ width="80px" > @@ -199,7 +199,7 @@ -
停产后,将重新补投两种零件,一种是接着加工(执行原来的加工计划),另一种是从第一序重新加工(重新制定零件的加工计划),补投的零件号后加B
+
报废后,将重新补投两种零件,一种是接着加工(执行原来的加工计划),另一种是从第一序重新加工(重新制定零件的加工计划),补投的零件号后加B
补投接着加工零件数量 diff --git a/src/views/TechnologyCenter/QueryParts/index.vue b/src/views/TechnologyCenter/QueryParts/index.vue index 0cdeaa5e..4fe01283 100644 --- a/src/views/TechnologyCenter/QueryParts/index.vue +++ b/src/views/TechnologyCenter/QueryParts/index.vue @@ -25,8 +25,8 @@ :label="item.label" :value="item.value"/> - 查询 - 加急件 + 查询 + 加急件
From 9ca5d2448919f3572ff67893efa52e2671a8a7e8 Mon Sep 17 00:00:00 2001 From: Vergil <974548713@qq.com> Date: Thu, 6 Feb 2020 17:27:13 +0800 Subject: [PATCH 03/17] ip --- src/utils/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/request.js b/src/utils/request.js index 5948c0da..1840b290 100644 --- a/src/utils/request.js +++ b/src/utils/request.js @@ -26,7 +26,7 @@ export const downloadFileMachine = `http://123.56.95.229:8010/submit/downloadFil export const MESUploadFile = `http://123.56.95.229:8010/submit/MESUploadFile.ashx` export const MESDownloadFile = `http://123.56.95.229:8010/submit/MESDownloadFile.ashx` const service = axios.create({ - baseURL: `http://192.168.1.5:8079/submit/MESCommonBase.ashx`, + baseURL: `http://123.56.95.229:8010/submit/MESCommonBase.ashx`, timeout: 1500000 // 请求超时时间 }) export default service From 5c02dac392f37ce7f9155dd2e6a8bdd704da69bb Mon Sep 17 00:00:00 2001 From: sujiaqi Date: Thu, 6 Feb 2020 23:06:25 +0800 Subject: [PATCH 04/17] =?UTF-8?q?=E5=88=B6=E9=80=A0=E4=B8=AD=E5=BF=83-?= =?UTF-8?q?=E5=88=B6=E9=80=A0=EF=BC=88=E9=9B=B6=E4=BB=B6=E5=88=86=E9=85=8D?= =?UTF-8?q?=EF=BC=8C=E7=94=9F=E4=BA=A7=E8=AE=A1=E5=88=92=EF=BC=8C=E7=94=9F?= =?UTF-8?q?=E4=BA=A7=E8=83=BD=E5=8A=9B=E5=B9=B3=E8=A1=A1=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../InitialProduction/index.vue | 14 ++++++++------ .../ManufacturingCenter/PartAssignment/index.vue | 10 +++++----- .../ProductionCapacityBalance/index.vue | 16 ++++++++-------- .../OutsourcingPaymentPlanManagement/index.vue | 4 ++-- 4 files changed, 23 insertions(+), 21 deletions(-) diff --git a/src/views/ManufacturingCenter/InitialProduction/index.vue b/src/views/ManufacturingCenter/InitialProduction/index.vue index 5fe39080..f268c55d 100644 --- a/src/views/ManufacturingCenter/InitialProduction/index.vue +++ b/src/views/ManufacturingCenter/InitialProduction/index.vue @@ -29,7 +29,7 @@ :label="item.label" :value="item.value"/> - 查询 + 查询 @@ -103,7 +103,7 @@ type="selection" align="center" width="35"/> - + @@ -148,18 +148,20 @@ {{ scope.row.零件类型名称 }} - + -
- -
+ + + + + + + + + + + 离线备料单号: 供应商: - + - 查询 + 查询 创建采购计划单 @@ -137,17 +137,17 @@
-
- -
+ + + + + + + + + + + @@ -402,7 +402,7 @@ export default { }) } }) - this.getTableData() + // this.getTableData() } }, // 获取组号 getGroup() { @@ -415,7 +415,7 @@ export default { value: response.data[i].组件流水号 }) } - this.Group = response.data[0].组件流水号 + // this.Group = response.data[0].组件流水号 }) this.getTableData() }, @@ -442,6 +442,10 @@ export default { // 按条件查询 getTableData() { this.tableData10 = [] + if (!this.Machine && !this.Group && !this.number) { + this.$message.error('请输入筛选条件!') + return + } if (this.Machine === '') { this.checkbox_Machine = 0 } else { @@ -457,21 +461,20 @@ export default { } else { this.checkbox_number = 1 } - getTable(this.checkbox_Machine, this.Machine, this.checkbox_Group, this.Group, this.checkbox_number, this.number, '', '', this.pageCurrent10, this.pageSize10, this.ordername, this.order).then(response => { - if (response.data.rows.length !== 0) { - for (let i = 0; i < response.data.rows.length; i++) { + getTable(this.checkbox_Machine, this.Machine, this.checkbox_Group, this.Group, this.checkbox_number, this.number, '', '', this.ordername, this.order).then(response => { + if (response.data.length !== 0) { + for (let i = 0; i < response.data.length; i++) { this.tableData10.push({ - 工艺计划流水号: response.data.rows[i].工艺计划流水号, - 机床图号: response.data.rows[i].机床图号, - 组号: response.data.rows[i].组号, - 零件图号: response.data.rows[i].零件图号, - 零件名称: response.data.rows[i].零件名称, - 批次数量: response.data.rows[i].批次数量, - 材料: response.data.rows[i].材料 + 工艺计划流水号: response.data[i].工艺计划流水号, + 机床图号: response.data[i].机床图号, + 组号: response.data[i].组号, + 零件图号: response.data[i].零件图号, + 零件名称: response.data[i].零件名称, + 批次数量: response.data[i].批次数量, + 材料: response.data[i].材料 }) } } - this.total10 = response.data.total this.loading = false }) }, @@ -492,11 +495,16 @@ export default { } }, searchTable() { + this.tableData = [] + if (!this.purchasingOrder && !this.supplierName) { + this.$message.error('请输入筛选条件!') + return + } this.purchasingOrder ? this.check3 = 1 : this.check3 = 0 this.supplierName ? this.check4 = 1 : this.check4 = 0 - searchPurchaseOrder(this.pageCurrent2, this.pageSize2, this.check3, this.purchasingOrder, this.check4, this.supplierName).then(response => { - this.tableData = response.data.rows - this.total2 = response.data.total + searchPurchaseOrder(this.check3, this.purchasingOrder, this.check4, this.supplierName).then(response => { + this.tableData = response.data + // this.total2 = response.data.total }) }, handleSizeChange2(val) { // 采购单列表分页 diff --git a/src/views/WorkshopProcurement/OutsourcingMaterialsSearch/index.vue b/src/views/WorkshopProcurement/OutsourcingMaterialsSearch/index.vue index ba585e0b..2d16abbb 100644 --- a/src/views/WorkshopProcurement/OutsourcingMaterialsSearch/index.vue +++ b/src/views/WorkshopProcurement/OutsourcingMaterialsSearch/index.vue @@ -1,6 +1,6 @@
- + @@ -122,6 +144,37 @@ export default { name: 'Index', data() { return { + ordername: '', + order: '', + dateRange: '', + expands: [], + pickerOptions: { + shortcuts: [{ + text: '上季度', + onClick(picker) { + const end = new Date() + const start = new Date() + start.setTime(end.getTime() - 3600 * 1000 * 24 * 30 * 3) + picker.$emit('pick', [start, end]) + } + }, { + text: '过去半年', + onClick(picker) { + const end = new Date() + const start = new Date() + start.setTime(end.getTime() - 3600 * 1000 * 24 * 366 / 2) + picker.$emit('pick', [start, end]) + } + }, { + text: '过去一年', + onClick(picker) { + const end = new Date() + const start = new Date() + start.setTime(end.getTime() - 3600 * 1000 * 24 * 365) + picker.$emit('pick', [start, end]) + } + }] + }, supplierNameValue: '', supplierNames: [], partNumber: '', @@ -145,7 +198,7 @@ export default { }, created() { this.fetchData() - this.getTableData() + // this.getTableData() }, methods: { formatJson(filterVal, jsonData) { @@ -154,7 +207,8 @@ export default { })) }, exportExcel() { - let check, check1, check2 + let check, check1, check2, check3 + this.dateRange ? check3 = 1 : (check3 = 0, this.dateRange = '') this.supplierNameValue ? check = 1 : check = 0 this.partNumber ? check1 = 1 : check1 = 0 if (this.MaterialsValue !== '' && this.MaterialsValue !== null) { @@ -162,11 +216,11 @@ export default { } else { check2 = 0 } - searchTablesheet(check, this.supplierNameValue, check1, this.partNumber, check2, this.MaterialsValue).then(res => { + searchTablesheet(check, this.supplierNameValue, check1, this.partNumber, check2, this.MaterialsValue, check3, this.dateRange[0], this.dateRange[1], this.ordername, this.order).then(res => { console.log(res.data, 11) import('@/vendor/Export2Excel').then(excel => { - const tHeader = ['备料状态', '供应商', '物料编码', '物料名称', '材料', '备件件数', '备料时间', '到货件数', '到货时间', '结算时间'] - const filterVal = ['是否到货', '供应商名称', '物料编码', '零件名称', '材料', '采购数量', '下单日期', '到货数量', '日期', '开票时间'] + const tHeader = ['备料状态', '供应商', '物料编码', '物料名称', '材料', '备料件数', '备料时间', '到货件数', '到货时间', '结算时间'] + const filterVal = ['备料状态', '供应商名称', '物料编码', '零件名称', '材料', '采购数量', '下单日期', '到货数量', '日期', '开票时间'] const list = res.data const data = this.formatJson(filterVal, list) excel.export_json_to_excel({ @@ -189,9 +243,31 @@ export default { } }) }, + // 按供应商名称,下单日期,零件名称,材料 + sortChange(column) { + console.log(column + '-' + column.prop + '-' + column.order, 11111) + if (column.prop === '供应商名称') { + this.ordername = 1 + } else if (column.prop === '零件名称') { + this.ordername = 2 + } else if (column.prop === '材料') { + this.ordername = 3 + } else if (column.prop === '下单日期') { + this.ordername = 4 + } else { + this.ordername = '' + } + if (column.order === 'ascending') { + this.order = 1 + } else if (column.order === 'descending') { this.order = 2 } else { + this.order = '' + } + this.getTableData() + }, getTableData() { this.loading = true - let check, check1, check2 + let check, check1, check2, check3 + this.dateRange ? check3 = 1 : (check3 = 0, this.dateRange = '') this.supplierNameValue ? check = 1 : check = 0 this.partNumber ? check1 = 1 : check1 = 0 if (this.MaterialsValue !== '' && this.MaterialsValue !== null) { @@ -199,8 +275,8 @@ export default { } else { check2 = 0 } - console.log(this.MaterialsValue, check2, 123) - searchTable(check, this.supplierNameValue, check1, this.partNumber, check2, this.MaterialsValue, this.pageSize, this.pageCurrent).then(response => { + searchTable(check, this.supplierNameValue, check1, this.partNumber, check2, this.MaterialsValue, check3, this.dateRange[0], this.dateRange[1], this.ordername, this.order, this.pageSize, this.pageCurrent).then(response => { + console.log(response) this.tableData = response.data.rows this.total = response.data.total this.loading = false diff --git a/src/views/WorkshopProcurement/RequestOutsourcingMaterials/index.vue b/src/views/WorkshopProcurement/RequestOutsourcingMaterials/index.vue index 0790b283..83587c30 100644 --- a/src/views/WorkshopProcurement/RequestOutsourcingMaterials/index.vue +++ b/src/views/WorkshopProcurement/RequestOutsourcingMaterials/index.vue @@ -300,7 +300,7 @@ export default { this.searchTable1() }, requestFund() { // 请款 - this.searchTable01() + // this.searchTable01() this.dialogVisible2 = true this.supplierValue = '' this.fetchData() // 重新获取供应商 @@ -333,7 +333,7 @@ export default { } else { this.$message.error('请款失败') } }) } else { - this.$message.error('请选择需要请款的合同') + this.$message.error('请选择供应商及对应请款合同') } }, searchTable02(row) { // 查看详情(请款信息包含的合同) From 55cb139df8ccfe7756dcfeefb01626ac373e723c Mon Sep 17 00:00:00 2001 From: jiangfuzhuang Date: Fri, 7 Feb 2020 14:26:18 +0800 Subject: [PATCH 08/17] 997y --- src/assets/img/blueTWinkle.gif | Bin 0 -> 103 bytes src/assets/img/grayTwinkle.gif | Bin 0 -> 103 bytes src/assets/img/greenTwinkle.gif | Bin 0 -> 103 bytes src/assets/img/yellowTwinkle.gif | Bin 0 -> 103 bytes .../EquipmentMonitoring/index.vue | 1159 +++++++++-------- .../PartAssignment/index.vue | 1 + 6 files changed, 605 insertions(+), 555 deletions(-) create mode 100644 src/assets/img/blueTWinkle.gif create mode 100644 src/assets/img/grayTwinkle.gif create mode 100644 src/assets/img/greenTwinkle.gif create mode 100644 src/assets/img/yellowTwinkle.gif diff --git a/src/assets/img/blueTWinkle.gif b/src/assets/img/blueTWinkle.gif new file mode 100644 index 0000000000000000000000000000000000000000..42deff1d1ad078e172bb2234c2ba93ca0011b110 GIT binary patch literal 103 zcmZ?wbhEHb|Nl$=Y!BaLI<>fByp2At|v20CqPQvH$=8 literal 0 HcmV?d00001 diff --git a/src/assets/img/grayTwinkle.gif b/src/assets/img/grayTwinkle.gif new file mode 100644 index 0000000000000000000000000000000000000000..9a11d358f85608c30cb1f70923b71f7b108221cf GIT binary patch literal 103 zcmZ?wbhEHbKck<4fkE*n3quNs{?F~_8WQa67~pE8XTZz|6w(1=pi(Xd d1}2V{{*|ZS@+WJ<)x#wle*gUoREMO*8UTjH7vBH? literal 0 HcmV?d00001 diff --git a/src/assets/img/greenTwinkle.gif b/src/assets/img/greenTwinkle.gif new file mode 100644 index 0000000000000000000000000000000000000000..0dda29f2fce9cd89a4390364ef86b462ba7832cf GIT binary patch literal 103 zcmZ?wbhEHb - -
- -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME137 }}
- +
+ +
+ +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME137 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME138 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME139 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME140 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME141 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME142 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME143 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME144 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME136 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME150 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME102 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME103 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME104 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME105 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME145 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME106 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME1061 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME107 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME108 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME109 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME1091 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME110 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME111 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME112 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME113 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME114 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME101 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME149 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME115 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME116 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME117 }}
+
+ + +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME118 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME119 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME120 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME121 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME122 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME123 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME124 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME125 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME126 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME127 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME128 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME129 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME130 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME131 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME132 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME133 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME1331 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME134 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + +
+
{{ OPNAME135 }}
+ +
+ + +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + + +
{{ OPNAME146 }}
+
+
+
+ +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ + + +
{{ OPNAME148 }}
+
+
+
+ +
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
+
+ +
{{ OPNAME147 }}
+ + +
+
+
+ +
+
+ +
{{ 机床总装 }}
+
+
+ + +
+
+ +
{{ 部件装配 }}
+
+
+ +
+ +
+
+ 电脑关机
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME138 }}
- +
+
+ 设备开机
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME139 }}
- +
+
+ 设备工作
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME140 }}
- +
+
+ 设备关机
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME141 }}
- +
+
+ 电流计故障
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME142 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME143 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME144 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME136 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME150 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME102 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME103 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME104 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME105 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME145 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME106 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME1061 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME107 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME108 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME109 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME1091 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME110 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME111 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME112 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME113 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME114 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME101 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME149 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME115 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME116 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME117 }}
-
- - -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME118 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME119 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME120 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME121 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME122 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME123 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME124 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME125 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME126 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME127 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME128 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME129 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME130 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME131 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME132 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME133 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME1331 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME134 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - -
-
{{ OPNAME135 }}
- -
- - -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - - -
{{ OPNAME146 }}
-
-
-
- -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- - - -
{{ OPNAME148 }}
-
-
-
- -
{{ tooltip1 }}
{{ tooltip2 }}
{{ tooltip3 }}
单击查看MES系统
-
- -
{{ OPNAME147 }}
- - -
-
-
- -
-
- -
{{ 机床总装 }}
-
-
- - -
-
- -
{{ 部件装配 }}
-
-
- -
- + + +