From 44432633995c373d3b063cc64f0960aa399b5111 Mon Sep 17 00:00:00 2001 From: e <2432808546@qq.com> Date: Thu, 20 Jan 2022 17:04:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9C=8D=E5=8A=A1=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=BF=9B=E5=85=A5=E9=A1=B9=E7=9B=AE=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E5=90=8E=E7=BC=96=E8=BE=91=E5=90=8E=E8=BF=94=E5=9B=9E=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=B3=BB=E7=BB=9F=E5=B1=95=E7=A4=BA=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E5=90=8D=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/order/AddOrder.vue | 3 +++ src/views/serve/projectAdd.vue | 2 +- src/views/serve/projectList.vue | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/views/order/AddOrder.vue b/src/views/order/AddOrder.vue index cd43035..82947c4 100644 --- a/src/views/order/AddOrder.vue +++ b/src/views/order/AddOrder.vue @@ -1461,6 +1461,9 @@ export default { /deep/ .course-input .el-input__inner { width: 100px; } +/deep/.orderTable .el-select>.el-input{ + width: 30%; +} /deep/ .course-input .red .el-input__inner { border: 1px solid red; } diff --git a/src/views/serve/projectAdd.vue b/src/views/serve/projectAdd.vue index 7908f73..b67b42a 100644 --- a/src/views/serve/projectAdd.vue +++ b/src/views/serve/projectAdd.vue @@ -332,7 +332,7 @@ export default { this.$confirm("确定返回?未更新的信息将不会保存。", "提示", { type: "warning" }).then(() => { - this.$router.push(`/projectList?systemId=${this.$route.query.systemId}&show=${this.isDetails}&founder=${this.founder}`); + this.$router.push(`/projectList?systemId=${this.$route.query.systemId}&show=${this.isDetails}&founder=${this.founder}&name=${this.$route.query.name}`); }).catch(() => { }); } diff --git a/src/views/serve/projectList.vue b/src/views/serve/projectList.vue index e10ff90..93edb3d 100644 --- a/src/views/serve/projectList.vue +++ b/src/views/serve/projectList.vue @@ -255,10 +255,10 @@ export default { this.getData(); }, add() { // 新增项目 - this.$router.push(`/projectAdd?systemId=${this.systemId}&founder=${this.queryData.founder}&isDetails=${this.$route.query.show}`); + this.$router.push(`/projectAdd?systemId=${this.systemId}&founder=${this.queryData.founder}&isDetails=${this.$route.query.show}&name=${this.titleName}`); }, edit(row) { // 编辑 - this.$router.push(`/projectAdd?systemId=${this.systemId}&projectId=${row.projectId}&founder=${this.queryData.founder}&isDetails=${this.$route.query.show}`); + this.$router.push(`/projectAdd?systemId=${this.systemId}&projectId=${row.projectId}&founder=${this.queryData.founder}&isDetails=${this.$route.query.show}&name=${this.titleName}`); }, handleSelectionChange(val) { // 处理多选 this.multipleSelection = val;