From 32b120673729f5fb4d0709e27718a66c29df2638 Mon Sep 17 00:00:00 2001 From: 86182 Date: Thu, 15 Sep 2022 18:27:26 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/phase2/note.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/api/phase2/note.js b/src/api/phase2/note.js index 526756ae..278659b0 100644 --- a/src/api/phase2/note.js +++ b/src/api/phase2/note.js @@ -12,6 +12,14 @@ const save=function (data){ return ajax.postJson(baseURL,'/xboe/subgroup/m/noteinfo/save',data); } +/** + * 添加或者编辑 + * @param 参数见设计文档 + * */ +const update=function (data){ + return ajax.postJson(baseURL,'/xboe/subgroup/m/noteinfo/update',data); +} + /** * 详情 * */ @@ -87,5 +95,6 @@ export default { history, pagelist, query, - course + course, + update }