摘要: 实例 支持在下拉分页框内输入分页条数来实现自定义分页 代码 usePageSizeSelect.js import {useEffect, useState} from "react"; import Bus from "../../utils/eventBus"; export function 阅读全文
posted @ 2024-11-20 10:43 Felix_Openmind 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 上传组件 DragClickUpload.tsx import {CloudUploadOutlined} from '@ant-design/icons'; import type {UploadProps} from 'antd'; import {message, Upload} from ' 阅读全文
posted @ 2024-11-20 10:34 Felix_Openmind 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 之前跳转代码 router.push({ path: '/appDetail', query: {id: appInfo.id}, }) 修改后 window.open(router.resolve({ path: '/appDetail', query: { id: appInfo.id } }) 阅读全文
posted @ 2024-11-05 20:58 Felix_Openmind 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 消息需要通过其 WebContents 实例发送到渲染器进程。 main.js const { app, BrowserWindow, Menu, ipcMain } = require('electron/main') const path = require('node:path') funct 阅读全文
posted @ 2024-11-04 18:41 Felix_Openmind 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 双向IPC的一个常见应用:从渲染器进程代码调用主进程模块并等待结果 【ipcRenderer.invoke】《 》【ipcMain.handle()】 main.js const { app, BrowserWindow, ipcMain, dialog } = require('electron/ 阅读全文
posted @ 2024-11-04 18:14 Felix_Openmind 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 【ipcRenderer.send】API发送消息,之后使用【ipcMain.on】API接收 从Web内容调用主进程API 主进程监听main.js =》 ipcMain.on() 预加载脚本暴露ipcRenderer.send() 》需要使用 contextBridge API 来选择要从预加载 阅读全文
posted @ 2024-11-04 17:41 Felix_Openmind 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <a-tree :tree-data="selectItem.options.options" :replace-fields="{ children: 'children', title: 'label', code: 'code' }" > <template #title="{ label, 阅读全文
posted @ 2024-10-17 11:46 Felix_Openmind 阅读(18) 评论(0) 推荐(0) 编辑
摘要: <template> <!-- 身份证号 --> <a-input v-decorator="[ record.model, // input 的 name { initialValue: getInitlVal(record), // 默认值 rules: [ { required: true, 阅读全文
posted @ 2024-10-11 14:18 Felix_Openmind 阅读(27) 评论(0) 推荐(0) 编辑
摘要: <template> <a-modal class="modal-container" style="min-width: 1180px;" :visible="modalState.visible" :footer="null" :bodyStyle="{padding: 0, borderRad 阅读全文
posted @ 2024-09-12 20:15 Felix_Openmind 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 参考:https://juejin.cn/post/7368433531926052874 相关命令 nginx // 启动 nginx -s stop // 停止 nginx -s reload // 重新加载 nginx -t // 检查配置文件的正确性 nginx -v // 查看Nginx版 阅读全文
posted @ 2024-09-10 09:56 Felix_Openmind 阅读(2) 评论(0) 推荐(0) 编辑