From 9384f42e1d7e3ad502ea801be0c0d8762a0c3123 Mon Sep 17 00:00:00 2001
From: username@email.com <yzy2002yzy@163.com>
Date: 星期一, 01 十一月 2021 16:08:19 +0800
Subject: [PATCH] 提交
---
zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Edit.cshtml | 35 ++++++++++++++++++++++++++++++-----
1 files changed, 30 insertions(+), 5 deletions(-)
diff --git a/zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Edit.cshtml b/zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Edit.cshtml
index b098fd2..19f6841 100644
--- a/zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Edit.cshtml
+++ b/zhengcaioa/zhengcaioa/Views/ExpertTestTopic/Edit.cshtml
@@ -261,11 +261,11 @@
</div>
<label grouptype="Vdata" class="text-right col-sm-1 col-md-1 control-label">
- 鏄惁绛旀
+ 鏄惁绛旀
</label>
- <div class="col-sm-1 col-md-1" grouptype="Vdata" style="width:5%;">
+ <div class="text-left col-sm-1 col-md-1" grouptype="Vdata" style="width:5%;">
@if ("A" == expertTestTopicanwserDTOs[i].Shifouzhengqu)
{
<input type="checkbox" checked="checked" name="ShifouzhengquName" value="A" onclick="checkShifouzhengqu(this)" />
@@ -741,7 +741,17 @@
var Zhishitype = $("#Zhishitype").val();
var Area = $("#Area").val();
- window.location = "/ExpertTestTopic/Edit?Topictype=" + Topictype + "&Zhishitype=" + Zhishitype + "&Area=" + Area + ""
+ var falvs = document.getElementsByName("Falv");
+
+ var Falv = "";
+
+ for (var i = 0; i < falvs.length; i++) {
+
+ Falv += falvs[i].value + ",";
+ }
+
+
+ window.location = "/ExpertTestTopic/Edit?Topictype=" + Topictype + "&Zhishitype=" + Zhishitype + "&Area=" + Area + "&Falv=" + Falv + ""
if ($.isNumber(imgLoad)) {
parent.layer.close(imgLoad);
}
@@ -877,7 +887,17 @@
var Zhishitype = $("#Zhishitype").val();
var Area = $("#Area").val();
- window.location = "/ExpertTestTopic/Edit?Topictype=" + Topictype + "&Zhishitype=" + Zhishitype + "&Area=" + Area +""
+ var falvs = document.getElementsByName("Falv");
+
+ var Falv = "";
+
+ for (var i = 0; i < falvs.length; i++) {
+
+ Falv += falvs[i].value + ",";
+ }
+
+
+ window.location = "/ExpertTestTopic/Edit?Topictype=" + Topictype + "&Zhishitype=" + Zhishitype + "&Area=" + Area + "&Falv=" + Falv + ""
//try {
// _pageAutoClose();//鑷姩鍏抽棴椤甸潰鏂规硶
@@ -909,10 +929,15 @@
var index = parent.layer.getFrameIndex(window.name);
parent.layer.isRefresh = true;
parent.layer.closeAll('loading');
- parent.layer.close(index);
+ //parent.layer.close(index);
return false;
}
+ $(window).unload(function () {
+ _pageAutoClose();
+
+ });
+
function addBtn(obj) {
var oTr = document.createElement('div');
--
Gitblit v1.9.1