| | |
| | | <el-card shadow="hover"> |
| | | <el-row :gutter="20"> |
| | | <el-col :span="24" class="mb-4"> |
| | | <el-button type="primary" size="small" @click="handlePlanRecord" style="float: right; margin-bottom: 10px; margin-left: 10px">返回</el-button> |
| | | <!--项目计划项--> |
| | | <el-table :data="tableData" border stripe style="width: 100%; margin-bottom: 20px"> |
| | | <el-table-column prop="index" label="序号" width="50" align="center"> |
| | |
| | | </el-table-column> |
| | | <el-table-column prop="startTime" label="计划开始时间" width="160" align="center" > |
| | | <template #default="scope"> |
| | | <el-date-picker v-model="scope.row.startTime" type="date" placeholder="选择日期" size="small" style="width: 130px" :readonly="projectInfoData.managerFlag"/> |
| | | <el-date-picker |
| | | v-model="scope.row.startTime" |
| | | type="date" |
| | | placeholder="选择日期" |
| | | value-format="yyyy-MM-dd HH:mm:ss" |
| | | size="small" |
| | | style="width: 130px" |
| | | :readonly="projectInfoData.managerFlag"/> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="endTime" label="计划完成时间" width="160" align="center" > |
| | | <template #default="scope"> |
| | | <el-date-picker v-model="scope.row.endTime" type="date" placeholder="选择日期" size="small" style="width: 130px" :readonly="projectInfoData.managerFlag" /> |
| | | <el-date-picker |
| | | v-model="scope.row.endTime" |
| | | type="date" |
| | | placeholder="选择日期" |
| | | value-format="yyyy-MM-dd HH:mm:ss" |
| | | size="small" |
| | | style="width: 130px" |
| | | :readonly="projectInfoData.managerFlag" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column :label="planInfoData.planTimeFlag === 0 ? '月度' : planInfoData.planTimeFlag === 1 ? '季度' : '年度' " align="center"> |
| | |
| | | // 获取传递过来的项目计划详情 |
| | | getPlanRecordData() { |
| | | // 从查询参数中获取数据 |
| | | this.planInfoData = this.$route.query.data |
| | | this.projectInfoData = this.$route.query.projectInfoData |
| | | this.planInfoData.id = this.$route.query.id; |
| | | this.planInfoData.projectName = this.$route.query.projectName; |
| | | this.planInfoData.projectCode = this.$route.query.projectCode; |
| | | this.planInfoData.planTime = this.$route.query.planTime; |
| | | this.planInfoData.planTimeFlag = this.$route.query.planTimeFlag; |
| | | this.planInfoData.managerFlag = this.$route.query.managerFlag; |
| | | this.search(); |
| | | }, |
| | | // 获取项目计划项 |