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 @@
-
标题
+
问卷标题
@@ -27,11 +27,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) }); }