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/tooling/fixture.vue | 38 +++++++++++++++++++------------------- 1 files changed, 19 insertions(+), 19 deletions(-) diff --git a/src/views/console/tooling/fixture.vue b/src/views/console/tooling/fixture.vue index 6c8fb7f..f4def3f 100644 --- a/src/views/console/tooling/fixture.vue +++ b/src/views/console/tooling/fixture.vue @@ -42,8 +42,8 @@ <el-container v-if="selectNode.id"> <el-header> <el-button @click="table_add" type="primary" icon="el-icon-plus"></el-button> - <import-table style="margin:0 8px" exportUrl="/api/blade-cps/fixture/export/template" - uploadUrl="/api/blade-cps/fixture/import-fixture"></import-table> + <import-table style="margin:0 8px" exportUrl="/api/smis/fixture/export/template" + uploadUrl="/api/smis/fixture/import-fixture"></import-table> <el-popconfirm title="纭畾鍒犻櫎鍚楋紵" @confirm="del(selection, '0')"> <template #reference> <el-button type="danger" :disabled="selection.length === 0" plain icon="el-icon-delete" @@ -253,7 +253,7 @@ groupId: this.selectNode.id, ...this.params } - return await this.$HTTP.get(`/api/blade-cps/fixture/page`, {}, { params }).then(res => { + return await this.$HTTP.get(`/api/smis/fixture/page`, {}, { params }).then(res => { return res }) } @@ -292,7 +292,7 @@ 'trayForm.trayId': { handler(val) { if (val) { - this.$HTTP.get(`/api/blade-cps/tray-surface/list/${val}`).then(res => { + this.$HTTP.get(`/api/smis/tray-surface/list/${val}`).then(res => { this.surfaceId = res.data if (!this.surfaceId.find(v => v.id === this.trayForm.surfaceId)) { this.trayForm.surfaceId = '' @@ -308,7 +308,7 @@ }, created() { this.init() - this.$HTTP.post(`/api/blade-cps/tray/list`).then(res => { + this.$HTTP.post(`/api/smis/tray/list`).then(res => { this.trayId = res.data }) }, @@ -318,7 +318,7 @@ console.log(options) formData.append('file', options.file) this.$HTTP.post(`/api/blade-resource/oss/endpoint/put-file`, formData).then(resFile => { - this.$HTTP.post(`/api/blade-cps/fixture/file`, { + this.$HTTP.post(`/api/smis/fixture/file`, { contentType: options.file.type, fileLength: options.file.size, fileLink: resFile.data.link, @@ -336,7 +336,7 @@ }) }, delFile(row) { - this.$HTTP.delete(`/api/blade-cps/tool-appendix/remove`, [row.id]).then(res => { + this.$HTTP.delete(`/api/smis/tool-appendix/remove`, [row.id]).then(res => { if (res.success) { this.rowClick(this.row) } else { @@ -362,13 +362,13 @@ this.visibleGroup = true }, delArea(data) { - this.$HTTP.delete(`/api/blade-cps/tray/remove-tree?id=${data.id}`).then(res => { + this.$HTTP.delete(`/api/smis/tray/remove-tree?id=${data.id}`).then(res => { this.init() }) }, saveGroup() { if (!this.formGroup.id) { - this.$HTTP.post(`/api/blade-cps/group`, { + this.$HTTP.post(`/api/smis/group`, { groupCategory: 1, groupType: "group_fixture", parentId: this.selectNode.id, @@ -378,7 +378,7 @@ this.init() }) } else { - this.$HTTP.put(`/api/blade-cps/group`, { + this.$HTTP.put(`/api/smis/group`, { groupCategory: 1, groupType: "group_fixture", parentId: this.selectNode.id, @@ -411,14 +411,14 @@ }, confirm() { if (this.trayForm.id) { - return this.$HTTP.put(`/api/blade-cps/fixture/update`, { + return this.$HTTP.put(`/api/smis/fixture/update`, { ...this.trayForm }).then(res => { this.dialog = false this.queryInfo() }) } - this.$HTTP.post(`/api/blade-cps/fixture/${this.trayForm.fixtureGroupId}/insert`, { + this.$HTTP.post(`/api/smis/fixture/${this.trayForm.fixtureGroupId}/insert`, { ...this.trayForm }).then(res => { this.dialog = false @@ -426,12 +426,12 @@ }) }, del(ids) { - this.$HTTP.delete(`/api/blade-cps/fixture/remove`, ids.map(v => v.id)).then(res => { + this.$HTTP.delete(`/api/smis/fixture/remove`, ids.map(v => v.id)).then(res => { this.queryInfo() }) }, init() { - this.$HTTP.post(`/api/blade-cps/tray/tooling-tree`, { + this.$HTTP.post(`/api/smis/tray/tooling-tree`, { groupCategory: 1, groupType: "group_fixture" }).then(res => { @@ -442,10 +442,10 @@ queryInfo() { if (!this.selectNode.id) return this.$refs?.table?.reload() - // this.$HTTP.get(`/api/blade-cps/tray/${this.selectNode.id}`).then(res => { + // this.$HTTP.get(`/api/smis/tray/${this.selectNode.id}`).then(res => { // this.info = res.data // }) - // this.$HTTP.get(`/api/blade-cps/tray-surface/list/${this.selectNode.id}`).then(res => { + // this.$HTTP.get(`/api/smis/tray-surface/list/${this.selectNode.id}`).then(res => { // this.info = res.data // }) }, @@ -460,7 +460,7 @@ async queryChildInfo(id) { if (!id) return this.showLoading = true - await this.$HTTP.get(`/api/blade-cps/fixture/get/${id}`).then(res => { + await this.$HTTP.get(`/api/smis/fixture/get/${id}`).then(res => { this.info = res.data this.infoList = [ { @@ -473,7 +473,7 @@ ] this.fileList = res.data.toolAppendixVOList }) - // await this.$HTTP.get(`/api/blade-cps/tray-surface/list/${id}`).then(res => { + // await this.$HTTP.get(`/api/smis/tray-surface/list/${id}`).then(res => { // this.infoList = res.data // }) this.showLoading = false @@ -482,7 +482,7 @@ this.selectNode = node }, table_del1(row) { - this.$HTTP.delete(`/api/blade-cps/tray-fixture`, [{ id: row.id, othersId: row.othersId }]).then(res => { + this.$HTTP.delete(`/api/smis/tray-fixture`, [{ id: row.id, othersId: row.othersId }]).then(res => { this.$message.success('鎿嶄綔鎴愬姛') this.queryChildInfo(this.info.id) }) -- Gitblit v1.9.3