From e2fdfe540eaf160dc7d063c60667041edcc64e86 Mon Sep 17 00:00:00 2001 From: gaoshp <291585735@qq.com> Date: 星期二, 05 十一月 2024 22:55:14 +0800 Subject: [PATCH] 处理显示名称 --- src/views/console/product-process/process-route.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/console/product-process/process-route.vue b/src/views/console/product-process/process-route.vue index 01b41b9..b5be74b 100644 --- a/src/views/console/product-process/process-route.vue +++ b/src/views/console/product-process/process-route.vue @@ -103,7 +103,7 @@ this.$confirm(`纭瑕佸垹闄ゆ宸ヨ壓鐗堟湰鍚�?`, '', { type: 'warning' }).then(() => { - this.$HTTP.delete("/api/blade-cps/production-craft-version/remove/"+that.delIconId).then(res=> { + this.$HTTP.delete("/api/smis/production-craft-version/remove/"+that.delIconId).then(res=> { if(res.code == 200) { that.$message.success("鎿嶄綔鎴愬姛"); that.getDetail(); @@ -135,7 +135,7 @@ } }, showDetail(item) { - this.$HTTP.get(`/api/blade-cps/production-craft-version/detail/${item.id}`).then(res=> { + this.$HTTP.get(`/api/smis/production-craft-version/detail/${item.id}`).then(res=> { if(res.code == 200) { this.vHtml = `<ul class='detailUl'> <li><span class='detailStyle'>鍚嶇О</span><span>${res.data.name}</span></li> @@ -150,7 +150,7 @@ }) }, table_edit(row){ - this.$HTTP.get(`/api/blade-cps/craft-routing/not-band-craft?craftId=${row.id}`).then(res=> { + this.$HTTP.get(`/api/smis/craft-routing/not-band-craft?craftId=${row.id}`).then(res=> { if(res.code == 200) { this.dialog.save = true; this.$nextTick(() => { @@ -189,7 +189,7 @@ this.info = this.leftData[index]; }, getDetail() { - this.$HTTP.get(`/api/blade-cps/craft-routing/detail?id=${this.id}`).then(res=> { + this.$HTTP.get(`/api/smis/craft-routing/detail?id=${this.id}`).then(res=> { if(res.code == 200) { if(res.data.dtos.length != 0) { res.data.dtos.forEach(item=> { @@ -208,7 +208,7 @@ },{ key: "0",value: "" }] - this.$HTTP.post("/api/blade-cps/craft-routing/list",{params}).then(res=> { + this.$HTTP.post("/api/smis/craft-routing/list",{params}).then(res=> { if(res.code == 200) { this.leftData = res.data; if(res.data) { -- Gitblit v1.9.3