Example #1
0
        public ActionResult GetLevelQuanListJson(string queryJson)
        {
            var items = new Dictionary <string, string>();
            var quans = bll.GetQuantitativeIndicatorLevels(queryJson);

            foreach (var item in quans)
            {
                items.Add(item.ZBBH, item.ZBMC);
            }
            return(ToJsonResult(SetComboBoxValue(items)));
        }