工时统计

This commit is contained in:
zhangdingyu
2019-03-22 14:00:40 +08:00
parent 3fd43e9af4
commit c0969a4fc3
4 changed files with 368 additions and 3 deletions

View File

@@ -154,6 +154,7 @@ export default {
methods: {
// 查询表格数据
searchTable() {
console.log(this.id, this.name)
this.loading = true
this.tableData = []
this.Data = []
@@ -189,7 +190,7 @@ export default {
// 自家备料出库
handleChange1(row) {
change(row.工艺计划流水号, row.重量, row.单价).then(() => {
handlechange(row.工序流水号, this.id)
handlechange(row.工序流水号, '0000')
}).then(response => {
this.searchTable()
})
@@ -240,7 +241,7 @@ export default {
this.bianliang1.push(this.arrest[i].工艺计划流水号)
this.bianliang2.push(this.arrest[i].工序流水号)
}
change2(this.bianliang2, this.id, this.bianliang1).then(response => {
change2(this.bianliang2, '0000', this.bianliang1).then(response => {
this.searchTable2()
})
}