From 3c69868ae407c0cee2bfd4a75f1c62b1854c5c66 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期三, 29 五月 2024 12:42:41 +0800 Subject: [PATCH] 铺货管理 --- CoreCms.Net.Web.Admin/Controllers/Order/CoreCmsPlanOrderController.cs | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/CoreCms.Net.Web.Admin/Controllers/Order/CoreCmsPlanOrderController.cs b/CoreCms.Net.Web.Admin/Controllers/Order/CoreCmsPlanOrderController.cs index af80319..829d941 100644 --- a/CoreCms.Net.Web.Admin/Controllers/Order/CoreCmsPlanOrderController.cs +++ b/CoreCms.Net.Web.Admin/Controllers/Order/CoreCmsPlanOrderController.cs @@ -300,7 +300,26 @@ return jm; } #endregion + #region 閫夋嫨鐪�============================================================ + // POST: Api/CoreCmsPlanOrder/GetIndex + /// <summary> + /// 閫夋嫨甯� + /// </summary> + /// <returns></returns> + [Description("閫夋嫨鐪�")] + [AllowAnonymous] + public async Task<AdminUiCallBack> GetCityId(int shengid = 0) + { + //杩斿洖鏁版嵁 + var jm = new AdminUiCallBack { code = 0 }; + var shi = await _areaServices.QueryListByClauseAsync(p => p.parentId == shengid); + + jm.data = shi; + + return jm; + } + #endregion #region 閫夋嫨甯�============================================================ // POST: Api/CoreCmsPlanOrder/GetIndex -- Gitblit v1.9.1