This commit is contained in:
liushuai
2019-03-25 10:25:49 +08:00
parent 6bc14761a4
commit 2096e2aa6d
20 changed files with 1896 additions and 165 deletions

View File

@@ -186,7 +186,7 @@
@current-change="handleCurrentChange"/>
<!--<el-checkbox v-model="checked_baitu" style="margin-top:0px">是否白图</el-checkbox>-->
<!--<el-checkbox v-model="checked_gaonandu">是否高难度</el-checkbox>-->
<el-button type="primary" size="small" style="float:right;margin-top:10px" @click="production">投产</el-button>
<el-button :loading="listLoading3" type="primary" size="small" style="float:right;margin-top:10px" @click="production">投产</el-button>
</div>
</div>
</el-card>
@@ -350,6 +350,7 @@ export default {
jieguo: 0,
value: '',
title: null,
listLoading3: false,
temp: 0,
ComponentflowNumber: '', // 组件零件基本件流水号
TypeflowNumber: '',
@@ -787,6 +788,7 @@ export default {
},
// 投产
production() {
this.listLoading3 = true
this.result = 0
if (this.time_machiningFinish === '' || this.time_machiningFinish === null) {
this.$message.error('请输入加工结束时间')
@@ -836,7 +838,9 @@ export default {
this.checked_baitu = false
this.checked_gaonandu = false
this.tableData1 = []
this.listLoading3 = false
} else if (response.data[0].result === '0') {
this.listLoading3 = false
this.$message.error('投产失败')
}
})