Commit f59bf4ce authored by 纪泽龙's avatar 纪泽龙

培训计划管理复现

parent 7549f9b9
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 10:38:49 * @Date: 2022-09-22 10:38:49
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-19 14:01:37 * @LastEditTime: 2022-12-28 15:01:59
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/addLesson.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/addLesson.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
:is="currentComponent" :is="currentComponent"
:bankId.sync="bankId" :bankId.sync="bankId"
:subjectId.sync="subjectId" :subjectId.sync="subjectId"
:jsonData="jsonData"
ref="current" ref="current"
></component> ></component>
</transition> </transition>
...@@ -73,6 +74,9 @@ export default { ...@@ -73,6 +74,9 @@ export default {
bankId: { bankId: {
type: Number, type: Number,
}, },
jsonData:{
type:Array,
}
}, },
// components: { // components: {
// Lesson, // Lesson,
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
<div class="right flex"> <div class="right flex">
<template v-if="!isActive"> <template v-if="!isActive">
<div> <div>
<el-button type="text" @click="edit">编辑</el-button> <el-button type="text" @click="edit(personnelOptions)">编辑</el-button>
<el-button type="text" @click="deletePlan">删除</el-button> <el-button type="text" @click="deletePlan">删除</el-button>
</div> </div>
</template> </template>
...@@ -95,10 +95,10 @@ export default { ...@@ -95,10 +95,10 @@ export default {
}; };
}, },
methods: { methods: {
edit() { edit(personnelOptions) {
// 编辑 // 编辑
//console.log(this.infoData); console.log(personnelOptions);
this.$parent.addClick(this.infoData); this.$parent.addClick(this.infoData,personnelOptions);
//this.$emit("edit", this.oldInfoData); //this.$emit("edit", this.oldInfoData);
}, },
save() { save() {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-22 10:59:44 * @Date: 2022-09-22 10:59:44
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-12-21 17:30:33 * @LastEditTime: 2022-12-28 15:06:07
* @FilePath: /danger-manage-web/src/views/lessonsProgram/components/Lession.vue * @FilePath: /danger-manage-web/src/views/lessonsProgram/components/Lession.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -25,30 +25,31 @@ ...@@ -25,30 +25,31 @@
v-for="item in options" v-for="item in options"
:key="item.value" :key="item.value"
:label="item.label" :label="item.label"
:value="item.value"> :value="item.value"
>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<!--<el-form-item label="开始时间" prop="releaseTime">--> <!--<el-form-item label="开始时间" prop="releaseTime">-->
<!--<el-date-picker-->
<!--v-model="form.startTime"-->
<!--value-format="yyyy-MM-dd HH:mm:ss"-->
<!--type="datetime"-->
<!--placeholder="开始时间"-->
<!--default-time="12:00:00"-->
<!--&gt;-->
<!--</el-date-picker>-->
<!--</el-form-item>-->
</div>
<!--<el-form-item label="结束时间" prop="releaseTime">-->
<!--<el-date-picker--> <!--<el-date-picker-->
<!--v-model="form.endTime"--> <!--v-model="form.startTime"-->
<!--value-format="yyyy-MM-dd HH:mm:ss"--> <!--value-format="yyyy-MM-dd HH:mm:ss"-->
<!--type="datetime"--> <!--type="datetime"-->
<!--placeholder="结束时间"--> <!--placeholder="开始时间"-->
<!--default-time="12:00:00"--> <!--default-time="12:00:00"-->
<!--&gt;--> <!--&gt;-->
<!--</el-date-picker>--> <!--</el-date-picker>-->
<!--</el-form-item>-->
</div>
<!--<el-form-item label="结束时间" prop="releaseTime">-->
<!--<el-date-picker-->
<!--v-model="form.endTime"-->
<!--value-format="yyyy-MM-dd HH:mm:ss"-->
<!--type="datetime"-->
<!--placeholder="结束时间"-->
<!--default-time="12:00:00"-->
<!--&gt;-->
<!--</el-date-picker>-->
<!--</el-form-item>--> <!--</el-form-item>-->
<el-form-item label="选择人员" prop="releaseTime"> <el-form-item label="选择人员" prop="releaseTime">
...@@ -90,7 +91,7 @@ import { ...@@ -90,7 +91,7 @@ import {
addPlan, addPlan,
editPlan, editPlan,
getPlanList, getPlanList,
getPlan getPlan,
} from "@/api/educationPlanExam/trainingProgram"; } from "@/api/educationPlanExam/trainingProgram";
export default { export default {
name: "", name: "",
...@@ -98,6 +99,9 @@ export default { ...@@ -98,6 +99,9 @@ export default {
bankId: { bankId: {
type: Number, type: Number,
}, },
jsonData: {
tyoe: Array,
},
// jsonSelectNameList: { // jsonSelectNameList: {
// type: String, // type: String,
// default: // default:
...@@ -109,13 +113,16 @@ export default { ...@@ -109,13 +113,16 @@ export default {
}, },
data() { data() {
return { return {
options: [{ options: [
value: 1, {
label: '内部员工' value: 1,
}, { label: "内部员工",
value: 2, },
label: '承包商培训' {
}], value: 2,
label: "承包商培训",
},
],
form: { form: {
bankName: "", bankName: "",
// courseType: "", // courseType: "",
...@@ -123,13 +130,13 @@ export default { ...@@ -123,13 +130,13 @@ export default {
// video: "", // video: "",
// enclosure: "", // enclosure: "",
deptId: null, deptId: null,
personnelType:1, personnelType: 1,
abc: 0, abc: 0,
}, },
// 参考人员 // 参考人员
jsonSelectNameList: null, jsonSelectNameList: null,
peopleList:[], peopleList: [],
// 归属部门列表 // 归属部门列表
deptOptions: [], deptOptions: [],
...@@ -162,7 +169,7 @@ export default { ...@@ -162,7 +169,7 @@ export default {
mounted() { mounted() {
// this.jsonSelectNameList // this.jsonSelectNameList
// '[{"staffId":880,"staffName":"孙卓亚"},{"staffId":871,"staffName":"张玉宾"},{"staffId":869,"staffName":"李二朝"},{"staffId":870,"staffName":"盖永峰"},{"staffId":868,"staffName":"刘丽艳"},{"staffId":867,"staffName":"霍文俊"},{"staffId":866,"staffName":"刘志坚"},{"staffId":865,"staffName":"郝文权"},{"staffId":864,"staffName":"齐雪军"},{"staffId":852,"staffName":"刘江平"},{"staffId":853,"staffName":"谷建海"},{"staffId":851,"staffName":"丁振国"},{"staffId":850,"staffName":"齐江波"},{"staffId":849,"staffName":"周立新"},{"staffId":848,"staffName":"史志波"},{"staffId":847,"staffName":"王增波"},{"staffId":846,"staffName":"杨彦龙"},{"staffId":845,"staffName":"杨华国"},{"staffId":844,"staffName":"王青华"}]'; // '[{"staffId":880,"staffName":"孙卓亚"},{"staffId":871,"staffName":"张玉宾"},{"staffId":869,"staffName":"李二朝"},{"staffId":870,"staffName":"盖永峰"},{"staffId":868,"staffName":"刘丽艳"},{"staffId":867,"staffName":"霍文俊"},{"staffId":866,"staffName":"刘志坚"},{"staffId":865,"staffName":"郝文权"},{"staffId":864,"staffName":"齐雪军"},{"staffId":852,"staffName":"刘江平"},{"staffId":853,"staffName":"谷建海"},{"staffId":851,"staffName":"丁振国"},{"staffId":850,"staffName":"齐江波"},{"staffId":849,"staffName":"周立新"},{"staffId":848,"staffName":"史志波"},{"staffId":847,"staffName":"王增波"},{"staffId":846,"staffName":"杨彦龙"},{"staffId":845,"staffName":"杨华国"},{"staffId":844,"staffName":"王青华"}]';
this.$refs.changePaple.changeNameList(this.jsonSelectNameList); this.$refs.changePaple.changeNameList(this.jsonSelectNameList);
}, },
methods: { methods: {
...@@ -184,8 +191,12 @@ export default { ...@@ -184,8 +191,12 @@ export default {
this.form = { this.form = {
bankName: res.data.planName, bankName: res.data.planName,
deptId: res.data.planId, deptId: res.data.planId,
personnelType: res.data.personnelType personnelType: res.data.personnelType,
}; };
// 人名复现
this.jsonSelectNameList = JSON.stringify(this.jsonData);
this.$refs.changePaple.changeNameList(this.jsonSelectNameList);
// const data = res.data; // const data = res.data;
// const { bankName, courseType, courseConent, video, enclosure } = // const { bankName, courseType, courseConent, video, enclosure } =
// data; // data;
...@@ -216,36 +227,34 @@ export default { ...@@ -216,36 +227,34 @@ export default {
console.log("参考人员", list); console.log("参考人员", list);
this.peopleList = list; this.peopleList = list;
}, },
savePlan(){ savePlan() {
this.$refs.form.validate((valid) => { this.$refs.form.validate((valid) => {
if (valid) { if (valid) {
if(this.peopleList.length<3){ if (this.peopleList.length < 3) {
this.$message.error('请至少选择一个考试人员'); this.$message.error("请至少选择一个考试人员");
return return;
} }
//console.log(this.peopleList); //console.log(this.peopleList);
this.form.peopleList = this.peopleList.toString(); this.form.peopleList = this.peopleList.toString();
this.form.planName = this.form.bankName; this.form.planName = this.form.bankName;
console.log(this.form) console.log(this.form);
if(this.bankId!=null){ if (this.bankId != null) {
this.form.planId = this.bankId; this.form.planId = this.bankId;
return editPlan(this.form).then((res) => { return editPlan(this.form).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$parent.$parent.$parent.getPlanList(); this.$parent.$parent.$parent.getPlanList();
} }
}); });
}else { } else {
return addPlan(this.form).then((res) => { return addPlan(this.form).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.$parent.$parent.$parent.getPlanList(); this.$parent.$parent.$parent.getPlanList();
} }
}); });
} }
} }
}); });
}, },
save(num = 2) { save(num = 2) {
// 因为富文本编辑器会残留<p><br></p>,所以要清 // 因为富文本编辑器会残留<p><br></p>,所以要清
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @Author: 纪泽龙 jizelong@qq.com * @Author: 纪泽龙 jizelong@qq.com
* @Date: 2022-09-16 17:07:30 * @Date: 2022-09-16 17:07:30
* @LastEditors: 纪泽龙 jizelong@qq.com * @LastEditors: 纪泽龙 jizelong@qq.com
* @LastEditTime: 2022-09-28 17:46:09 * @LastEditTime: 2022-12-28 15:04:15
* @FilePath: /danger-manage-web/src/views/trainingProgram/index.vue * @FilePath: /danger-manage-web/src/views/trainingProgram/index.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
--> -->
...@@ -70,6 +70,7 @@ ...@@ -70,6 +70,7 @@
:componentsNum.sync="componentsNum" :componentsNum.sync="componentsNum"
:bankId.sync="bankId" :bankId.sync="bankId"
:visible.sync="dilogFlag" :visible.sync="dilogFlag"
:jsonData='jsonData'
/> />
</div> </div>
</template> </template>
...@@ -102,6 +103,8 @@ export default { ...@@ -102,6 +103,8 @@ export default {
data() { data() {
return { return {
personnelOptions, personnelOptions,
// 选人复显示
jsonData:null,
isActiveId: 999, isActiveId: 999,
list: [], list: [],
// 当点击编辑的时候,会记录最初始的 // 当点击编辑的时候,会记录最初始的
...@@ -228,7 +231,7 @@ export default { ...@@ -228,7 +231,7 @@ export default {
this.isActiveId = 999; this.isActiveId = 999;
}, },
changeList() {}, changeList() {},
addClick(form) { addClick(form,json) {
this.$refs.Dia.title = "新增培训计划"; this.$refs.Dia.title = "新增培训计划";
this.componentsNum = 2; this.componentsNum = 2;
...@@ -238,6 +241,13 @@ export default { ...@@ -238,6 +241,13 @@ export default {
//console.log("=======") //console.log("=======")
this.$refs.Dia.title = "修改培训计划"; this.$refs.Dia.title = "修改培训计划";
this.bankId = form.planId; this.bankId = form.planId;
this.jsonData = json.map(item=>{
return {
peoPleId:item.postId,
peoPleName:item.postName,
}
})
} }
//this.addOpen = true; //this.addOpen = true;
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment