修改服务配置进入项目系统后编辑后返回项目系统展示项目名字

dev_2022-03-03
e 3 years ago
parent 1535c6cc15
commit 4443263399
  1. 3
      src/views/order/AddOrder.vue
  2. 2
      src/views/serve/projectAdd.vue
  3. 4
      src/views/serve/projectList.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;
}

@ -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(() => {
});
}

@ -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;

Loading…
Cancel
Save