From f22f95e24d8c338566da772bfb71253758c9d5c3 Mon Sep 17 00:00:00 2001
From: lzhe <lzhe@example.com>
Date: 星期五, 08 十一月 2024 15:01:19 +0800
Subject: [PATCH] 1
---
src/views/console/product-process/process-route/add-craft.vue | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/views/console/product-process/process-route/add-craft.vue b/src/views/console/product-process/process-route/add-craft.vue
index 60efdb8..0182c7b 100644
--- a/src/views/console/product-process/process-route/add-craft.vue
+++ b/src/views/console/product-process/process-route/add-craft.vue
@@ -129,7 +129,7 @@
groupCategory: 1,
groupType: "group_workstation"
}
- this.$HTTP.post(`/api/blade-cps/group/groupWorkstation`,obj).then(res=> {
+ this.$HTTP.post(`/api/smis/group/groupWorkstation`,obj).then(res=> {
if(res.code == 200) {
var tree = [];
var children = [];
@@ -165,7 +165,7 @@
var obj = Object.assign({},this.addStepForm0);
this.$refs.dialogForm0.validate(async (valid) => {
if (valid) {
- this.$HTTP.put("/api/blade-cps/craft-routing/update",obj).then(res=> {
+ this.$HTTP.put("/api/smis/craft-routing/update",obj).then(res=> {
this.isSaveing = false;
if(res.code == 200) {
this.active = 1;
@@ -184,7 +184,7 @@
obj.craftId = "";
this.$refs.dialogForm1.validate(async (valid) => {
if (valid) {
- this.$HTTP.post("/api/blade-cps/production-craft-version/insert",obj).then(res=> {
+ this.$HTTP.post("/api/smis/production-craft-version/insert",obj).then(res=> {
this.isSaveing = false;
if(res.code == 200) {
this.active = 2;
@@ -200,14 +200,14 @@
})
},
getDetail(id) {
- this.$HTTP.get(`/api/blade-cps/craft-routing/detail?id=${this.$route.query.id}`).then(res=> {
+ this.$HTTP.get(`/api/smis/craft-routing/detail?id=${this.$route.query.id}`).then(res=> {
if(res.code == 200) {
this.addStepForm0 = res.data;
}
})
},
getProductList() {
- this.$HTTP.get(`/api/blade-cps/craft-routing/not-band-craft?craftId=${this.$route.query.id}`).then(res=> {
+ this.$HTTP.get(`/api/smis/craft-routing/not-band-craft?craftId=${this.$route.query.id}`).then(res=> {
if(res.code == 200) {
this.productList = res.data;
this.getDetail();
--
Gitblit v1.9.3