Browse Source

增加非涉密提示

da-xian 2 months ago
parent
commit
9ea451ea0b

+ 3 - 0
vue/src/components/basic/file-preview/index.vue

@@ -5,6 +5,9 @@
   <a-modal :visible="visible" :ok-button-props="{ style: { display: 'none' } }"
            wrap-class-name="full-modal" style="text-align: center" :title="title"
            cancel-text="关闭" @cancel="visible = !visible">
+    <div style="color: red;font-size: larger;text-align: left;">
+      严禁在非涉密系统处理、传输国家秘密、商业秘密、工作秘密,请确认文件资料不涉及国家秘密、商业秘密、工作秘密!
+    </div>
     <a-spin tip="加载中..." size="small" :spinning="spinning">
       <vue-office-excel v-if="fileSuffix=='xlsx'" :src="previewUrl" style="height: 90vh;"
                         @rendered="rendered" @error="renderedError"/>

+ 1 - 1
vue/src/components/basic/flowPreview/index.vue

@@ -164,7 +164,7 @@ export default defineComponent({
   .ant-modal-content {
     display: flex;
     flex-direction: column;
-    height: calc(100vh);
+    //height: calc(100vh);
   }
 
   .ant-modal-body {

+ 1 - 1
vue/src/components/basic/pdfPreview/index.vue

@@ -48,7 +48,7 @@ export default defineComponent({
   .ant-modal-content {
     display: flex;
     flex-direction: column;
-    height: calc(100vh);
+    //height: calc(100vh);
   }
 
   .ant-modal-body {

+ 17 - 3
vue/src/layout/header/index.vue

@@ -6,7 +6,7 @@
         <span style="font-size: 30px;margin-left:-10px;">数据湖数据检索</span>
       </Space>
       <Space :size="20">
-        <!--      <Search />-->
+<!--              <Search />-->
         <shopping-cart-outlined @click="onShowCart" title="购物车"
                                 :style="{fontSize: '25px', color: 'red',display:'contents'}"/>
         <Tooltip title="修改密码" placement="bottom" v-if="isDev">
@@ -17,9 +17,12 @@
         <Tooltip title="退出系统" placement="bottom" v-if="isDev">
           <PoweroffOutlined @click.prevent="doLogout"/>
         </Tooltip>
-        <LocalePicker/>
-      </Space>
+<!--        <LocalePicker/>-->
+        </Space>
     </Layout.Header>
+    <Layout.Content class="layout-header-hint">
+      本系统为非涉密系统,严禁处理、传输国家秘密、商业秘密、工作秘密等!
+    </Layout.Content>
     <ShoppingcartModal ref="shoppingCartModalRef"></ShoppingcartModal>
   </div>
 </template>
@@ -139,4 +142,15 @@ onMounted(() => {
     cursor: pointer;
   }
 }
+.layout-header-hint{
+  display: flex;
+  justify-content: flex-end;
+  background-color: white !important;
+  color: red;
+  font-size: medium;
+  padding-right: 10px;
+  height: 0px;
+  position: sticky;
+  z-index: 100;
+}
 </style>

+ 3 - 0
vue/src/views/applyform/apply.vue

@@ -68,6 +68,9 @@
           </template>
         </a-list>
       </div>
+      <span style="color: red;font-size: larger;">
+          严禁在非涉密系统处理、传输国家秘密、商业秘密、工作秘密,请确认文件资料不涉及国家秘密、商业秘密、工作秘密!
+      </span>
     </a-modal>
   </div>
 </template>

+ 3 - 0
vue/src/views/applyform/approve.vue

@@ -10,6 +10,9 @@
     :closable="true"
     wrapClassName="ant-modal-cust-warp">
     <a-form autocomplete="off" ref="formRef" :model="dataModel">
+        <span style="color: red;font-size: larger;">
+          严禁在非涉密系统处理、传输国家秘密、商业秘密、工作秘密,请确认审核的文件资料不涉及国家秘密、商业秘密、工作秘密!
+        </span>
       <a-divider orientation="left">审批处理方式</a-divider>
       <a-form-item name="reviewerAction" :rules="[{ required: true, message: '请选择处理方式' }]">
         <a-radio-group :options="actionOptions" v-model:value="dataModel.reviewerAction"></a-radio-group>

+ 3 - 0
vue/src/views/applyform/reviewer.vue

@@ -72,6 +72,9 @@
           </template>
         </a-list>
       </div>
+      <span style="color: red;font-size: larger;">
+          严禁在非涉密系统处理、传输国家秘密、商业秘密、工作秘密,请确认文件资料不涉及国家秘密、商业秘密、工作秘密!
+      </span>
     </a-modal>
     <approveModal ref="modalRef" :loadData="loadData"></approveModal>
   </div>

+ 3 - 0
vue/src/views/login/index.vue

@@ -28,6 +28,9 @@
           登录
         </a-button>
       </a-form-item>
+        <span style="color: red;font-size: larger;">
+          本系统为非涉密系统,严禁处理、传输国家秘密、商业秘密、工作秘密等!
+        </span>
       </div>
     </a-form>
   </div>