From ac8d940c87c3e5189d7ad5bea9c8c3027d02e2e5 Mon Sep 17 00:00:00 2001 From: Electrolux <3451613934@qq.com> Date: Fri, 14 Jul 2023 01:34:58 +0000 Subject: [PATCH] =?UTF-8?q?=E4=B8=AD=E6=96=87=E7=BC=A9=E5=86=99=E5=91=BD?= =?UTF-8?q?=E5=90=8D,=E7=9B=B8=E5=BD=93=E7=82=B8=E8=A3=82.=20=E7=9C=9F?= =?UTF-8?q?=E5=AE=9E=E9=A1=B9=E7=9B=AE=E7=9A=84=E4=B8=80=E4=B8=AA=E7=89=87?= =?UTF-8?q?=E6=AE=B5=E5=93=88=E5=93=88=E5=93=88=E5=93=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Electrolux <3451613934@qq.com> --- ...3\270\345\275\223\347\202\270\350\243\202" | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 "js/\344\270\255\346\226\207\347\274\251\345\206\231\345\221\275\345\220\215,\347\233\270\345\275\223\347\202\270\350\243\202" diff --git "a/js/\344\270\255\346\226\207\347\274\251\345\206\231\345\221\275\345\220\215,\347\233\270\345\275\223\347\202\270\350\243\202" "b/js/\344\270\255\346\226\207\347\274\251\345\206\231\345\221\275\345\220\215,\347\233\270\345\275\223\347\202\270\350\243\202" new file mode 100644 index 0000000..efee9ca --- /dev/null +++ "b/js/\344\270\255\346\226\207\347\274\251\345\206\231\345\221\275\345\220\215,\347\233\270\345\275\223\347\202\270\350\243\202" @@ -0,0 +1,63 @@ +/** + * @des 检查类别 | 问题列表 + * @param data + * @returns + */ +export function wtlbGet(data: any): Promise> { + return request({ + url: '/quality/wtlb', + method: 'get', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + data: data, + }) +} + +/** + * @des 逾期提醒 + * @param data + * @returns + */ + export function yqtxGet(data: any): Promise> { + return request({ + url: '/quality/yqtx', + method: 'get', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + data: data, + }) +} + +/** + * @des 检查人排名 + * @param data + * @returns + */ + export function jcGet(data: any): Promise> { + return request({ + url: '/quality/jc', + method: 'get', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + data: data, + }) +} + +/** + * @des 闸机统计 + * @param data + * @returns + */ +export function TongjiRecordListGet(data: Record<"day"|"code",any>) :Promise> { + return request({ + url: '/person/getTongjiRecordList', + method: 'get', + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + data: data, + }) +} \ No newline at end of file -- Gitee