04 2023 档案
摘要:utils/axios/type/axios.ts export type ErrorMessageMode = "none" | "modal" | "message" | undefined; export interface RequestOptions { // Splicing reque
阅读全文
摘要:const [list, setList] = useState([]); class Person { async handleList(data: () => any, record: any) { await data().then((res: any) => { record(res.dat
阅读全文
摘要:css .wrap-nums { width: 300px; } @keyframes defaultWave { 0% { transform: scale(1); } 20% { transform: scale(1.23); } 40% { transform: scale(1); } 100
阅读全文
摘要:window.document.body.innerHTML = window.document.getElementById('print')!.innerHTML; window.print(); window.location.reload();
阅读全文
摘要:https://blog.csdn.net/weixin_39788960/article/details/113022240<!DOCTYPE html> <html> <head> <style> .shape { margin: 50px; width: 200px; height: 50px
阅读全文
摘要:import React, { useEffect, useState } from 'react'; import { Cascader } from 'antd'; import { SysCityList } from '../../services/citys'; interface Opt
阅读全文
摘要:import React, { lazy, Suspense } from 'react'; import Edit from '../pages/ceshi/table/AddEdit'; import Details from '../pages/ceshi/table/Details'; im
阅读全文