Ver código fonte

资料归集->资料管理

MaiXinRong 1 mês atrás
pai
commit
f085b3679b

+ 1 - 1
app/const/sp_page_show.js

@@ -18,7 +18,7 @@ const managerPageControl = [
     { title: '项目概况', name: 'openInfo', value: pageStatus.show, type: 'checkbox' },
     { title: '决策大屏', name: 'openDataCollect', value: pageStatus.show, type: 'checkbox', tip: '开启后,前台配置用户权限后方可显示' },
     { title: '合同管理', name: 'openContract', value: pageStatus.show, type: 'checkbox' },
-    { title: '资料归集', name: 'openFile', value: pageStatus.show, type: 'checkbox' },
+    { title: '资料管理', name: 'openFile', value: pageStatus.show, type: 'checkbox' },
     { title: '动态投资', name: 'openBudget', value: pageStatus.show, type: 'checkbox', tip: '开启后,前台配置用户权限后方可显示' },
     { title: '支付审批', name: 'openPayment', value: pageStatus.show, type: 'checkbox', tip: '开启后,前台配置用户权限后方可显示' },
     { title: '资金监管', name: 'openFinancial', value: pageStatus.show, type: 'checkbox' },

+ 1 - 1
app/service/sub_proj_permission.js

@@ -79,7 +79,7 @@ module.exports = app => {
                         '5、查看所有合同:未授权节点情况下可以查看包括其他单位人员添加的合同',
                         '注:查看合同第3、4、5必须选择其一,否则无法查看本项目合同管理',
                     ] },
-                { key: 'file', name: '资料归集', field: 'file_permission' },
+                { key: 'file', name: '资料管理', field: 'file_permission' },
                 { key: 'budget', name: '动态投资', field: 'budget_permission' },
                 {
                     key: 'financial', name: '资金监管', children: [

+ 1 - 1
app/view/file/file.ejs

@@ -1,7 +1,7 @@
 <div class="panel-content">
     <div class="panel-title fluid">
         <div class="title-main  d-flex justify-content-between">
-            <div>资料归集/<%- ctx.subProject.name %><span class="ml-4" id="file-count"></span></div>
+            <div>资料管理/<%- ctx.subProject.name %><span class="ml-4" id="file-count"></span></div>
             <div class="ml-auto">
                 <% if (ctx.session.sessionUser.is_admin) { %>
                 <a href="/sp/<%- ctx.subProject.id %>/fm" class="btn btn-outline-primary btn-sm ml-1">管理分类</a>

+ 1 - 1
app/view/file/index.ejs

@@ -1,7 +1,7 @@
 <div class="panel-content">
     <div class="panel-title fluid">
         <div class="title-main  d-flex justify-content-between">
-            <div>资料归集</div>
+            <div>资料管理</div>
             <div class="d-inline-block ml-1" id="show-level"></div>
             <div class="ml-auto"></div>
         </div>

+ 1 - 1
app/view/file/manage.ejs

@@ -2,7 +2,7 @@
     <div class="panel-title fluid">
         <div class="title-main d-flex justify-content-between">
             <div class="d-flex">
-                资料归集/<%- ctx.subProject.name %>
+                资料管理/<%- ctx.subProject.name %>
                 (当前状态:<span class="<%- ctx.subProject.lock_file ? 'text-success' : 'text-warning'%>"><%- ctx.subProject.lock_file ? '锁定' : '未锁定'%></span>)
                 <div class="d-flex">
                     <div class="alert alert-warning p-1 mt-1"><i class="fa Example of exclamation-circle fa-exclamation-circle "></i> 请先锁定再编辑;锁定时其他人不可操作资料归集,仅可查看;编辑完成后需解锁。</div>

+ 1 - 1
app/view/sub_proj/modal.ejs

@@ -154,7 +154,7 @@
                             <th rowspan="2" class="align-middle">成员名称</th>
                             <th rowspan="2" class="align-middle">职位</th>
                             <th colspan="2">动态投资</th>
-                            <th colspan="4">资料归集</th>
+                            <th colspan="4">资料管理</th>
                             <th rowspan="2" class="align-middle">关联标段</th>
                             <th rowspan="2" class="align-middle">移除</th>
                         </tr>

+ 2 - 2
config/menu.js

@@ -111,11 +111,11 @@ const menu = {
         notIncludedUrl: ['/contract/tender'],
     },
     file: {
-        name: '资料归集',
+        name: '资料管理',
         icon: 'fa-file-zip-o',
         display: true,
         children: null,
-        caption: '资料归集',
+        caption: '资料管理',
         controller: 'file',
         controllers: ['file', 'fm'],
     },