From eb197f8a095f216003ce3df159482a8b42812d1e Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期五, 22 七月 2022 08:56:11 +0800
Subject: [PATCH] 文书管理修改
---
zhengcaioa/zhengcaioa/Controllers/SysCodeController.cs | 67 +++++++++++++++++++++++++++++++++
1 files changed, 67 insertions(+), 0 deletions(-)
diff --git a/zhengcaioa/zhengcaioa/Controllers/SysCodeController.cs b/zhengcaioa/zhengcaioa/Controllers/SysCodeController.cs
index 485fb56..c123f4c 100644
--- a/zhengcaioa/zhengcaioa/Controllers/SysCodeController.cs
+++ b/zhengcaioa/zhengcaioa/Controllers/SysCodeController.cs
@@ -582,6 +582,26 @@
return View();
}
+ public IActionResult Editrequestinfozidingyi(string id)
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+
+
+ SysCodeDtlEntity sysCodeDtlEntity = new SysCodeDtlEntity();
+
+
+ sysCodeDtlEntity = _sysCodeService.GetSysCodeDtlInfo(id, "t_challengeletter", "request_info");
+
+
+ ViewData.Model = sysCodeDtlEntity;
+
+
+
+
+ return View();
+ }
+
//璐ㄧ枒浜嬮」
@@ -730,6 +750,30 @@
}
+
+
+ public IActionResult Editlawzidingyi(string Classify1 = "")
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+
+
+ SysCodeDtlEntity sysCodeDtlEntity = new SysCodeDtlEntity();
+
+ var sysCodeDtlEntities = _sysCodeService.GetSysCodeDtlInfoss(Classify1, "t_complaint_items", "law");
+ sysCodeDtlEntity.Classify1 = Classify1;
+ sysCodeDtlEntity.CodeId = sysCodeDtlEntities[0].CodeId;
+
+ ViewData.Model = sysCodeDtlEntity;
+
+ ViewBag.falv = _liaotianService.GetSYScode("expert_test_topicjiexi", "falv");
+ ViewBag.question = _liaotianService.GetSYScode("t_challenge_items", "question");
+ ViewBag.sysCodeDtlEntities = sysCodeDtlEntities;
+
+ return View();
+ }
+
+
/// <summary>
/// 淇濆瓨
/// </summary>
@@ -788,5 +832,28 @@
return JsonConvert.SerializeObject(resultEntity);
}
+
+
+
+ public IActionResult Editquestionzidingyi(string id)
+ {
+ var curentuser = JsonConvert.DeserializeObject<PltUser>(HttpContext.Session.GetString("User"));
+ ViewData["curentuser"] = curentuser;
+
+
+ SysCodeDtlEntity sysCodeDtlEntity = new SysCodeDtlEntity();
+
+
+ sysCodeDtlEntity = _sysCodeService.GetSysCodeDtlInfo(id, "t_challenge_items", "question");
+
+
+ ViewData.Model = sysCodeDtlEntity;
+
+
+
+
+ return View();
+ }
+
}
}
--
Gitblit v1.9.1