Browse Source

添加操作手册、修改上传提示

main
buaixuexideshitongxue 1 month ago
parent
commit
0f9dc59b96
  1. BIN
      public/manuals/长沙公安政府投资项目审计模块-操作手册V1.5.pdf
  2. 17
      src/layout/components/Header.vue
  3. 1
      src/views/report/edit/controlPrice.vue

BIN
public/manuals/长沙公安政府投资项目审计模块-操作手册V1.5.pdf

Binary file not shown.

17
src/layout/components/Header.vue

@ -20,9 +20,13 @@
<icon name="el-icon-Star" :size="22" />
<span>技术支持</span>
</li>
<li class="flex gap v-center" @click="goBackV1">
<!-- <li class="flex gap v-center" @click="goBackV1">-->
<!-- <icon name="el-icon-Back" :size="20" />-->
<!-- <span>返回旧版</span>-->
<!-- </li>-->
<li class="flex gap v-center" @click="openManual">
<icon name="el-icon-Back" :size="20" />
<span>返回旧版</span>
<span>操作手册</span>
</li>
<li class="flex gap v-center" @click="handleLogout">
<icon name="local-icon-logout" :size="20" />
@ -38,7 +42,7 @@
</header>
<div class="support-content" @click.stop>
<!-- <p>业务服务热线18163608038周巍警官 </p> -->
<p>技术服务热线18867391894 杨姣 13787166867李镇洋</p>
<p>技术服务热线(0731)89565662(转822) 杨姣 (0731)89565662(转902)李镇洋</p>
</div>
</div>
</div>
@ -47,6 +51,7 @@
import useUserStore from "@/stores/modules/user";
import { deleteToken } from "@/utils/token";
import { logout } from "@/api/auth";
import request, {BASE_PATH} from "@/api/request";
const { VITE_PROFILES } = process.env;
@ -72,6 +77,12 @@ function goBackV1() {
window.location.href = "/";
}
function openManual() {
const url = `/manuals/${encodeURIComponent('长沙公安政府投资项目审计模块-操作手册V1.5.pdf')}`;
window.open(url, '_blank', 'noopener,noreferrer');
}
function openHelp() {
window.open(router.resolve("/support").href);
}

1
src/views/report/edit/controlPrice.vue

@ -1438,6 +1438,7 @@ function hasAuditAttachment() {
<el-dialog v-model="upFileDialog" title="材料上传" destroy-on-close>
<file-upload v-model:files="formData.files[activeName][fileIndex].fileData" :uploadDrag="true" ></file-upload>
<p style="color: red;">说明附件上传仅支持 上传 Word / PDF / Excel 文件.doc .docx .pdf .xls .xlsx</p>
<footer class="flex end">
<el-button type="primary" @click="upFileDialog = false" size="large">确认</el-button>
<el-button @click="upFileDialog = false" size="large">关闭</el-button>

Loading…
Cancel
Save