From ed3cdf5b1da340b715069e536c6e918266b3bbd5 Mon Sep 17 00:00:00 2001
From: dyy <807692433@qq.com>
Date: Wed, 23 Mar 2022 12:13:41 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91=E8=A1=A5?=
=?UTF-8?q?=E5=8A=A9=E7=94=B3=E8=AF=B7=E8=AE=B0=E5=BD=95=EF=BC=9A=E5=A4=9A?=
=?UTF-8?q?=E6=9D=A1=E4=BB=B6=E6=9F=A5=E8=AF=A2=E9=A1=B9=E4=BF=AE=E6=94=B9?=
=?UTF-8?q?=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../StudentWork/Views/SW_Ask_Main/StudentIndex.cshtml | 8 ++------
.../Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.js | 6 ++++++
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.cshtml b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.cshtml
index 2182c3c46..cb02c92dc 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.cshtml
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.cshtml
@@ -14,7 +14,7 @@
diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.js b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.js
index f689bd2fe..ec2cc3abc 100644
--- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.js
+++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/StudentWork/Views/SW_Ask_Main/StudentIndex.js
@@ -25,6 +25,11 @@ var bootstrap = function ($, learun) {
// 访问数据接口地址
url: top.$.rootUrl + '/StudentWork/SW_Ask_Type/GetAllTree?IsSetBatch=false&BatchTypeList=null'
});
+ $('#StudentMainStatus').lrselect({
+ data: [{ value: '0', text: '草稿' }, { value: '1', text: '审批中' }, { value: '2', text: '审批通过' }, { value: '3', text: '审批未通过' }],
+ value: "value",
+ text: "text"
+ });
// 刷新
$('#lr_refresh').on('click', function () {
location.reload();
@@ -80,6 +85,7 @@ var bootstrap = function ($, learun) {
},
search: function (param) {
param = param || {};
+ param.TId == "-1" ? param.TId = "" : param.TId;
param.UserId = UserId;
$('#gridtable').jfGridSet('reload', { queryJson: JSON.stringify(param) });
}