| | |
| | | type="date" |
| | | placeholder="选择日期" |
| | | value-format="yyyy-MM-dd HH:mm:ss" |
| | | size="small" |
| | | size="medium" |
| | | style="width: 130px" |
| | | :readonly="projectInfoData.managerFlag"/> |
| | | </template> |
| | |
| | | type="date" |
| | | placeholder="选择日期" |
| | | value-format="yyyy-MM-dd HH:mm:ss" |
| | | size="small" |
| | | size="medium" |
| | | style="width: 130px" |
| | | :readonly="projectInfoData.managerFlag" /> |
| | | </template> |
| | |
| | | <div v-if="scope.row.planStatus === 0"></div> |
| | | <!-- 状态为已驳回 --> |
| | | <div v-if="scope.row.planStatus === 1"> |
| | | <el-button size="small" @click="handleResubmit(scope.row)">重新上报</el-button> |
| | | <el-button size="small" type="danger" @click="handleReset(scope.$index)">重置</el-button> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-upload2" |
| | | @click="handleResubmit(scope.row)">重新上报</el-button> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-refresh-left" |
| | | @click="handleReset(scope.$index)">重置</el-button> |
| | | </div> |
| | | <!-- 状态为已通过 --> |
| | | <div v-if="scope.row.planStatus === 2"> |
| | | <el-button size="small" @click="handleDelay(scope.$index)">延期</el-button> |
| | | <el-button |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-edit" |
| | | @click="handleDelay(scope.$index)">延期</el-button> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | v-model="scope.row.departmentExamine" |
| | | :disabled="scope.row.planStatus === 2 || scope.row.planStatus === 1" |
| | | placeholder="请选择" |
| | | size="small" |
| | | size="medium" |
| | | clearable> |
| | | <el-option label="同意" :value="0"></el-option> |
| | | <el-option label="驳回" :value="1"></el-option> |
| | |
| | | v-model="scope.row.manageExamine" |
| | | :disabled="scope.row.planStatus === 2 || scope.row.planStatus === 1" |
| | | placeholder="请选择" |
| | | size="small" |
| | | size="medium" |
| | | clearable> |
| | | <el-option label="同意" :value="0"></el-option> |
| | | <el-option label="驳回" :value="1"></el-option> |
| | |
| | | <template #default="scope"> |
| | | <div v-if="!projectInfoData.managerFlag"> |
| | | <el-button |
| | | size="small" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-reply" |
| | | @click="handleReply(scope.$index)" |
| | | :disabled="scope.row.planStatus === 0">回复</el-button> |
| | | <el-button |
| | | size="small" |
| | | type="danger" |
| | | size="medium" |
| | | type="text" |
| | | icon="el-icon-refresh-left" |
| | | @click="handleReset(scope.$index)" |
| | | :disabled="scope.row.planStatus === 0">重置</el-button> |
| | | </div> |
| | | <div v-if="projectInfoData.managerFlag"> |
| | | <el-button |
| | | size="small" |
| | | size="medium" |
| | | type="text" |
| | | @click="handleExamine(scope.$index)" |
| | | v-if="scope.row.planStatus === 0">审核</el-button> |
| | | </div> |