From 2752755c47533f191aa886f2c96065121ecd275c Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期五, 21 三月 2025 17:26:39 +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