Commit d57fbaae authored by 徐一鸣's avatar 徐一鸣

服务管理fixed

parent 1f01833d
...@@ -1116,7 +1116,8 @@ export default { ...@@ -1116,7 +1116,8 @@ export default {
this.showDialog(); this.showDialog();
}, // 删除服务 }, // 删除服务
detailItem(item) { detailItem(item) {
this.$router.push(`${this.detailsUrl + item.id}`); let id = this.type == 1 ? item.service_apply_info.id : item.id;
this.$router.push(`${this.detailsUrl + id}`);
}, // 查看服务 }, // 查看服务
editItem(item) { editItem(item) {
this.$router.push( this.$router.push(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment