Browse Source

【修改】数据上报:查询条件文字宽度调整;文件管理:查询条件中目录下拉框调整;

金隅分支
dyy 2 years ago
parent
commit
ebb24ceb65
2 changed files with 14 additions and 3 deletions
  1. +5
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/QualityReport/Index.cshtml
  2. +9
    -2
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js

+ 5
- 1
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/LR_Desktop/Views/QualityReport/Index.cshtml View File

@@ -2,7 +2,11 @@
ViewBag.Title = "数据上报";
Layout = "~/Views/Shared/_Index.cshtml";
}

<style>
.lr-query-formcontent .lr-form-item-title{
width:82px;
}
</style>
<div class="lr-layout ">
<div class="lr-layout-center">
<div class="lr-layout-wrap lr-layout-wrap-notitle ">


+ 9
- 2
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/PersonnelManagement/Views/WP_FileList/Index.js View File

@@ -64,7 +64,14 @@ var bootstrap = function ($, learun) {
page.search(queryJson);
}
}, 220, 400);
$('#CId').lrDataSourceSelect({ code: 'FileCatalog', value: 'cid', text: 'cname' });
//$('#CId').lrDataSourceSelect({ code: 'FileCatalog', value: 'cid', text: 'cname' });
$('#CId').lrselect({
allowSearch: true,
url: top.$.rootUrl + '/LR_SystemModule/DataSource/GetDataTable?code=FileCatalog',
param: { strWhere: "1=1 AND CType='" + CType + "' " },
value: "cid",
text: "cname",
});
$('#FCreater').lrDataSourceSelect({ code: 'BaseUser', value: 'f_userid', text: 'f_realname' });
// 刷新
$('#lr_refresh').on('click', function () {
@@ -222,7 +229,7 @@ var bootstrap = function ($, learun) {
page.init();
}

function downLoad(fileId, fileTwo,lrToken) {
function downLoad(fileId, fileTwo, lrToken) {
if (fileTwo) {

top.learun.postFormSilence(top.$.rootUrl + '/PersonnelManagement/MP_QualityObjectives/AddFileRecord', { fileId: fileTwo }, function () {


Loading…
Cancel
Save