| | |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleUpdate(scope.row)" |
| | | @click="handlePlanRecord(scope.row)" |
| | | >查看</el-button> |
| | | <el-button |
| | | size="mini" |
| | |
| | | import { getList, getRecord, delRecord, addRecord, updateRecord } from "@/api/project/plan/index"; |
| | | |
| | | export default { |
| | | name: "Record", |
| | | name: "index", |
| | | data() { |
| | | return { |
| | | // 遮罩层 |
| | |
| | | this.download('plan/record/export', { |
| | | ...this.queryParams |
| | | }, `record_${new Date().getTime()}.xlsx`) |
| | | }, |
| | | /** 查看项目计划记录 */ |
| | | handlePlanRecord(row) { |
| | | this.$router.push({ |
| | | path: '/plan/planRecord', |
| | | query: { |
| | | data: JSON.stringify(row) |
| | | } |
| | | }) |
| | | } |
| | | } |
| | | }; |