提交 b3bccb9d authored 作者: kxjia's avatar kxjia

完善风险监测

上级 585c93ee
......@@ -157,7 +157,7 @@
</style>
<div class="app-loading">
<div class="app-loading-wrap">
<img src="<%= basePublicPath %>/resource/img/logo.png" class="app-loading-logo" alt="Logo" />
<img src="<%= basePublicPath %>/resource/img/logo.png" class="app-loading-logo" alt="Logo" style="width: 80px;height:32px;" />
<div class="app-loading-dots">
<span class="dot dot-spin"><i></i><i></i><i></i><i></i></span>
</div>
......
......@@ -55,7 +55,7 @@
import MetricStatReportModal from './components/MetricStatReportModal.vue'
import {columns, searchFormSchema} from './MetricStatReport.data';
import {list, deleteOne, batchDelete, getImportUrl,getExportUrl,caluculatAllMetric} from './MetricStatReport.api';
import { downloadFile } from '/@/utils/common/renderUtils';
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
import ShowFileContentModal from './components/ShowFileContentModal.vue';
......@@ -184,7 +184,6 @@
function goToFile(record){
if(!!record.filepath){
let url = getFileAccessHttpUrl(record.filepath);
window.open(url);
} else {
message.warning("没有找到要下载的文件")
......
......@@ -205,6 +205,7 @@ const getMonths = (value: Dayjs) => {
};
const initYearOptions = () => {
yearOptions.value = [];
const currentYear = new Date().getFullYear();
for(let i = currentYear - 3; i <= currentYear; i++) {
yearOptions.value.push(i);
......
......@@ -161,13 +161,14 @@
curDocFile.value = fileData;
const globOnlineViewUrl = import.meta.env.VITE_GLOB_ONLINE_VIEW_URL;
fileTp.value = fileData.fileTp;
fileUrl.value = globOnlineViewUrl + fileData.filePath;
fileTitle.value = '文件名:' + fileData.fileName;
loading.value = true;
try {
if (fileTp.value == 'docx') {
fileUrl.value = globOnlineViewUrl +"/sys/common/static/"+ fileData.filePath;
fileUrl.value = globOnlineViewUrl + fileData.filePath;
await fetchDoc(fileUrl.value);
} else if (fileTp.value == 'pdf') {
} else if (fileTp.value == 'txt') {
......
<template>
<div class="aui-image-text">
<!-- 图片容器 - 完全透明,水平居中,下边距50px -->
<div style="text-align: center; margin-bottom: 50px;">
<img src="../../../assets/loginmini/icon/logo.png" style="height: 160px; margin: 0 auto; opacity: 50;" />
</div>
<div class="company-logo">
<i class="fas fa-shield-alt"></i>
</div>
<h1 class="company-title">中润长弘管理咨询有限公司</h1>
<div class="company-description">
金融科技风险管理平台,为西部矿业集团财务有限公司提供专业的风险分析、安全保障和智能风控平台。
专注于为金融机构提供全方位的风险管理解决方案,包括专业的咨询服务与先进的风险控制平台。
我们致力于帮助客户构建稳健的金融安全体系,实现业务高效增长与风险可控的完美平衡。
</div>
<div class="feature-list">
<div class="feature-item">
......@@ -42,8 +37,8 @@ const features = ref([
</script>
<style lang="less" scoped>
.aui-image-text {
// 完全透明,不添加任何背景或样式干扰
.aui-image-text {
}
.company-logo {
......@@ -66,6 +61,7 @@ const features = ref([
line-height: 1.6;
margin-bottom: 30px;
opacity: 0.95;
}
.feature-list {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论