| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411 |
- <template>
- <div class="catalog-manage">
- <div class="documents-layout">
- <!-- 左侧文书类型列表 -->
- <div class="documents-type-list">
- <h3>监审文书类型:</h3>
- <div
- v-for="type in documentData.documentTypes"
- :key="type.id"
- class="type-item"
- :class="{ active: activeDocumentTypeId === type.id }"
- @click="handleDocumentTypeClick(type)"
- >
- {{ type.documentName }}
- </div>
- </div>
- <!-- 右侧文书列表表格 -->
- <div class="documents-content">
- <div class="operation-bar">
- <el-button
- v-if="!isView"
- plain
- type="success"
- icon="el-icon-circle-plus"
- @click="handleGenerateDocument"
- >
- 生成文书
- </el-button>
- </div>
- <CostAuditTable
- :table-data="documentData.list"
- :columns="documentData.documentColumns"
- :show-index="true"
- :show-pagination="true"
- :show-action-column="true"
- :pagination="documentData.pagination"
- @pagination-change="handlePaginationChange"
- >
- <template #documentId="{ row }">
- {{ row.documentName || getDocumenType(row) }}
- </template>
- <template #enterpriseId="{ row }">
- {{ getEnterpriseName(row) }}
- </template>
- <template #generateTime="{ row }">
- <div>
- {{ row.generateTime ? row.generateTime.split(' ')[0] : '' }}
- </div>
- <div>
- {{ row.generateTime ? row.generateTime.split(' ')[1] : '' }}
- </div>
- </template>
- <template #scanDocumentUrl="scope">
- <el-button
- v-if="!isView && getDocumenType(scope.row).includes('送达回证')"
- type="text"
- size="mini"
- @click="handleUploadScan(scope.row, 'scanDocumentUrl')"
- >
- 上传附件
- </el-button>
- <el-button
- v-if="getDocumenType(scope.row).includes('送达回证')"
- type="text"
- size="mini"
- @click="handleViewScan(scope.row.scanDocumentUrl)"
- >
- 查看附件
- </el-button>
- </template>
- <template #feedbackDocumentUrl="scope">
- <!-- <el-button
- type="text"
- size="mini"
- :disabled="isView"
- @click="handleUploadScan(scope.row, 'feedbackDocumentUrl')"
- >
- 上传附件
- </el-button> -->
- <div v-if="getDocumenType(scope.row).includes('送达回证')">
- <!-- <span>
- {{ scope.row.feedbackDocumentUrl ? '已回传' : '未回传' }}
- </span> -->
- <el-button
- v-if="scope.row.feedbackDocumentUrl"
- type="text"
- size="mini"
- @click="handleViewScan(scope.row.feedbackDocumentUrl)"
- >
- 查看附件
- </el-button>
- </div>
- </template>
- <template #electronicDocumentUrl="scope">
- <el-button
- type="text"
- size="mini"
- @click="handleDocView(scope.row)"
- >
- 查看
- </el-button>
- <el-button
- v-if="!isView && !getDocumenType(scope.row).includes('通知书')"
- type="text"
- size="mini"
- @click="handleEditDocument(scope.row)"
- >
- 修改
- </el-button>
- <!-- <el-button
- v-if="!isView"
- type="text"
- size="mini"
- @click="handleSignDocument(scope.row)"
- >
- 签章
- </el-button> -->
- <el-button
- v-if="!isView"
- type="text"
- size="mini"
- @click="handleDeleteDocument(scope.row)"
- >
- 删除
- </el-button>
- <el-button
- type="text"
- size="mini"
- @click="handleDownloadDocument(scope.row)"
- >
- 下载
- </el-button>
- </template>
- </CostAuditTable>
- </div>
- </div>
- <!-- <div style="margin-top: 20px; font-size: 14px" class="table-description">
- 说明:此处只能生成各被监审单位的《成本监审通知书》和《送达回证》,同时接收或上传被监审单位的反馈的《送达回证》。
- </div> -->
- <!-- 编辑监审通知书 -->
- <CostAuditDialog
- :title="documentDialogTitle"
- :visible="documentDialogVisible"
- width="82%"
- :close-on-click-modal="false"
- :z-index="9999"
- @cancel="handleCancel"
- @confirm="handleConfirm"
- >
- <div class="document-edit-container">
- <!-- 左侧:文书参数设置 -->
- <div class="document-params">
- <h4>文书参数设置:</h4>
- <el-form
- ref="documentForm"
- v-loading="loading.saveDocument"
- :model="document"
- label-width="170px"
- size="small"
- :rules="documentRules"
- >
- <el-form-item label="选择模板:" prop="documentId">
- <el-select
- v-model="document.documentId"
- placeholder="请选择模板"
- style="width: 100%"
- @change="handleTemplateChange"
- >
- <el-option
- v-for="item in documentData.documentTypes"
- :key="item.id"
- :label="item.documentName"
- :value="item.id"
- ></el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="通知书文号:" prop="documentNumber">
- <el-input
- v-model="document.documentNumber"
- placeholder="请选择通知书文号"
- style="width: 74%"
- disabled
- ></el-input>
- <!-- disabled -->
- <el-button
- type="primary"
- size="small"
- class="ml10"
- @click="selectClick"
- >
- 选择文号
- </el-button>
- </el-form-item>
- <el-form-item label="被监审单位" prop="enterpriseId">
- <div style="display: flex; align-items: center; gap: 15px">
- <el-select
- v-model="document.enterpriseId"
- placeholder="请选择被监审单位"
- style="width: 100%"
- clearable
- :multiple="isMultipleMode"
- @change="handleEnterpriseChange"
- >
- <el-option
- v-for="item in allUnits"
- :key="item.unitId"
- :label="item.unitName"
- :value="item.unitId"
- ></el-option>
- </el-select>
- </div>
- </el-form-item>
- <el-form-item label="是否推送被监审单位:" prop="isPushed">
- <!-- 是否推送被监审单位 -->
- <el-radio-group v-model="document.isPushed">
- <el-radio label="1">是</el-radio>
- <el-radio label="0">否</el-radio>
- </el-radio-group>
- </el-form-item>
- <!-- <el-form-item label="被监审单位:">
- <el-select
- v-model="document.enterpriseId"
- placeholder="请选择被监审单位"
- style="width: 100%"
- clearable
- >
- <el-option
- v-for="item in allUnits"
- :key="item.unitId"
- :label="item.unitName"
- :value="item.unitId"
- ></el-option>
- </el-select>
- </el-form-item> -->
- <!-- 数据内容区域 -->
- <div style="margin-top: 20px">
- <h4 style="margin-bottom: 10px">数据内容:</h4>
- <el-table
- :data="costDocumentTemplateFiles"
- style="
- width: 100%;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- "
- >
- <el-table-column
- prop="originalText"
- label="数据项"
- width="120"
- align="center"
- show-overflow-tooltip
- ></el-table-column>
- <!-- <el-table-column
- prop="labelValue"
- label="标签"
- width="100"
- align="center"
- show-overflow-tooltip
- ></el-table-column> -->
- <el-table-column
- prop="originalText"
- label="描述"
- min-width="120"
- align="center"
- show-overflow-tooltip
- ></el-table-column>
- <el-table-column
- prop="dataValue"
- label="数据值"
- min-width="150"
- align="center"
- show-overflow-tooltip
- >
- <template slot-scope="scope">
- <el-input
- v-if="scope.row.originalText !== '需要提供材料'"
- v-model="scope.row.dataValue"
- size="small"
- placeholder="请输入数据值"
- ></el-input>
- <!-- 否则显示上传按钮 -->
- <div v-else>
- <el-button
- type="text"
- size="small"
- @click="handleUploadClick(scope.row)"
- >
- 上传附件
- </el-button>
- <el-button
- v-if="scope.row.dataValue"
- type="text"
- size="small"
- @click="handleViewScan(scope.row.dataValue)"
- >
- 查看附件
- </el-button>
- </div>
- </template>
- </el-table-column>
- </el-table>
- <div style="margin-top: 10px; font-size: 12px; color: #909399">
- 说明:数据内容可以在此处直接修改,修改后的数据将用于生成监审文书。
- </div>
- </div>
- </el-form>
- </div>
- <!-- 右侧:模板预览和编辑区 -->
- <div class="document-preview">
- <!-- 预览/修改标签页 -->
- <TemplatePreviewEdit :active-tab="activeTab" :file-url="fileUrl" />
- </div>
- </div>
- </CostAuditDialog>
- <CostAuditDialog
- :title="dialogTitle"
- :visible="dialogVisible"
- :width="dialogWidth"
- :close-on-click-modal="false"
- :z-index="10000"
- @cancel="handleCancel"
- @confirm="handleConfirm"
- >
- <cost-audit-table
- :table-data="selectDocumentWhData"
- :columns="selectDocumentWhColumns"
- :show-selection="true"
- :show-pagination="true"
- :pagination="selectDocumentWhPagination"
- @pagination-change="selectDocumentWhPaginationChange"
- @selection-change="selectDocumentWhSelectionChange"
- >
- <!-- 创建时间自定义单元格 -->
- <template #createTime="{ row }">
- <div>{{ row.createTime ? row.createTime.split(' ')[0] : '-' }}</div>
- <div>{{ row.createTime ? row.createTime.split(' ')[1] : '-' }}</div>
- </template>
- </cost-audit-table>
- </CostAuditDialog>
- </div>
- </template>
- <script>
- import CostAuditTable from '@/components/costAudit/CostAuditTable.vue'
- import CostAuditDialog from '@/components/costAudit/CostAuditDialog.vue'
- import TemplatePreviewEdit from '@/components/costAudit/TemplatePreviewEdit.vue'
- import { getAllUnitList } from '@/api/auditEntityManage'
- import {
- getDocList,
- getCostProjectDocumentFile,
- queryByDocumentIdandWhereValue,
- } from '@/api/auditReviewDocManage.js'
- import { getData } from '@/api/auditDocNoManage.js'
- import {
- addCostProjectDocument,
- updateCostProjectDocument,
- deleteCostProjectDocument,
- getCostProjectDocumentDetail,
- updateScan,
- downDocument,
- getCostProjectDocumentPageList,
- } from '@/api/taskCustomizedRelease.js'
- import { dictMixin, regionMixin } from '@/mixins/useDict'
- import { uploadFile } from '@/api/file'
- export default {
- components: { CostAuditTable, CostAuditDialog, TemplatePreviewEdit },
- mixins: [dictMixin, regionMixin],
- props: {
- // 父组件传递的参数
- project: {
- type: Object,
- default: () => {},
- },
- id: {
- type: String,
- default: '',
- },
- isView: {
- type: Boolean,
- default: false,
- },
- },
- data() {
- return {
- isMultipleMode: false,
- dictData: {
- whGenerateType: [],
- },
- activeDocumentTypeId: '',
- document: {
- createBy: '',
- createTime: '',
- documentAlias: '',
- documentId: '',
- documentName: '',
- documentNumber: '',
- documentType: '',
- documentWhId: '',
- electronicDocumentUrl: '',
- enterpriseId: [],
- feedbackDocumentUrl: '',
- feedbackTime: '',
- generateTime: '',
- id: '',
- isDeleted: '',
- isPushed: '',
- orderNum: 0,
- pkVal: '',
- projectId: '',
- pushTime: '',
- scanDocumentUrl: '',
- updateBy: '',
- updateTime: '',
- },
- loading: {
- saveDocument: false,
- },
- activeView: 'list', // list edit
- activeTab: 'preview', // 当前标签页,preview:预览,edit:修改
- // 所有单位列表
- allUnits: [],
- dialogVisible: false,
- dialogTitle: '选择文号',
- documentDialogVisible: false,
- documentDialogTitle: '添加监审通知书',
- dialogWidth: '80%',
- fileUrl: '',
- selectDocumentWhData: [],
- selectDocumentWhPagination: {
- currentPage: 1,
- pageSize: 50,
- total: 0,
- },
- selectDocumentWhSelection: [],
- costDocumentTemplateFiles: [],
- documentData: {
- documentTypes: [],
- selectedDoc: 'notice',
- list: [],
- pagination: {
- currentPage: 1,
- pageSize: 50,
- total: 0,
- },
- documentColumns: [
- {
- prop: 'documentId',
- label: '文书类型',
- align: 'center',
- slotName: 'documentId',
- },
- {
- prop: 'documentNumber',
- label: '文书文号',
- width: 200,
- align: 'center',
- },
- {
- prop: 'enterpriseId',
- label: '被监审单位',
- width: 200,
- align: 'left',
- slotName: 'enterpriseId',
- },
- {
- prop: 'generateTime',
- label: '生成时间',
- width: 100,
- align: 'center',
- slotName: 'generateTime',
- },
- {
- prop: 'electronicDocumentUrl',
- label: '电子文书',
- width: 200,
- align: 'center',
- slotName: 'electronicDocumentUrl',
- },
- {
- prop: 'scanDocumentUrl',
- label: '上传扫描件',
- width: 150,
- align: 'center',
- slotName: 'scanDocumentUrl',
- },
- {
- prop: 'isPushed',
- label: '是否推送被监审单位',
- width: 100,
- align: 'center',
- formatter: (row) => (row.isPushed == 1 ? '是' : '否'),
- },
- {
- prop: 'feedbackDocumentUrl',
- label: '被监审单位反馈资料',
- width: 150,
- align: 'center',
- slotName: 'feedbackDocumentUrl',
- },
- ],
- },
- documentRules: {
- // documentNumber: [
- // {
- // required: true,
- // message: '请选择通知书文号',
- // trigger: 'change',
- // },
- // ],
- enterpriseId: [
- {
- required: true,
- message: '请选择被监审单位',
- trigger: 'change',
- },
- ],
- documentId: [
- {
- required: true,
- message: '请选择模板',
- trigger: 'change',
- },
- ],
- isPushed: [
- {
- required: true,
- message: '请选择否推送被监审单位',
- trigger: 'change',
- },
- ],
- },
- dataUploadUrl: [],
- }
- },
- computed: {
- selectDocumentWhColumns() {
- return [
- {
- prop: 'whType',
- label: '文号分类',
- showOverflowTooltip: true,
- align: 'center',
- formatter: (row) => {
- let documentName =
- this.documentData.documentTypes.find(
- (item) => item.id == row.whType
- )?.documentName || '-'
- return documentName
- },
- },
- {
- prop: 'whName',
- label: '文号名称',
- showOverflowTooltip: true,
- align: 'center',
- },
- {
- prop: 'areaCode',
- label: '适用区域',
- showOverflowTooltip: true,
- align: 'center',
- formatter: (row) => this.regionNameMap[row.areaCode] || '-',
- },
- {
- prop: 'generateType',
- label: '生成类型',
- showOverflowTooltip: true,
- align: 'center',
- width: 120,
- formatter: (row) =>
- this.getDictName('whGenerateType', row.generateType),
- },
- ]
- },
- },
- watch: {
- id: {
- handler(newVal) {
- if (newVal) {
- this.getData()
- }
- },
- deep: true,
- immediate: true,
- },
- costDocumentTemplateFiles: {
- handler(newVal, oldVal) {
- if (newVal.length > 0) {
- console.log(this.costDocumentTemplateFiles)
- this.costDocumentTemplateFiles.forEach((item) => {
- if (
- item.pinyin.includes('ShiJian') &&
- (item.dataValue == null || item.dataValue == '')
- ) {
- // 获取当前时间,格式为YYYY-MM-DD HH:mm:ss
- let date = new Date()
- let year = date.getFullYear()
- let month = String(date.getMonth() + 1).padStart(2, '0')
- let day = String(date.getDate()).padStart(2, '0')
- let hours = String(date.getHours()).padStart(2, '0')
- let minutes = String(date.getMinutes()).padStart(2, '0')
- let seconds = String(date.getSeconds()).padStart(2, '0')
- item.dataValue = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`
- }
- if (
- item.originalText.includes('需要提供材料') &&
- item.dataValue
- ) {
- this.dataUploadUrl = item.dataValue
- }
- })
- }
- },
- deep: true,
- },
- },
- mounted() {
- this.getData()
- this.loadOpts()
- },
- methods: {
- handleDocumentTypeClick(data) {
- this.activeDocumentTypeId = data.id
- this.getData(data)
- },
- // 获取监审通知数据
- async getData(data) {
- const res = await getDocList({
- page: 1,
- pageSize: 50,
- })
- this.documentData.documentTypes = res.value.records || []
- const pid = this.project.projectId
- if (!pid) return
- this.getlist(data)
- },
- getlist(data) {
- getCostProjectDocumentPageList({
- pageNum: this.documentData.pagination.currentPage,
- pageSize: this.documentData.pagination.pageSize,
- projectId: this.project.projectId,
- documentName: data ? data.documentName : '',
- permissionType: '0',
- }).then((res) => {
- let records = res.value.value.records
- this.documentData.list = records.filter((item) => {
- const excludeTypes = [
- '成本监审工作底稿-送达回证',
- '成本监审提取资料登记表-送达回证',
- '成本审核初步意见表1-送达回证',
- '成本监审集体审议记录-送达回证',
- ]
- return !excludeTypes.includes(item.documentName)
- })
- this.documentData.pagination.total = res.value.value.total
- })
- },
- getEnterpriseName(row) {
- // 处理enterpriseId,无论是数组还是逗号分隔的字符串
- let enterpriseIds = []
- if (Array.isArray(row.enterpriseId)) {
- enterpriseIds = row.enterpriseId
- } else if (typeof row.enterpriseId === 'string') {
- // 处理逗号分隔的字符串
- enterpriseIds = row.enterpriseId
- .split(',')
- .map((id) => id.trim())
- .filter((id) => id)
- } else if (row.enterpriseId) {
- // 处理其他可能的非空值
- enterpriseIds = [row.enterpriseId]
- }
- if (enterpriseIds.length > 0) {
- // 返回多个企业名称,用逗号分隔
- return enterpriseIds
- .map(
- (id) => this.allUnits.find((item) => item.unitId == id)?.unitName
- )
- .filter((name) => name)
- .join(', ')
- }
- return '-'
- },
- getDocumenType(row) {
- return this.documentData.documentTypes.find(
- (item) => item.id == row.documentId
- )?.documentName
- },
- handlePaginationChange({ currentPage, pageSize }) {
- this.documentData.pagination.currentPage = currentPage
- this.documentData.pagination.pageSize = pageSize
- this.getlist()
- },
- // 加载选项数据
- loadOpts() {
- // 加载所有单位列表
- getAllUnitList().then((res) => {
- this.allUnits = res.value || []
- // 过滤掉状态为停用的数据
- this.allUnits = this.allUnits.filter((item) => item.status == 1)
- // 筛选this.project.auditedUnitId中的单位,支持多种格式
- if (this.project.auditedUnitId) {
- // 确保将project.auditedUnitId转换为数组格式
- let auditedUnitIds = []
- if (Array.isArray(this.project.auditedUnitId)) {
- auditedUnitIds = this.project.auditedUnitId
- } else if (
- typeof this.project.auditedUnitId === 'string' &&
- this.project.auditedUnitId.includes(',')
- ) {
- // 如果是逗号分隔的字符串,转换为数组
- auditedUnitIds = this.project.auditedUnitId
- .split(',')
- .map((id) => id.trim())
- } else {
- // 单个ID也转换为数组
- auditedUnitIds = [this.project.auditedUnitId]
- }
- // 使用数组进行筛选
- this.allUnits = this.allUnits.filter((item) =>
- auditedUnitIds.includes(item.unitId)
- )
- }
- })
- },
- // 生成文书
- handleGenerateDocument() {
- this.documentDialogTitle = '添加监审通知书'
- this.documentDialogVisible = true
- this.activeView = 'form'
- this.costDocumentTemplateFiles = []
- this.document = {
- createBy: '',
- createTime: '',
- documentAlias: '',
- documentId: '',
- documentName: '',
- documentNumber: '',
- documentType: '',
- documentWhId: '',
- electronicDocumentUrl: '',
- enterpriseId: this.isMultipleMode ? [] : '',
- feedbackDocumentUrl: '',
- feedbackTime: '',
- generateTime: '',
- id: '',
- isDeleted: '',
- isPushed: '1',
- orderNum: this.documentData.list.length + 1,
- pkVal: '',
- projectId: '',
- pushTime: '',
- scanDocumentUrl: '',
- updateBy: '',
- updateTime: '',
- }
- // if(this.isMultipleMode){
- // this.document.enterpriseId = this.project.auditedUnitId ? this.project.auditedUnitId.split(',') : []
- // console.log('this.document.enterpriseId',this.document.enterpriseId)
- // }else{
- // this.document.enterpriseId = this.project.auditedUnitId
- // }
- this.loadOpts()
- if (this.activeDocumentTypeId) {
- this.document.documentId = this.activeDocumentTypeId
- this.handleTemplateChange()
- }
- },
- getDetail() {
- getCostProjectDocumentDetail({
- projectId: this.project.projectId,
- }).then((res) => {
- if (res.value) {
- this.document = {
- ...this.document,
- ...res.value,
- }
- this.loadOpts()
- }
- })
- },
- selectClick() {
- this.dialogVisible = true
- this.activeView = 'table'
- this.getWhListData()
- },
- getWhListData() {
- getData({
- page: this.selectDocumentWhPagination.currentPage,
- pageSize: this.selectDocumentWhPagination.pageSize,
- whType: this.document.documentId,
- }).then((res) => {
- this.selectDocumentWhData = res.rows || []
- this.selectDocumentWhPagination.total = res.total || 0
- // 获取区域名称,填充regionNameMap
- if (this.selectDocumentWhData.length > 0) {
- this.fetchRegionNames(this.selectDocumentWhData, 'areaCode')
- }
- })
- },
- selectDocumentWhPaginationChange({ currentPage, pageSize }) {
- this.selectDocumentWhPagination.currentPage = currentPage
- this.selectDocumentWhPagination.pageSize = pageSize
- },
- selectDocumentWhSelectionChange(selection) {
- if (selection.length > 1) {
- this.$message.error('只能选择一个文号!')
- return
- } else {
- this.selectDocumentWhSelection = selection
- }
- },
- handleTemplateChange() {
- let data = this.documentData.documentTypes.find(
- (item) => item.id === this.document.documentId
- )
- this.fileUrl = data.fileUrl
- this.document.documentName = data.documentName
- this.document.documentNumber = ''
- this.document.documentWhId = ''
- },
- getDocumentData() {
- if (this.document.id === null || this.document.id === '') {
- queryByDocumentIdandWhereValue({
- documentId: this.document.documentId,
- whereValue: this.project.projectId,
- unitId: this.document.enterpriseId,
- }).then((res) => {
- this.costDocumentTemplateFiles = res.value || []
- let unit = this.allUnits.find(
- (item) => item.unitId === this.document.enterpriseId
- )
- this.costDocumentTemplateFiles.forEach((item) => {
- if (item.pinyin.includes('BeiJianShenDanWei')) {
- item.dataValue = unit.unitName
- }
- if (item.pinyin.includes('ShouSongDaRen')) {
- item.dataValue = unit.contactName
- }
- if (item.pinyin.includes('BeiJianShenDanWeiBanGongDiDian')) {
- item.dataValue = unit.address
- }
- if (item.pinyin.includes('BeiJianShenDanWeiLianXiRenDianHua')) {
- item.dataValue = unit.contactMobile
- }
- // 回显文号
- // 获取选中的文号信息
- const selectedDocument = this.selectDocumentWhSelection[0]
- if (
- item.pinyin.includes('WenHao') ||
- item.pinyin.includes('WenJianHao')
- ) {
- item.dataValue = selectedDocument.whNo
- }
- if (item.pinyin.includes('SongDaWenShuMingCheng')) {
- item.dataValue = selectedDocument.whName
- }
- })
- })
- } else {
- getCostProjectDocumentFile({
- // documentId: this.document.documentId,
- // whereValue: this.project.projectId,
- id: this.document.id,
- }).then((res) => {
- this.costDocumentTemplateFiles = res.value || []
- })
- }
- },
- handleConfirm() {
- switch (this.activeView) {
- case 'table':
- this.handleConfirmSelect()
- break
- case 'form':
- this.handleSaveDocument()
- break
- default:
- break
- }
- },
- handleConfirmSelect() {
- if (this.selectDocumentWhSelection.length !== 1) {
- this.$message.error('请选择一个文号!')
- return
- }
- // 获取选中的文号信息
- const selectedDocument = this.selectDocumentWhSelection[0]
- this.document.documentNumber = selectedDocument.whNo
- this.document.documentWhId = selectedDocument.id
- // 数据表格回显文号
- this.costDocumentTemplateFiles.forEach((item) => {
- if (
- item.pinyin.includes('WenHao') ||
- item.pinyin.includes('WenJianHao')
- ) {
- item.dataValue = selectedDocument.whNo
- }
- if (item.pinyin.includes('SongDaWenShuMingCheng')) {
- item.dataValue = selectedDocument.whName
- }
- })
- this.dialogVisible = false
- this.activeView = 'form'
- },
- handleEnterpriseChange(val) {
- if (this.document.enterpriseId) {
- // BeiJianShenDanWei
- this.getDocumentData()
- }
- },
- // 保存文档
- handleSaveDocument() {
- // 校验表单
- this.$refs.documentForm.validate((valid) => {
- if (!valid) {
- this.$message.error('请填写必填项!')
- return false
- }
- this.loading.saveDocument = true
- if (this.document.id) {
- updateCostProjectDocument({
- ...this.document,
- costProjectDocumentFiles: this.costDocumentTemplateFiles,
- projectId: this.project.projectId,
- electronicDocumentUrl:
- this.document.electronicDocumentUrl || this.fileUrl,
- enterpriseId: this.isMultipleMode
- ? this.document.enterpriseId.join(',')
- : this.document.enterpriseId, // 保存时转换为逗号分隔的字符串
- })
- .then((res) => {
- this.loading.saveDocument = false
- this.$message.success('保存成功!')
- this.documentDialogVisible = false
- this.activeView = ''
- this.getlist()
- })
- .catch((err) => {
- this.loading.saveDocument = false
- })
- } else {
- addCostProjectDocument({
- ...this.document,
- projectId: this.project.projectId,
- costProjectDocumentFiles: this.costDocumentTemplateFiles || [],
- enterpriseId: this.isMultipleMode
- ? this.document.enterpriseId.join(',')
- : this.document.enterpriseId,
- electronicDocumentUrl: this.fileUrl,
- })
- .then(() => {
- this.loading.saveDocument = false
- this.$message.success('保存成功!')
- this.documentDialogVisible = false
- this.activeView = ''
- this.getlist()
- })
- .catch((err) => {
- this.loading.saveDocument = false
- })
- }
- })
- },
- // 处理取消
- handleCancel() {
- if (this.activeView === 'form') {
- this.documentDialogVisible = false
- } else {
- this.activeView = 'form'
- this.dialogVisible = false
- }
- },
- // 上传扫描件
- handleUploadScan(row, type) {
- let loading = null
- // 第一步:创建文件选择器
- const input = document.createElement('input')
- input.type = 'file'
- input.accept = '.pdf,.doc,.docx,.xls,.xlsx,.csv' // 允许的文件类型
- input.onchange = async (event) => {
- const file = event.target.files[0]
- if (!file) return
- try {
- // 校验文件大小(50MB)
- const maxSize = 50 * 1024 * 1024 // 50MB
- if (file.size > maxSize) {
- this.$message.error('文件大小不能超过50MB!')
- return
- }
- // 校验文件格式
- const allowedFormats = [
- '.pdf',
- '.doc',
- '.docx',
- '.xls',
- '.xlsx',
- 'csv',
- ]
- const fileName = file.name.toLowerCase()
- const isValidFormat = allowedFormats.some((format) =>
- fileName.endsWith(format)
- )
- if (!isValidFormat) {
- this.$message.error(
- '只允许上传.pdf,.doc,.docx,.xls,.xlsx,.csv格式的文件!'
- )
- return
- }
- // 显示遮罩层
- loading = this.$baseLoading(1, '文件上传中...')
- // 第三步:创建FormData并上传文件
- const formData = new FormData()
- formData.append('file', file)
- // 先调用上传API
- const uploadRes = await uploadFile('/api/file/v1/upload', formData)
- // 第四步:检查上传结果
- if (!uploadRes || !uploadRes.value) {
- // this.$message.error('文件上传失败!');
- return
- }
- // 第五步:文件上传成功后,再更新数据
- const fileInfo = uploadRes.value
- // 创建更新数据对象
- const updateData = {
- id: row.id,
- scanDocumentUrl: fileInfo?.savePath, // 更新扫描件URL
- }
- // 第六步:调用更新API
- await updateScan(updateData)
- // 第七步:更新成功,显示提示并刷新
- this.$message.success('文件上传成功并更新数据!')
- this.getlist()
- } catch (error) {
- // 错误处理
- // this.$message.error('操作失败:' + (error.message || '未知错误'))
- } finally {
- // 关闭遮罩层
- loading.close()
- }
- }
- // 触发文件选择
- input.click()
- },
- // 查看监审文书
- handleDocView(row) {
- this.document = {
- ...row,
- }
- // 从API中获取文件URL
- downDocument({
- id: row.id,
- }).then((res) => {
- if (res.state) {
- // this.fileUrl = res.value || ''
- this.handleViewScan(res.value || '')
- } else {
- this.$message.error('获取文件URL失败')
- }
- })
- // this.handleTemplateChange()
- // this.documentDialogVisible = true
- // getCostProjectDocumentFile({
- // id: row.id,
- // }).then((res) => {
- // this.costDocumentTemplateFiles = res.value || []
- // })
- },
- // 查看扫描件
- handleViewScan(fileUrl) {
- if (!fileUrl) {
- this.$message.error('暂无文件!')
- return
- }
- let _fileUrl = ''
- if (fileUrl.startsWith('http')) {
- _fileUrl = fileUrl
- } else {
- _fileUrl = window.context.form + fileUrl
- }
- // 对文件URL进行Base64编码
- const encodedUrl = encodeURIComponent(Base64.encode(_fileUrl))
- // 构建 kkFileView 预览URL
- // onlinePreview - 在线预览
- // onlinePreview?type=pdf - 强制使用PDF模式预览
- window.open(`${host}:8012/onlinePreview?url=${encodedUrl}`)
- },
- // 编辑文档
- handleEditDocument(row) {
- this.documentDialogTitle = '修改监审通知书'
- this.documentDialogVisible = true
- this.activeView = 'form'
- this.loadOpts()
- // 确保enterpriseId是数组格式,处理可能的逗号分隔字符串
- const enterpriseId = this.isMultipleMode
- ? row.enterpriseId.split(',')
- : row.enterpriseId
- this.document = {
- ...row,
- documentId: Number(row.documentId),
- enterpriseId,
- // 确保isPushed有值,如果row中没有,设置默认值'1'
- isPushed: row.isPushed !== undefined ? row.isPushed : '1',
- }
- // 从API中获取文件URL
- downDocument({
- id: row.id,
- }).then((res) => {
- if (res.state) {
- this.fileUrl = res.value || ''
- } else {
- this.$message.error('获取文件URL失败')
- }
- })
- this.getDocumentData()
- },
- // 签章
- handleSignDocument(row) {
- this.$message.warning('签章功能待实现!')
- },
- // 删除文档
- handleDeleteDocument(row) {
- this.$confirm('确定要删除该数据吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(() => {
- deleteCostProjectDocument(row.id).then((res) => {
- this.$message.success('删除成功!')
- this.getlist()
- })
- })
- },
- handleDownloadDocument1(row) {
- // 显示加载状态
- this.$loading({
- lock: true,
- text: '文件下载中...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)',
- })
- let fileUrl = window.context.form + row.electronicDocumentUrl
- let fileName = ''
- // 从URL中提取文件名
- const urlParts = fileUrl.split('/')
- let urlFileName = urlParts[urlParts.length - 1]
- // 处理URL可能包含查询参数的情况
- if (urlFileName.includes('?')) {
- urlFileName = urlFileName.split('?')[0]
- }
- // 检查从URL提取的文件名是否有效
- if (urlFileName && /\.[a-zA-Z0-9]+$/.test(urlFileName)) {
- fileName = urlFileName
- } else {
- // URL中无法提取有效文件名时,使用row.documentName作为备选
- fileName = row.documentName || `监审通知书_${new Date().getTime()}`
- // 确保备选文件名有扩展名
- if (!/\.[a-zA-Z0-9]+$/.test(fileName)) {
- fileName += '.pdf'
- }
- }
- // 创建隐藏的a标签进行下载
- const link = document.createElement('a')
- link.style.display = 'none'
- link.href = fileUrl
- // 设置下载文件名
- link.download = fileName
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link)
- // 关闭加载状态
- this.$loading().close()
- },
- // 下载文档
- handleDownloadDocument(row) {
- // 显示加载状态
- this.$loading({
- lock: true,
- text: '文件下载中...',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)',
- })
- // 从API中获取文件URL
- downDocument({
- id: row.id,
- })
- .then((res) => {
- // 关闭加载状态
- this.$loading().close()
- // 检查返回结果是否成功
- if (!res || !res.state) {
- this.$message.error(
- `下载失败:${res?.message || '未获取到文件数据'}`
- )
- return
- }
- // 获取文件URL
- const fileUrl = res.value
- if (!fileUrl) {
- this.$message.error('下载失败:未获取到文件URL')
- return
- }
- // 优先从URL中提取文件名
- let fileName = ''
- // 从URL中提取文件名
- const urlParts = fileUrl.split('/')
- let urlFileName = urlParts[urlParts.length - 1]
- // 处理URL可能包含查询参数的情况
- if (urlFileName.includes('?')) {
- urlFileName = urlFileName.split('?')[0]
- }
- // 检查从URL提取的文件名是否有效
- if (urlFileName && /\.[a-zA-Z0-9]+$/.test(urlFileName)) {
- fileName = urlFileName
- } else {
- // URL中无法提取有效文件名时,使用row.documentName作为备选
- fileName =
- row.documentName || `监审通知书_${new Date().getTime()}`
- // 确保备选文件名有扩展名
- if (!/\.[a-zA-Z0-9]+$/.test(fileName)) {
- fileName += '.pdf'
- }
- }
- // 创建隐藏的a标签进行下载
- const link = document.createElement('a')
- link.style.display = 'none'
- link.href = fileUrl
- // link.href = window.context.form + row.electronicDocumentUrl
- // 设置下载文件名
- link.download = fileName
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link)
- })
- .catch((error) => {
- // 关闭加载状态
- this.$loading().close()
- console.error('获取文件URL失败:', error)
- })
- },
- handleUploadClick(row) {
- console.log('handleUploadClick', row)
- let loading = null
- // 第一步:创建文件选择器
- const input = document.createElement('input')
- input.type = 'file'
- input.accept = '.pdf,.doc,.docx,.xls,.xlsx,.csv' // 允许的文件类型
- input.onchange = async (event) => {
- const file = event.target.files[0]
- if (!file) return
- try {
- // 校验文件大小(50MB)
- const maxSize = 50 * 1024 * 1024 // 50MB
- if (file.size > maxSize) {
- this.$message.error('文件大小不能超过50MB!')
- return
- }
- // 校验文件格式
- const allowedFormats = [
- '.pdf',
- '.doc',
- '.docx',
- '.xls',
- '.xlsx',
- 'csv',
- ]
- const fileName = file.name.toLowerCase()
- const isValidFormat = allowedFormats.some((format) =>
- fileName.endsWith(format)
- )
- if (!isValidFormat) {
- this.$message.error(
- '只允许上传.pdf,.doc,.docx,.xls,.xlsx,.csv格式的文件!'
- )
- return
- }
- // 显示遮罩层
- loading = this.$baseLoading(1, '文件上传中...')
- // 第三步:创建FormData并上传文件
- const formData = new FormData()
- formData.append('file', file)
- // 先调用上传API
- const uploadRes = await uploadFile('/api/file/v1/upload', formData)
- // 第四步:检查上传结果
- if (!uploadRes || !uploadRes.value) {
- // this.$message.error('文件上传失败!');
- return
- }
- // 第五步:文件上传成功后,再更新数据
- const fileInfo = uploadRes.value
- this.costDocumentTemplateFiles.find(
- (item) => item.originalText === row.originalText
- ).dataValue = fileInfo.savePath
- this.$message.success('文件上传成功!')
- } catch (error) {
- console.error('文件上传失败:', error)
- } finally {
- // 关闭遮罩层
- loading.close()
- }
- }
- // 触发文件选择对话框显示
- input.click()
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- @import '@/styles/costAudit.scss';
- .documents-layout {
- display: flex;
- margin-bottom: 20px;
- }
- .documents-type-list {
- width: 200px;
- border: 1px solid #ebeef5;
- border-radius: 5px;
- padding: 10px;
- margin-right: 20px;
- }
- .documents-type-list h3 {
- margin-bottom: 10px;
- font-size: 14px;
- font-weight: bold;
- }
- .type-item {
- padding: 5px 0;
- cursor: pointer;
- font-size: 12px;
- }
- .type-item:hover {
- color: #409eff;
- }
- .documents-content {
- flex: 1;
- }
- .generate-btn {
- margin-bottom: 10px;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- .mt10 {
- margin-top: 10px;
- }
- .mt20 {
- margin-top: 20px;
- }
- .document-edit-container {
- display: flex;
- .document-params {
- width: 50%;
- }
- .document-preview {
- width: 50%;
- }
- }
- </style>
|