摘要: postGrest().getOne('search_holiday_detail',{holiday_id:id}). then((response:any)=> { if (!response.code) { setMenuDataSpecial(response.data) } else { 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(20) 评论(0) 推荐(0)
摘要: const onOk = useCallback(() => { form.validateFields().then(res => { debugger const values = res as AddOrEditMenuFormProps; const info: any = { ...men 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(20) 评论(0) 推荐(0)
摘要: //数组对象中得值进行乘法处理 export function dataRuduce(arr1: any) { const result = [] for (const v1 of arr1) { result.push({ ...v1, // arr2 count: Number(v1.layer 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(25) 评论(0) 推荐(0)
摘要: <Col span={4}> {index 0 && ( <Button onClick={handleAdd}>新增</Button> )} {index !== 0 && ( <Button style={{ marginLeft: "20px" }} onClick={() => handle 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(26) 评论(0) 推荐(0)
摘要: 不需要每一个写then 然后进行数据得处理即可 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(15) 评论(0) 推荐(0)
摘要: const handleSave = async () => { let arr: any = [] const res = await form.validateFields() console.log(res) arr = myFunc(res) console.log(arr, "arrarr 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(29) 评论(0) 推荐(0)
摘要: //目标数组拼接 export function concatTarget(arr1:any, arr2:any) { const result = [] for (const v1 of arr1) { for (const v2 of arr2) { result.push({ ...v1, / 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(30) 评论(0) 推荐(0)
摘要: export function myContact(target: any, source: any) { for (const [key, value] of Object.entries(source)) { const [name, index] = key.split('-') // 要求k 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(25) 评论(0) 推荐(0)
摘要: Object.values(newObj) 转换后 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(26) 评论(0) 推荐(0)
摘要: let obj = { "color-1": "1", "color-2": "2", "color-3": "3", "geyao-1": "1", "geyao-2": "2", "geyao-3": "3" } function myFunc(obj) { const newObj = {} 阅读全文
posted @ 2022-10-22 17:03 前端导师歌谣 阅读(35) 评论(0) 推荐(0)