Commit 84381f4b authored by 黄奎's avatar 黄奎

页面修改

parent 69f88bcc
...@@ -712,6 +712,14 @@ namespace Edu.Module.Exam ...@@ -712,6 +712,14 @@ namespace Edu.Module.Exam
return obj; return obj;
} }
/// <summary>
/// 根据题目分类获取题目分页列表
/// </summary>
/// <param name="pageIndex"></param>
/// <param name="pageSize"></param>
/// <param name="rowsCount"></param>
/// <param name="query"></param>
/// <returns></returns>
public List<object> GetAppQuestionCategoryListModule(int pageIndex, int pageSize, out long rowsCount, RB_Question_ViewModel query) public List<object> GetAppQuestionCategoryListModule(int pageIndex, int pageSize, out long rowsCount, RB_Question_ViewModel query)
{ {
List<object> list = new List<object>(); List<object> list = new List<object>();
......
...@@ -528,6 +528,13 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState <>2 ...@@ -528,6 +528,13 @@ WHERE o.OrderState=1 and og.`Status`=0 and sog.`Status`=0 and og.GuestState <>2
{ {
model.StuSourceId = 0; model.StuSourceId = 0;
} }
else if (model.CreateType == Common.Enum.User.StuCreateTypeEnum.CustomerInput)
{
if (model.CustomerId <= 0 && model.StuSourceId > 0)
{
model.CustomerId = model.StuSourceId;
}
}
model.StuTel = Common.Plugin.StringHelper.ReplaceMobile(model.StuRealMobile); model.StuTel = Common.Plugin.StringHelper.ReplaceMobile(model.StuRealMobile);
if (model.StuId > 0) if (model.StuId > 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment