浏览代码

fix:发票管理提示语修改

ly 9 月之前
父节点
当前提交
ab9ef7fb4b
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      src/views/business/invoice/form.vue

+ 3 - 3
src/views/business/invoice/form.vue

@@ -620,7 +620,7 @@
         }
         form.value.status = 3
         updateInvoice(form.value).then(response => {
-            proxy.$modal.msgSuccess("修改成功");
+            proxy.$modal.msgSuccess("审核成功");
             visible.value = false;
             passFlag.value = false
             getList.value()
@@ -637,13 +637,13 @@
                 form.value.status = status
                 if (form.value.id != null) {
                     updateInvoice(form.value).then(response => {
-                        proxy.$modal.msgSuccess("提交成功");
+                        proxy.$modal.msgSuccess("修改成功");
                         visible.value = false;
                         getList.value()
                     });
                 } else {
                     addInvoice(form.value).then(response => {
-                        proxy.$modal.msgSuccess("提交成功");
+                        proxy.$modal.msgSuccess("新增成功");
                         visible.value = false;
                         getList.value()
                     });