生产管理问题修改

dev-scheduling
zhangdi 4 weeks ago
parent 2dbf2e1ab9
commit ee126e943d
  1. 12
      src/views/productionManagement/sinTerWorkOrder/index.vue

@ -583,12 +583,14 @@ export default {
handlePrint() { handlePrint() {
if (this.selectionList.length == 0) { if (this.selectionList.length == 0) {
this.$message.error('请先选择数据'); this.$message.error('请先选择数据');
} else { return false
this.printForm = { }
quantity: 1, if(this.selectionList.length > 1){
}; this.$message.error('只能选择一条数据');
this.printDialog = true; return false
} }
window.open(window.PROCESS_FLOW_CARD_PRINT_SUPPORT+'?yold='+this.selectionList[0].yoId);
}, },
// //
handleAbnormal(row) { handleAbnormal(row) {

Loading…
Cancel
Save