This commit is contained in:
jiangfuzhuang
2020-02-06 16:56:21 +08:00
parent aed3f2c83e
commit 1aef5b7d2e
2 changed files with 25 additions and 2 deletions

View File

@@ -11,6 +11,18 @@ export function initProject() {
} }
}) })
} }
// 三表下达时间查询
export function DeliveryTimeSelect(num) {
return request({
url: '',
method: 'post',
data: {
type: '1',
name: 'PDM_三表下达时间_查询数据',
param: '组件流水号=' + num
}
})
}
// 组件查询 // 组件查询
export function searchgroup(num) { export function searchgroup(num) {
return request({ return request({

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<el-card> <el-card style="padding-top: 10px">
<el-row> <el-row>
<!-- <span>机床编号:</span>--> <!-- <span>机床编号:</span>-->
<el-select v-model="machineNumberValue" filterable placeholder="机床编号" size="small" style="margin:0px 10px" clearable @change="machineChange"> <el-select v-model="machineNumberValue" filterable placeholder="机床编号" size="small" style="margin:0px 10px" clearable @change="machineChange">
@@ -21,6 +21,7 @@
:label="item.label" :label="item.label"
:value="item.value"/> :value="item.value"/>
</el-select> </el-select>
<span style="margin-left: 50px">三表下达时间:&nbsp;&nbsp;{{ DeliveryTime }}</span>
<!-- <el-button type="success" size="small" icon="el-icon-search" style="margin-left: 15px" @click="searchTable()">查询</el-button>--> <!-- <el-button type="success" size="small" icon="el-icon-search" style="margin-left: 15px" @click="searchTable()">查询</el-button>-->
<!-- <el-button type="success" size="small" icon="el-icon-search" style="margin-left: 15px" @click="searchPart()">查询1</el-button>--> <!-- <el-button type="success" size="small" icon="el-icon-search" style="margin-left: 15px" @click="searchPart()">查询1</el-button>-->
<el-badge :value="value1" :max="99" class="item"> <el-badge :value="value1" :max="99" class="item">
@@ -567,13 +568,14 @@
</template> </template>
<script> <script>
import { initProject, searchgroup, searchTable, searchPart, searchPart1, searchTable1, addData, editData, deleteData, searchDetailed1, purchaseRequisition, purchaseRequisition1, purchaseRequisition2, MoveOut, MoveOut1, PurchasingDepartment, Production, PartCallbackInformation, PartCallbackInformation1, submit, submit1, Delete, Delete1, editStock, editNum, OutPart } from '@/api/ManufacturingCenter/PartAssignment' import { DeliveryTimeSelect, initProject, searchgroup, searchTable, searchPart, searchPart1, searchTable1, addData, editData, deleteData, searchDetailed1, purchaseRequisition, purchaseRequisition1, purchaseRequisition2, MoveOut, MoveOut1, PurchasingDepartment, Production, PartCallbackInformation, PartCallbackInformation1, submit, submit1, Delete, Delete1, editStock, editNum, OutPart } from '@/api/ManufacturingCenter/PartAssignment'
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import Cookie from 'js-cookie' import Cookie from 'js-cookie'
export default { export default {
inject: ['reload'], inject: ['reload'],
data() { data() {
return { return {
DeliveryTime: '', // 三表下达时间
projectFloatValue: '', projectFloatValue: '',
machineNumberValue: '', machineNumberValue: '',
machineFloatValue: '', machineFloatValue: '',
@@ -869,12 +871,21 @@ export default {
} }
}) })
}, },
// 三表下达时间查询
DeliveryTimeSelect() {
this.DeliveryTime = ''
DeliveryTimeSelect(this.groupNumberValue).then(response => {
console.log(response.data)
this.DeliveryTime = response.data[0].操作日期.substring(0, 10)
})
},
searchTable() { searchTable() {
this.loading = true this.loading = true
if (this.machineNumberValue !== '') { if (this.machineNumberValue !== '') {
this.check2 = 1 this.check2 = 1
} else { this.check2 = 0 } } else { this.check2 = 0 }
if (this.groupNumberValue !== '') { if (this.groupNumberValue !== '') {
this.DeliveryTimeSelect() // 三表下达时间查询
this.check3 = 1 this.check3 = 1
} else { this.check3 = 0 } } else { this.check3 = 0 }
searchTable(this.machineNumberValue, this.check2, this.groupNumberValue, this.check3).then(response => { searchTable(this.machineNumberValue, this.check2, this.groupNumberValue, this.check3).then(response => {