yuansh 9 miesięcy temu
rodzic
commit
12c615c55b

+ 1 - 1
src/views/production/productionTotalOrder/modules/material.vue

@@ -592,7 +592,7 @@
         },
         changeQuantityExecuteIn(index,record){
             this.$confirm({
-                content: `是否确认修改`,
+                content: `是否保存修改后已执行数量?`,
                 onOk: () => {
                     postAction('/productionOrder/madeProductionOrders/updateProductionNum',record).then(res=>{
                       if(res.success){

+ 1 - 1
src/views/production/productionTotalOrder/modules/productDetails.vue

@@ -631,7 +631,7 @@
         },
         changeQuantityExecuteIn(index,record){
             this.$confirm({
-                content: `是否确认修改`,
+                content: `是否保存修改后已执行数量?`,
                 onOk: () => {
                     postAction('/productionOrder/madeProductionOrders/updateFinishedNum',record).then(res=>{
                       if(res.success){

+ 2 - 0
src/views/production/productionTotalOrder/modules/productionTotalOrderAdd.vue

@@ -517,12 +517,14 @@
                     if(this.$refs.productDetails.selectedRowKeys.length!==1){
                         this.$message.warning('请勾选一条数据!')
                     }else{
+                        this.$message.info('请修改已执行数量,鼠标移出后保存!')
                         this.$refs.productDetails.editNum(this.$refs.productDetails.selectedRowKeys[0])
                     }
                 }else if(this.activeKey=='material'){
                     if(this.$refs.material.selectedRowKeys.length!==1){
                         this.$message.warning('请勾选一条数据!')
                     }else{
+                        this.$message.info('请修改已执行数量,鼠标移出后保存!')
                         this.$refs.material.editNum(this.$refs.material.selectedRowKeys[0])
                     }
                 }