From 60097f2f27577bdeead46d4153229f346da60178 Mon Sep 17 00:00:00 2001 From: smallchill Date: Fri, 8 Dec 2023 00:54:18 +0800 Subject: [PATCH] =?UTF-8?q?:tada:=203.7.1.RELEASE=20=E5=8D=87=E7=BA=A7?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E5=AE=89=E5=85=A8=E6=80=A7=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/desk/notice.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/api/desk/notice.js b/src/api/desk/notice.js index 1f7b3a9..c173877 100644 --- a/src/api/desk/notice.js +++ b/src/api/desk/notice.js @@ -9,7 +9,7 @@ export const getList = (current, size, params) => { current, size, }, - cryptoToken: true, + cryptoToken: false, }) } @@ -20,7 +20,7 @@ export const remove = (ids) => { params: { ids, }, - cryptoToken: true, + cryptoToken: false, }) } @@ -29,7 +29,7 @@ export const add = (row) => { url: '/api/blade-desk/notice/submit', method: 'post', data: row, - cryptoToken: true, + cryptoToken: false, }) } @@ -38,7 +38,7 @@ export const update = (row) => { url: '/api/blade-desk/notice/submit', method: 'post', data: row, - cryptoToken: true, + cryptoToken: false, }) } @@ -49,7 +49,7 @@ export const getNotice = (id) => { params: { id }, - cryptoToken: true, + cryptoToken: false, }) }