Commit 8f6b241c by Thews

20231219wangwansu

1 parent b7e8ae01
...@@ -210,10 +210,14 @@ export function getETPManageAdd(params) { ...@@ -210,10 +210,14 @@ export function getETPManageAdd(params) {
export function getETPManageUpdate(params) { export function getETPManageUpdate(params) {
return post('/kl-talent-pool/updKlTalentPool', params); return post('/kl-talent-pool/updKlTalentPool', params);
} }
// 编辑专家人才库 // 删除专家人才库
export function getETPManageDel(params) { export function getETPManageDel(params) {
return post('/kl-talent-pool/delKlTalentPool', params); return post('/kl-talent-pool/delKlTalentPool', params);
} }
// 批量删除专家人才库
export function getETPManageDelBatch(params) {
return post('/kl-talent-pool/updKlTalentPoolBatch', params);
}
// 典型案例库管理 // 典型案例库管理
......
...@@ -261,7 +261,6 @@ export default { ...@@ -261,7 +261,6 @@ export default {
if (this.formData.ktcId) { if (this.formData.ktcId) {
// 编辑保存 // 编辑保存
getTypicalExampleUpdate(this.formData).then(res => { getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) { if (res.code == 200) {
this.$message.success("保存成功"); this.$message.success("保存成功");
this.add_dialog = false; this.add_dialog = false;
...@@ -280,7 +279,6 @@ export default { ...@@ -280,7 +279,6 @@ export default {
this.getList(); this.getList();
}else{ }else{
this.add_dialog = false; this.add_dialog = false;
console.log(res);
this.$message.error(res.msg); this.$message.error(res.msg);
} }
}); });
...@@ -361,9 +359,9 @@ export default { ...@@ -361,9 +359,9 @@ export default {
}, },
handleFileUploadSuccess(res, file, fileList) {//文件上传 handleFileUploadSuccess(res, file, fileList) {//文件上传
this.formData.fileId = res.data.fileId; this.formData.fileId = res.data.fileId;
console.log(res); // console.log(res);
console.log(file); // console.log(file);
console.log(fileList); // console.log(fileList);
}, },
getFileTypeSelect() {//案例类型下拉 getFileTypeSelect() {//案例类型下拉
...@@ -373,7 +371,6 @@ export default { ...@@ -373,7 +371,6 @@ export default {
getDianXingAnLiSelectData(params).then(res => { getDianXingAnLiSelectData(params).then(res => {
if(res.code == 200) { if(res.code == 200) {
this.selectData1 = res.data; this.selectData1 = res.data;
console.log(this.selectData1);
} }
}) })
}, },
......
...@@ -310,7 +310,6 @@ export default { ...@@ -310,7 +310,6 @@ export default {
if (this.formData.ktcId) { if (this.formData.ktcId) {
// 编辑保存 // 编辑保存
getTypicalExampleUpdate(this.formData).then(res => { getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) { if (res.code == 200) {
this.$message.success("保存成功"); this.$message.success("保存成功");
this.add_dialog = false; this.add_dialog = false;
......
...@@ -242,7 +242,6 @@ export default { ...@@ -242,7 +242,6 @@ export default {
if (this.formData.ktcId) { if (this.formData.ktcId) {
// 编辑保存 // 编辑保存
getTypicalExampleUpdate(this.formData).then(res => { getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) { if (res.code == 200) {
this.$message.success("保存成功"); this.$message.success("保存成功");
this.add_dialog = false; this.add_dialog = false;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!