소스 검색

1.增加导入其他模板项目
2.增加从excel导入模板项目

yanliming 3 달 전
부모
커밋
6443cd07f2
1개의 변경된 파일9개의 추가작업 그리고 1개의 파일을 삭제
  1. 9 1
      src/api/base/templateOption.js

+ 9 - 1
src/api/base/templateOption.js

@@ -91,7 +91,15 @@ function batchRemove(idList) {
   });
 }
 
+function copyOptionList(formData) {
+  return request.post(constant.serverUrl + "/base/templateOption/copyOptionList", formData);
+}
+
+
+
+
+
 export default {
   pageList, create, edit, add, update, remove, batchRemove,templateDepartmentEdit,departmentDetailEdit,
-  updateItem,createFundIncome,addAndFundIncome,editItem,updateNameAndFundIncome
+  updateItem,createFundIncome,addAndFundIncome,editItem,updateNameAndFundIncome,copyOptionList
 }