From 3931e2728f618d0090f129b2665bc1285c4440c3 Mon Sep 17 00:00:00 2001 From: gaoshp <291585735@qq.com> Date: 星期日, 03 十一月 2024 17:27:32 +0800 Subject: [PATCH] update --- src/views/console/basic-data/addProduct.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/console/basic-data/addProduct.vue b/src/views/console/basic-data/addProduct.vue index be471ae..97c98c2 100644 --- a/src/views/console/basic-data/addProduct.vue +++ b/src/views/console/basic-data/addProduct.vue @@ -122,7 +122,7 @@ }, methods: { showParentData() { - this.$HTTP.get("/api/blade-cps/product/tree?status=1").then(res=> { + this.$HTTP.get("/api/smis/product/tree?status=1").then(res=> { if(res.code == 200) { this.parentData = res.data; } @@ -153,7 +153,7 @@ var obj = Object.assign({},this.addDictForm); this.$refs.dialogForm.validate(async (valid) => { if (valid) { - this.$HTTP.post("/api/blade-cps/product/insert",obj).then(res=> { + this.$HTTP.post("/api/smis/product/insert",obj).then(res=> { if(res.code == 200) { this.$emit('success', this.addDictForm, this.mode); this.visible = false; -- Gitblit v1.9.3