上一页 1 2 3 4 5 6 7 ··· 10 下一页
摘要: 1 递归 是什么? 递归确定只是函数自调用吗? 如果非得要用递归渲染一个菜单, 你要怎么做. 说具体的步骤. 说核心. //第n项的和 sum(n) = sum(n-1)+n 终止条件n=1 function sum(n){ if(n==1) return 1 return sum(n-1) + n 阅读全文
posted @ 2023-04-19 22:18 龙旋风 阅读(66) 评论(0) 推荐(0) 编辑
摘要: -- 向供应商交期计划变更发送通知 SELECT-- a.pur_order_detail_id, a.purchase_id purchaseId, TY.user_id ucUserid, a.vendor_tenant_id vendorTenantId, a.id id FROM deliv 阅读全文
posted @ 2023-03-31 10:09 龙旋风 阅读(24) 评论(0) 推荐(0) 编辑
摘要: -- iuap_yonbuilder_service库 -- 查询包含'AppContext'关键字的函数文件 SELECT e.description, e.source_flag, e.file_name, c.file_content, LOCATE( 'AppContext', c.file 阅读全文
posted @ 2023-03-28 16:13 龙旋风 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package com.yonyou.mls.srm.mlssrmkkgys.deliveryplan.service.impl; import com.yonyou.cloud.apm.internal.com.alibaba.fastjson.JSONObject; import com.yon 阅读全文
posted @ 2023-03-28 11:02 龙旋风 阅读(37) 评论(0) 推荐(0) 编辑
摘要: package com.yonyou.ucf.mdf.app.service.servicePurchaser.impl; import com.yonyou.cloud.apm.internal.com.alibaba.fastjson.JSONObject; import com.yonyou. 阅读全文
posted @ 2023-03-14 09:37 龙旋风 阅读(39) 评论(0) 推荐(0) 编辑
摘要: BIP 数据变换 阅读全文
posted @ 2023-03-09 15:08 龙旋风 阅读(29) 评论(0) 推荐(0) 编辑
摘要: BIP 卡片 取消 阅读全文
posted @ 2023-03-09 11:18 龙旋风 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 用友BIP table页面的操作 阅读全文
posted @ 2023-03-09 09:41 龙旋风 阅读(33) 评论(0) 推荐(0) 编辑
摘要: var arr = [{subItemName:'材料2'},{subItemName:'材料1'},{subItemName:'材料3'}] var compare = function (obj1, obj2) { var val1 = obj1.subItemName.match(/\d+/g 阅读全文
posted @ 2023-03-07 10:17 龙旋风 阅读(10) 评论(0) 推荐(0) 编辑
摘要: cb.loader.runCommandLine('bill', { billtype: 'VoucherList', params: { // id:'', mode: 'edit', readOnly: true, domainKey: viewModel.getDomainKey() }, b 阅读全文
posted @ 2023-03-06 17:31 龙旋风 阅读(46) 评论(2) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 10 下一页