仪表盘
版本库
文件存储
活动
搜索
登录
SuZhouGuanHong
/
ShanMeiXinNengYuan
陕煤新能源立库
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
fix(WCS): 解决OutboundTaskFlowService与TaskService的循环依赖
wanshenmean
4 天以前
90fa55064597236b9581304f232a607ffc7b730e
[SuZhouGuanHong/ShanMeiXinNengYuan.git]
/
Code
/
WMS
/
WIDESEA_WMSClient
/
src
/
components
/
basic
/
VolForm
/
VolFormRender.js
1
2
3
4
5
6
7
8
9
10
11
12
13
import { h } from 'vue';
export default {
name: "FormExpand",
functional: true,
props: {
render: Function,
par: {}//测试参数
},
render: ({ render, par }) => {
return render(h, { par }); //h();
}
};