public ActionResult NewPartWindow(string id, string copy, string code)
{
var vm = new VM(this);
var name = string.IsNullOrWhiteSpace(code) ? vm.NULL : code;
var title = string.Format("{0}[{1}]", RS_Wms.Part, name);
return this.Y().WindowSearch(vm.ID_NEW_WIN_PART, title, 700, 650)
.Loader(this.Y().ComponentLoader()
//加载的路径
.Url(vm.EditUrl)
//加载模式
.Mode(LoadMode.Frame)
.Scripts(true)
//添加参数
.Params(param =>
{
param.Add(this.Y().Parameter(vm.FIELD_NAME_ID, id));
param.Add(this.Y().Parameter(vm.FIELD_NAME_COPY, copy));
})
.DisableCaching(true))
.ToComponent().ToAjax();
}