码迷,mamicode.com
首页 > 其他好文 > 详细

WTM_LayUI 二级联动

时间:2018-06-20 10:16:24      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:uid   box   eid   mode   gets   esc   guid   png   new   

cshtml页面:

1 <wt:combobox field="Entity.ServicenameCodeID" items="AllServicenameCodes" link-field="@Model.AllshippingmethodsID" trigger-url="/ChannelApiInfor/GetServicenameIDByshippingmethod" />
2         <wt:combobox field="@Model.AllshippingmethodsID" items="Allshippingmethods" multi-select="true" />

 控制器方法:

1 [ActionDescription("级联")]
2         public IActionResult GetServicenameIDByshippingmethod(Guid id)
3         {
4            var vm= DC.Set<ShippingMethod>().Where(c => c.ServicenameCodeID == id).Select(m=> new { Text=m.cnname,Value=m.ID}).ToList();
5             
6             return Json(vm);
7         }

另外可以参照一下图片:

技术分享图片

技术分享图片

WTM_LayUI 二级联动

标签:uid   box   eid   mode   gets   esc   guid   png   new   

原文地址:https://www.cnblogs.com/cfss/p/cascade.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!