自定义.w向导

平台默认带的w向导都在/UI2/system/templates,自定义向导也要放到这个目录 自定义w向导时可以先参考/UI2/system/templates/simplePC/list1实现,有template.config.xml、template目录和一个png的图片构成 template.config.xml配置文件说明如下: 1. <images> <image src="list1.png" /> </images> 配置在向导列表中选择这个向导是右边区域展现的向导生成的页面效果的图片 2. <items file="template/list.w"> <item text="主数据" configPage="$UI/system/templates/common/mainDataBaas.w"/> <item text="表单" configPage="$UI/system/templates/common/formViewBaas.w"/> <item file="template/list.js"/> </items> 配置生成.w的需要数据data和展现组件 template目录下文件是生成.w文件需要的模版.w和js文件 向导需要的文件都创建好之后,需要在/UI2/system/templates下的XXX.templates.xml文件中添加这个向导的配置,这样才会在w向导的列表中显示自定义的向导供选择,如果XXX.templates.xml文件没有放到/UI2/system/templates目录下需要在/UI2/system/config/studio.xml中配置节点,设置XXX.templates.xml的具体路径 如果没有在/UI2/system/templates下创建模版,在配置XXX.templates.xml文件时节点中配置path路径时指向自己的模版目录