Commit f045bb57 by 史敦盼

修改

1 parent 8042705e
......@@ -657,6 +657,14 @@ export function getQWordTable(params) {
export function getQWordPic_(params) {
return post(EADC_ARRCHITECTURE + '/prel-des-inspecte/qWordPic', params)
}
// 概设材料审查-查询概设材料解析内容
export function analysisQryContent(params) {
return post(EADC_ARRCHITECTURE + '/ads-parser-content/qryContent', params)
}
// 概设材料审查-概设材料解析
export function analysisConceptual(params) {
return post(EADC_ARRCHITECTURE + '/ads-parser-content/adsParser', params)
}
// 获取评审片段img
export function getQWordPic(params) {
return post(EADC_ARRCHITECTURE + '/prel-des-rvw/qWordPic', params)
......@@ -752,6 +760,6 @@ export function addOrgInfo(params) {
export function updOrgInfo(params) {
return post(EADC_ARRCHITECTURE + '/org-info/upd', params)
}
export function postRequest(url, params){
export function postRequest(url, params) {
return post(EADC_ARRCHITECTURE + url, params)
}
\ No newline at end of file
}
......@@ -114,7 +114,7 @@
import ListPage from '@/components/ListPage.vue'
import SearchForm from '@/components/SearchForm.vue'
import TableConfig from '@/components/TableConfig.vue'
import AnalysisContent from './AnalysisContent.vue'
import AnalysisContent from './AnalysisContent'
import { queryConceptualReview } from '@/api/interface'
import { exportRiskReport, analysisConceptual } from '@/api/index'
......@@ -474,8 +474,14 @@ export default {
},
// 导出重复建设风险报告
handlExportRiskReport(title, type) {
if (this.selectRows.length == 0) {
return this.$message.warning('请选择一条数据')
}
if (this.selectRows.length > 1) {
return this.$message.warning('只能选择一条数据')
}
const params = {
title: `${this.selectRows[0].reviewSuggestion.prjName}${title}`,
title: `${this.selectRows[0].prjName}${title}`,
type,
comment: this.selectRows[0].reviewSuggestion,
}
......
......@@ -19,6 +19,7 @@
border-top: none;
min-height: 0;
overflow-y: auto;
background-color: #fff;
}
.select-title {
position: absolute;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!