From dbb3445dc720a8f36b3424e73f2e02a6b0f9deb6 Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期日, 27 四月 2025 11:31:57 +0800
Subject: [PATCH] art: 从沃克项目迁移设备管理代码到航宇

---
 src/views/dnc/common/DocumentModalForm.vue |   15 +++++----------
 1 files changed, 5 insertions(+), 10 deletions(-)

diff --git a/src/views/dnc/common/DocumentModalForm.vue b/src/views/dnc/common/DocumentModalForm.vue
index 804181d..d6e34da 100644
--- a/src/views/dnc/common/DocumentModalForm.vue
+++ b/src/views/dnc/common/DocumentModalForm.vue
@@ -58,10 +58,10 @@
         validatorRules: {
           docName: [
             { required: true, message: '璇疯緭鍏ユ枃妗e師鍚嶇О!' }
-          ],
+          ]
         },
         url: {
-          edit: '/mdc/mdcPartProcessInfo/edit'
+          edit: '/nc/doc/edit'
         }
       }
     },
@@ -86,14 +86,9 @@
         this.$refs.form.validate(valid => {
           if (valid) {
             that.confirmLoading = true
-            let httpUrl = ''
-            let method = 'post'
-            if (!this.model.id) {
-              httpUrl += this.url.add
-            } else {
-              httpUrl += this.url.edit
-            }
-            httpAction(httpUrl, this.model, method).then((res) => {
+            let httpUrl = this.url.edit
+            let method = 'put'
+            httpAction(httpUrl + `/${that.model.docId}`, this.model, method).then((res) => {
               if (res.success) {
                 that.$notification.success({
                   message: '娑堟伅',

--
Gitblit v1.9.3