新增【后台】微信支付商家转账增加场景选择。

This commit is contained in:
jianweie code
2025-08-04 16:52:24 +08:00
parent 8b6029320e
commit fd37f1daa7
8 changed files with 235 additions and 30 deletions

View File

@@ -294,12 +294,14 @@ namespace CoreCms.Net.Web.Admin.Controllers
var userTocashStatus = EnumHelper.EnumToList<GlobalEnumVars.UserTocashStatus>();
var userTocashType = EnumHelper.EnumToList<GlobalEnumVars.UserTocashType>();
var weChatPayTransferSceneId = EnumHelper.EnumToList<GlobalEnumVars.WeChatPayTransferSceneId>();
jm.data = new
{
model,
userTocashStatus,
userTocashType
userTocashType,
weChatPayTransferSceneId
};
return jm;
@@ -327,7 +329,7 @@ namespace CoreCms.Net.Web.Admin.Controllers
return jm;
}
var res = await _coreCmsUserTocashServices.Examine(entity.id, entity.status, entity.type);
var res = await _coreCmsUserTocashServices.Examine(entity.id, entity.status, entity.type, entity.sceneId);
jm.code = res.status ? 0 : 1;
jm.data = res.data;
jm.msg = res.msg;
@@ -360,12 +362,14 @@ namespace CoreCms.Net.Web.Admin.Controllers
var userTocashStatus = EnumHelper.EnumToList<GlobalEnumVars.UserTocashStatus>();
var userTocashType = EnumHelper.EnumToList<GlobalEnumVars.UserTocashType>();
var weChatPayTransferSceneId = EnumHelper.EnumToList<GlobalEnumVars.WeChatPayTransferSceneId>();
jm.data = new
{
model,
userTocashStatus,
userTocashType
userTocashType,
weChatPayTransferSceneId
};
return jm;