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 0000000000000000000000000000000000000000..efee9ca51b3086972d2eb1bfcca1a08061ccae3a --- /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