摘要: 搜索结果:tree=tree?.map(item => ({ ...item, children: item.children?.filter(child => child.value.includes(serchName) ) ?? [] })) .filter(item => item.chil 阅读全文
posted @ 2025-09-28 14:18 龙丶谈笑风声 阅读(3) 评论(0) 推荐(0)
摘要: 创建一个js文件,例如directives.js import { nextTick } from 'vue'export const Loadmore = app => { app.directive('loadmore', { mounted: function(el, binding) { n 阅读全文
posted @ 2025-07-31 17:30 龙丶谈笑风声 阅读(105) 评论(0) 推荐(0)
摘要: https://gitee.com/kwwwvagaa/net_winform_custom_control#https://gitee.com/kwwwvagaa/net_winform_custom_control/blob/master/LICENSE https://www.hzhcontr 阅读全文
posted @ 2025-03-19 13:46 龙丶谈笑风声 阅读(18) 评论(0) 推荐(0)
摘要: 在官方网站下载Cocos2d-X(https://www.cocos.com/en/cocos2d-x) 然后下载python 最好是2.7版本 然后下载Cmake(https://cmake.org/download/) 将下载好的Cocos2d-X解压出来,打开cmd cd C:\cocos2d 阅读全文
posted @ 2025-03-04 11:37 龙丶谈笑风声 阅读(88) 评论(0) 推荐(0)
摘要: #!/bin/bash # 定义要监控的容器名称 CONTAINER_NAME="容器名称" while true;do # 检查容器是否存在 if ! docker ps -a --format '{{.Names}}' | grep -q "^${CONTAINER_NAME}$"; then 阅读全文
posted @ 2025-02-27 10:09 龙丶谈笑风声 阅读(29) 评论(0) 推荐(0)
摘要: #!/bin/bash # 定义要监控的容器名称 CONTAINER_NAME="容器名称" # 无限循环,持续监控容器状态 while true; do # 检查容器是否在运行 if ! docker ps --format '{{.Names}}' | grep -q "^${CONTAINER 阅读全文
posted @ 2025-02-27 10:06 龙丶谈笑风声 阅读(30) 评论(0) 推荐(0)
摘要: :disabledDate=“disabledDate” const disabledDate=(date) => { const firstDayOfMonth = moment(date).date(1); // 获取该日期所在月份的1号 return date && date < moment 阅读全文
posted @ 2025-01-05 16:24 龙丶谈笑风声 阅读(655) 评论(0) 推荐(0)
摘要: const updateWidth = () => { let resize = document.getElementById("datatree"); let mainForm = document.getElementsByClassName("mainForm"); resize.onmou 阅读全文
posted @ 2024-12-24 13:37 龙丶谈笑风声 阅读(34) 评论(0) 推荐(0)
摘要: static ClientWebSocket webSocket0; static CancellationToken cancellation; // 应用APPID(必须为webapi类型应用,并开通星火认知大模型授权) const string x_appid = "xxxxx"; // 接口 阅读全文
posted @ 2024-04-18 17:46 龙丶谈笑风声 阅读(390) 评论(0) 推荐(0)
摘要: /// <summary> /// kimi的对接方法 /// </summary> public async void GetHttpRequst() { var _httpClient= new HttpClient(); var _apiUrl= "https://api.moonshot.c 阅读全文
posted @ 2024-04-18 15:41 龙丶谈笑风声 阅读(1513) 评论(0) 推荐(0)