|
@@ -220,14 +220,14 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<el-row>
|
|
<el-row>
|
|
|
- <el-col :span="12">
|
|
|
|
|
|
|
+<!-- <el-col :span="12">
|
|
|
<el-form-item v-if="this.form.id" label="计划状态" prop="planStatus">
|
|
<el-form-item v-if="this.form.id" label="计划状态" prop="planStatus">
|
|
|
<el-select style="width: 100%" v-model="form.planStatus" placeholder="请选择计划状态">
|
|
<el-select style="width: 100%" v-model="form.planStatus" placeholder="请选择计划状态">
|
|
|
<el-option v-for="dict in dict.type.edu_plan_status" :key="dict.value" :label="dict.label"
|
|
<el-option v-for="dict in dict.type.edu_plan_status" :key="dict.value" :label="dict.label"
|
|
|
:value="parseInt(dict.value)"></el-option>
|
|
:value="parseInt(dict.value)"></el-option>
|
|
|
</el-select>
|
|
</el-select>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
|
|
|
|
+ </el-col>-->
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item v-show="form.execOrgType" label="培训机构" prop="planExecOrgIdList">
|
|
<el-form-item v-show="form.execOrgType" label="培训机构" prop="planExecOrgIdList">
|
|
|
<org-tree-select v-model="form.planExecOrgIdList" :queryData="form.execOrgType"
|
|
<org-tree-select v-model="form.planExecOrgIdList" :queryData="form.execOrgType"
|
|
@@ -638,7 +638,7 @@ export default {
|
|
|
//撤回计划
|
|
//撤回计划
|
|
|
handleRevocation(row) {
|
|
handleRevocation(row) {
|
|
|
if (row.id != null) {
|
|
if (row.id != null) {
|
|
|
- this.$modal.confirm(this.getMsgStr(row, '撤回')).then(function () {
|
|
|
|
|
|
|
+ this.$modal.confirm('撤回计划会清除本周期所有任务?').then(function () {
|
|
|
return revocationPlan(row.id);
|
|
return revocationPlan(row.id);
|
|
|
}).then(() => {
|
|
}).then(() => {
|
|
|
this.$modal.msgSuccess("计划撤回成功");
|
|
this.$modal.msgSuccess("计划撤回成功");
|