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;