|
|
@ -136,6 +136,11 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> --> |
|
|
|
</el-table-column> --> |
|
|
|
<el-table-column label="优先级" align="center" prop="weight" /> |
|
|
|
<el-table-column label="优先级" align="center" prop="weight" /> |
|
|
|
|
|
|
|
<el-table-column label="预计执行时间" align="center" prop="planStartTime" width="180"> |
|
|
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
<span>{{ parseTime(scope.row.planStartTime) }}</span> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span> |
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span> |
|
|
@ -243,9 +248,9 @@ |
|
|
|
<el-form-item>任务状态更改为进行中,会检查唯一资源占用情况,如果被占用,则更改失败。未被占用,则变成占用,更改成功</el-form-item> |
|
|
|
<el-form-item>任务状态更改为进行中,会检查唯一资源占用情况,如果被占用,则更改失败。未被占用,则变成占用,更改成功</el-form-item> |
|
|
|
<el-form-item>任务状态更改为完成,会返还唯一资源数量,并更改资源为未占用</el-form-item> |
|
|
|
<el-form-item>任务状态更改为完成,会返还唯一资源数量,并更改资源为未占用</el-form-item> |
|
|
|
<el-form-item>已完成的任务不能修改任何信息,修改按钮隐藏</el-form-item> |
|
|
|
<el-form-item>已完成的任务不能修改任何信息,修改按钮隐藏</el-form-item> |
|
|
|
<el-form-item>任务的状态只能由计划中(准备中) ——> 已开始,不可逆向变更状态</el-form-item> |
|
|
|
<el-form-item>任务状态由系统根据执行时间计算, 计划中、准备中的到了执行时间自动变成已开始</el-form-item> |
|
|
|
|
|
|
|
<el-form-item>执行时间不能添加今天之前的, 如果是今天 状态为已开始,如果是明天 状态为计划中</el-form-item> |
|
|
|
<el-form-item>任务状态(完成),只能由提交活动变成完成状态</el-form-item> |
|
|
|
<el-form-item>任务状态(完成),只能由提交活动变成完成状态</el-form-item> |
|
|
|
<el-form-item>任务状态为计划中、准备中的到了执行时间自动变成已开始</el-form-item> |
|
|
|
|
|
|
|
</el-form> |
|
|
|
</el-form> |
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
<span slot="footer" class="dialog-footer"> |
|
|
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
|
|
|
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
|
|
|