Commit 8f6b241c by Thews

20231219wangwansu

1 parent b7e8ae01
......@@ -210,10 +210,14 @@ export function getETPManageAdd(params) {
export function getETPManageUpdate(params) {
return post('/kl-talent-pool/updKlTalentPool', params);
}
// 编辑专家人才库
// 删除专家人才库
export function getETPManageDel(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 {
if (this.formData.ktcId) {
// 编辑保存
getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) {
this.$message.success("保存成功");
this.add_dialog = false;
......@@ -280,7 +279,6 @@ export default {
this.getList();
}else{
this.add_dialog = false;
console.log(res);
this.$message.error(res.msg);
}
});
......@@ -361,9 +359,9 @@ export default {
},
handleFileUploadSuccess(res, file, fileList) {//文件上传
this.formData.fileId = res.data.fileId;
console.log(res);
console.log(file);
console.log(fileList);
// console.log(res);
// console.log(file);
// console.log(fileList);
},
getFileTypeSelect() {//案例类型下拉
......@@ -373,7 +371,6 @@ export default {
getDianXingAnLiSelectData(params).then(res => {
if(res.code == 200) {
this.selectData1 = res.data;
console.log(this.selectData1);
}
})
},
......
......@@ -310,7 +310,6 @@ export default {
if (this.formData.ktcId) {
// 编辑保存
getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) {
this.$message.success("保存成功");
this.add_dialog = false;
......
......@@ -242,7 +242,6 @@ export default {
if (this.formData.ktcId) {
// 编辑保存
getTypicalExampleUpdate(this.formData).then(res => {
console.log(this.formData,res);
if (res.code == 200) {
this.$message.success("保存成功");
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!