| | |
| | | /** 新增按钮操作 */ |
| | | handleAdd() { |
| | | this.$router.push({ |
| | | path: "/cost/computingBill", |
| | | path: "/finance/computingBill", |
| | | query: { id: 0, operation: "add" } |
| | | }); |
| | | }, |
| | |
| | | /** 修改按钮操作 */ |
| | | handleUpdate(row) { |
| | | this.$router.push({ |
| | | path: "/cost/computingBill", |
| | | path: "/finance/computingBill", |
| | | query: { id: row.id, operation: "update", data: row } |
| | | }); |
| | | }, |
| | |
| | | /** 详情查看按钮操作 */ |
| | | handleDetail(row) { |
| | | this.$router.push({ |
| | | path: "/cost/computingBill", |
| | | path: "/finance/computingBill", |
| | | query: { id: row.id, operation: "detail", data: row } |
| | | }); |
| | | }, |