招标解析

This commit is contained in:
cwchen 2025-11-26 10:47:46 +08:00
parent 7b20aec4fd
commit 1905783af6
6 changed files with 468 additions and 150 deletions

View File

@ -1,4 +1,5 @@
import request from '@/utils/request'
import { data } from 'jquery'
// 招标解析->查询列表
export function listAPI(params) {
@ -18,37 +19,47 @@ export function addDataAPI(data) {
})
}
/* 工器具库->修改工器具 */
export function editDataAPI(data) {
// 招标解析->查看标段列表
export function getBidListAPI(params) {
return request({
url: '/smartBid/mainDatabase/tool/editData',
method: 'POST',
data
})
}
/* 工器具库->删除工器具 */
export function delDataAPI(data) {
return request({
url: '/smartBid/mainDatabase/tool/delData',
method: 'POST',
data
})
}
/* 工器具库->查询详情 */
export function getDetailDataAPI(params) {
return request({
url: '/smartBid/mainDatabase/tool/detailData',
url: '/smartBid/analysis/getBidList',
method: 'GET',
params
})
}
// 招标解析->查看项目详情
export function getProDetailAPI(params) {
return request({
url: '/smartBid/analysis/getProDetail',
method: 'GET',
params
})
}
// 招标解析->更新项目数据
export function editProDataAPI(data) {
return request({
url: '/smartBid/analysis/editProData',
method: 'POST',
data
})
}
// 招标解析->更新标段数据
export function editBidDataAPI(data) {
return request({
url: '/smartBid/analysis/editBidData',
method: 'POST',
data
})
}
/* 测试 mq */
export function testMQAPI(params) {
return request({
url: '/smartBid/analysis/testAsyncMq',
url: '/smartBid/analysis/testAsyncMq2',
method: 'GET',
params
})

View File

@ -33,7 +33,7 @@
<el-col :span="12" class="detail-col">
<div class="detail-field">
<div class="field-label">招标人</div>
<div class="field-value">{{ detailData.bidder || '--' }}</div>
<div class="field-value">{{ detailData.tenderer || '--' }}</div>
</div>
</el-col>
<el-col :span="12" class="detail-col">
@ -48,13 +48,13 @@
<el-col :span="12" class="detail-col">
<div class="detail-field">
<div class="field-label">开标时间</div>
<div class="field-value">{{ detailData.openTime || '--' }}</div>
<div class="field-value">{{ detailData.bidOpeningTime || '--' }}</div>
</div>
</el-col>
<el-col :span="12" class="detail-col">
<div class="detail-field">
<div class="field-label">开标方式</div>
<div class="field-value">{{ detailData.openMethod || '--' }}</div>
<div class="field-value">{{ detailData.bidOpeningMethod || '--' }}</div>
</div>
</el-col>
</el-row>
@ -62,14 +62,14 @@
<!-- 项目简介 - 占满宽度 -->
<div class="detail-field full-width">
<div class="field-label">项目简介</div>
<div class="field-value description-value">{{ detailData.proDescription || '--' }}</div>
<div class="field-value description-value">{{ detailData.proIntroduction || '--' }}</div>
</div>
</div>
</el-card>
<div class="table-container">
<TableModel :showSearch="false" :showOperation="true" :showRightTools="false" ref="detailTableRef"
:columnsList="detailColumnsList" :request-api="listAPI" :sendParams="sendParams"
:handleColWidth="180" :isShowtableCardStyle="false">
:columnsList="detailColumnsList" :request-api="getBidListAPI" :sendParams="sendParams"
:handleColWidth="180" :isShowtableCardStyle="false" :autoLoad="true">
<template slot="tableTitle">
<div class="card-header">
<img src="@/assets/enterpriseLibrary/basic-info.png" alt="标的信息">
@ -86,17 +86,16 @@
</TableModel>
</div>
</div>
<BidForm v-if="showBidForm" :width="600" :rowData="detailData" :title="title"
@closeDialog="showBidForm = false" />
<BidForm v-if="showBidForm" :width="600" :rowData="rowData" :title="title"
@closeDialog="showBidForm = false" @handleQuery="handleQuery" />
</div>
</template>
<script>
import { decryptWithSM4 } from '@/utils/sm'
import { listAPI, delDataAPI } from '@/api/analysis/analysis'
import { getProDetailAPI,getBidListAPI } from '@/api/analysis/analysis'
import { formLabel, detailColumnsList } from '../config'
import TableModel from '@/components/TableModel2'
import request from '@/utils/request'
import BidForm from './BidForm.vue'
export default {
@ -109,11 +108,11 @@ export default {
return {
formLabel,
detailColumnsList,
listAPI,
proId: '',
getBidListAPI,
proId: decryptWithSM4(this.$route.query.proId),
detailData: {},
sendParams: {
enterpriseId: 2
proId: decryptWithSM4(this.$route.query.proId),
},
showBidForm: false,
title: '',
@ -121,49 +120,21 @@ export default {
}
},
created() {
this.proId = decryptWithSM4(this.$route.query.proId)
this.getDetail()
},
methods: {
//
async getDetail() {
try {
// TODO: API
const res = await request({
url: '/smartBid/analysis/detail',
method: 'GET',
params: { proId: this.proId }
})
// 使 getDetailDataAPI
// const res = await getDetailDataAPI({ proId: this.proId })
const res = await getProDetailAPI({ proId: this.proId })
console.log('res:', res);
if (res.code === 200) {
this.detailData = res.data || {}
} else {
this.$message.error(res.msg || '获取详情失败')
// 使
this.detailData = {
proName: '南方电网公司2025年电网基建工程第二批次施工公开招标项目',
proCode: 'CG2700022002003411',
bidder: '中建宏业建筑工程有限公司',
agency: '南方电网供应链集团有限公司',
openTime: '2025/06/02 09:00',
openMethod: '线上开标',
proDescription: '本项目为南方电网公司2025年电网基建工程第四批次施工公开招标涵盖云南、广东及深圳地区的多个标段工期从141至487日历天不等计划总投资额约...'
}
}
} catch (error) {
console.error('获取详情失败:', error)
// 使
this.detailData = {
proName: '南方电网公司2025年电网基建工程第二批次施工公开招标项目',
proCode: 'CG2700022002003411',
bidder: '中建宏业建筑工程有限公司',
agency: '南方电网供应链集团有限公司',
openTime: '2025/06/02 09:00',
openMethod: '线上开标',
proDescription: '本项目为南方电网公司2025年电网基建工程第四批次施工公开招标涵盖云南、广东及深圳地区的多个标段工期从141至487日历天不等计划总投资额约...'
}
}
},
//
@ -176,7 +147,11 @@ export default {
this.title = '编辑'
this.rowData = data
this.showBidForm = true
}
},
/* 搜索操作 */
handleQuery() {
this.$refs.detailTableRef.getTableList()
},
}
}
</script>

View File

@ -14,7 +14,7 @@
</el-form-item>
<el-form-item label="标段编号" prop="bidNumber">
<el-input v-model.trim="form.bidNumber" placeholder="请输入标段编号" clearable show-word-limit
maxlength="64"></el-input>
maxlength="32"></el-input>
</el-form-item>
<el-form-item label="标段名称" prop="bidName">
<el-input v-model.trim="form.bidName" placeholder="请输入标段名称" clearable show-word-limit
@ -34,11 +34,11 @@
</el-form-item>
<el-form-item label="招标阶段" prop="biddingStage">
<el-input v-model.trim="form.biddingStage" placeholder="请输入招标阶段" clearable show-word-limit
maxlength="64"></el-input>
maxlength="32"></el-input>
</el-form-item>
<el-form-item label="工期" prop="duration">
<el-input v-model.trim="form.duration" placeholder="请输入工期" clearable show-word-limit
maxlength="64"></el-input>
<el-input type="textarea" v-model.trim="form.duration" placeholder="请输入工期" clearable show-word-limit
:autosize="{ minRows: 3, maxRows: 5 }" maxlength="128"></el-input>
</el-form-item>
</el-form>
@ -51,26 +51,16 @@
</template>
<script>
import _ from 'lodash'
import { editBidDataAPI } from '@/api/analysis/analysis'
export default {
name: 'BidForm',
props: ['width', 'rowData', 'title'],
data() {
return {
lDialog: this.width > 500 ? 'w700' : 'w500',
dialogVisible: true,
form: {
markName: '',
unit: '',
bidNumber: '',
bidName: '',
maximumBidLimit: '',
safetyConstFee: '',
bidBond: '',
biddingStage: '',
duration: '',
},
rules: {
markName: [
@ -139,9 +129,28 @@ export default {
},
}
},
created() {
this.initFormData()
},
methods: {
/* 初始化表单数据 */
initFormData() {
console.log(this.rowData);
this.form = {
bidId: this.rowData.bidId || null,
markName: this.rowData.markName || '',
unit: this.rowData.unit || '',
bidNumber: this.rowData.bidNumber || '',
bidName: this.rowData.bidName || '',
maximumBidLimit: this.rowData.maximumBidLimit || '',
safetyConstFee: this.rowData.safetyConstFee || '',
bidBond: this.rowData.bidBond || '',
biddingStage: this.rowData.biddingStage || '',
duration: this.rowData.duration || '',
}
},
/*关闭弹窗 */
handleClose() {
@ -156,12 +165,16 @@ export default {
/**重置表单*/
reset() {
this.form = {
id: null,
pid: null,
templateId: null,
fileList: [],
delFileList: [],
remark: '',
bidId: null,
markName: '',
unit: '',
bidNumber: '',
bidName: '',
maximumBidLimit: '',
safetyConstFee: '',
bidBond: '',
biddingStage: '',
duration: '',
}
this.resetForm('ruleForm')
},
@ -186,30 +199,12 @@ export default {
async submitForm(formName) {
try {
const data = await this.validate(formName)
console.log(data);
//
let formData = {
...data,
allFiles: [
...data.fileList.map((file) =>
JSON.parse(JSON.stringify(file)),
),
],
delFiles: [...data.delFileList],
}
let allFiles = formData.allFiles
.map((file) => {
return file?.response?.fileRes
? {
...file.response.fileRes,
}
: null
})
.filter((item) => item !== null)
formData.files = allFiles
delete formData.fileList
delete formData.delFileList
delete formData.allFiles
//
this.loading = this.$loading({
lock: true,
@ -219,12 +214,12 @@ export default {
this.$el.querySelector('.el-dialog') || document.body,
})
console.log('所有表单校验通过,完整数据:', formData)
/* const res = await this.saveData(formData)
const res = await this.saveData(formData)
if (res.code === 200) {
this.handleReuslt(res)
} else {
this.$modal.msgError(res.msg)
} */
}
} catch (error) {
} finally {
if (this.loading) {
@ -236,25 +231,14 @@ export default {
//
async saveData(formData) {
return new Promise((resolve, reject) => {
if (this.isAdd === 'add') {
//
addDataAPI(formData)
.then((res) => {
resolve(res)
})
.catch((error) => {
reject(error)
})
} else {
//
editDataAPI(formData)
.then((res) => {
resolve(res)
})
.catch((error) => {
reject(error)
})
}
//
editBidDataAPI(formData)
.then((res) => {
resolve(res)
})
.catch((error) => {
reject(error)
})
})
},
},

View File

@ -0,0 +1,348 @@
<template>
<!-- 小型弹窗用于完成删除保存等操作 -->
<el-dialog class="l-dialog" :class="lDialog" :title="title" :visible.sync="dialogVisible" :showClose="true"
:closeOnClickModal="false" @close="handleClose" :append-to-body="true">
<div class="dialog-content-scrollable">
<el-form :model="form" :rules="rules" ref="ruleForm" label-width="110px" label-position="top">
<el-form-item label="项目名称" prop="proName">
<el-input v-model.trim="form.proName" placeholder="请输入项目名称" clearable show-word-limit
maxlength="64"></el-input>
</el-form-item>
<el-form-item label="项目编号" prop="项目编号">
<el-input v-model.trim="form.项目编号" placeholder="请输入项目编号" clearable show-word-limit
maxlength="64"></el-input>
</el-form-item>
<el-form-item label="招标人" prop="tenderer">
<el-input v-model.trim="form.tenderer" placeholder="请输入招标人" clearable show-word-limit
maxlength="32"></el-input>
</el-form-item>
<el-form-item label="代理机构" prop="agency">
<el-input v-model.trim="form.agency" placeholder="请输入代理机构" clearable show-word-limit
maxlength="64"></el-input>
</el-form-item>
<el-form-item label="开标时间" prop="bidOpeningTime">
<el-date-picker v-model="form.bidOpeningTime" type="datetime" placeholder="请选择开标时间" value-format="yyyy-MM-dd HH:mm:ss" clearable></el-date-picker>
</el-form-item>
<el-form-item label="开标方式" prop="bidOpeningMethod">
<el-input v-model.trim="form.bidOpeningMethod" placeholder="请输入开标方式" clearable show-word-limit
maxlength="64"></el-input>
</el-form-item>
<el-form-item label="项目简介" prop="proIntroduction">
<el-input type="textarea" v-model.trim="form.proIntroduction" placeholder="请输入项目简介" clearable show-word-limit
:autosize="{ minRows: 3, maxRows: 5 }" maxlength="128"></el-input>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button type="primary" class="confirm-btn" @click="submitForm('ruleForm')">确认</el-button>
<el-button class="cancel-btn" @click="handleClose">取消</el-button>
</span>
</el-dialog>
</template>
<script>
import _ from 'lodash'
import { editBidDataAPI } from '@/api/analysis/analysis'
export default {
name: 'ProForm',
props: ['width', 'rowData', 'title'],
data() {
return {
lDialog: this.width > 500 ? 'w700' : 'w500',
dialogVisible: true,
form: {
},
rules: {
proName: [
{
required: true,
message: '请输入项目名称',
trigger: 'blur',
},
],
项目编号: [
{
required: true,
message: '请输入项目编号',
trigger: 'blur',
},
],
tenderer: [
{
required: true,
message: '请输入招标人',
trigger: 'blur',
},
],
agency: [
{
required: true,
message: '请输入代理机构',
trigger: 'blur',
},
],
bidOpeningTime: [
{
required: true,
message: '请选择开标时间',
trigger: 'change',
},
],
bidOpeningMethod: [
{
required: true,
message: '请输入开标方式',
trigger: 'blur',
},
],
proIntroduction: [
{
required: true,
message: '请输入项目简介',
trigger: 'blur',
},
],
},
}
},
created() {
this.initFormData()
},
methods: {
/* 初始化表单数据 */
initFormData() {
console.log(this.rowData);
this.form = {
bidId: this.rowData.bidId || null,
markName: this.rowData.markName || '',
unit: this.rowData.unit || '',
bidNumber: this.rowData.bidNumber || '',
bidName: this.rowData.bidName || '',
maximumBidLimit: this.rowData.maximumBidLimit || '',
safetyConstFee: this.rowData.safetyConstFee || '',
bidBond: this.rowData.bidBond || '',
biddingStage: this.rowData.biddingStage || '',
duration: this.rowData.duration || '',
}
},
/*关闭弹窗 */
handleClose() {
this.dialogVisible = false
this.$emit('closeDialog')
},
/**确认弹窗 */
sureBtnClick() {
this.dialogVisible = false
this.$emit('closeDialog')
},
/**重置表单*/
reset() {
this.form = {
bidId: null,
markName: '',
unit: '',
bidNumber: '',
bidName: '',
maximumBidLimit: '',
safetyConstFee: '',
bidBond: '',
biddingStage: '',
duration: '',
}
this.resetForm('ruleForm')
},
handleReuslt(res) {
this.$modal.msgSuccess(res.msg)
this.reset()
this.$emit('handleQuery')
this.handleClose()
},
validate(formName) {
return new Promise((resolve, reject) => {
this.$refs[formName].validate((valid) => {
if (valid) {
resolve(this.form) //
} else {
reject(new Error('数据未填写完整'))
}
})
})
},
/**验证 */
async submitForm(formName) {
try {
const data = await this.validate(formName)
console.log(data);
//
let formData = {
...data,
}
//
this.loading = this.$loading({
lock: true,
text: '数据提交中,请稍候...',
background: 'rgba(0,0,0,0.5)',
target:
this.$el.querySelector('.el-dialog') || document.body,
})
console.log('所有表单校验通过,完整数据:', formData)
const res = await this.saveData(formData)
if (res.code === 200) {
this.handleReuslt(res)
} else {
this.$modal.msgError(res.msg)
}
} catch (error) {
} finally {
if (this.loading) {
this.loading.close()
}
}
},
//
async saveData(formData) {
return new Promise((resolve, reject) => {
//
editBidDataAPI(formData)
.then((res) => {
resolve(res)
})
.catch((error) => {
reject(error)
})
})
},
},
}
</script>
<style lang="scss" scoped>
.w700 ::v-deep .el-dialog {
width: 700px;
font-family: Source Han Sans CN, Source Han Sans CN;
max-height: 90vh;
display: flex;
flex-direction: column;
margin-top: 5vh !important;
margin-bottom: 5vh !important;
}
.w500 ::v-deep .el-dialog {
width: 500px;
font-family: Source Han Sans CN, Source Han Sans CN;
max-height: 90vh;
display: flex;
flex-direction: column;
margin-top: 5vh !important;
margin-bottom: 5vh !important;
}
//
.w500 ::v-deep .el-dialog__body,
.w700 ::v-deep .el-dialog__body {
flex: 1;
overflow: hidden;
padding: 20px;
display: flex;
flex-direction: column;
}
.w500 ::v-deep .el-dialog__header,
.w700 ::v-deep .el-dialog__header {
flex-shrink: 0;
border-bottom: 1px solid #EBEEF5;
.el-dialog__title {
font-size: 16px;
}
}
.yxq .el-range-separator {
margin-right: 7px !important;
}
.el-date-editor--daterange.el-input__inner {
width: 260px;
}
.form-item {
width: 100%;
}
.select-style {
display: flex;
justify-content: space-between;
}
.confirm-btn {
width: 98px;
height: 36px;
background: #1f72ea;
box-shadow: 0px 4px 8px 0px rgba(51, 135, 255, 0.5);
border-radius: 4px 4px 4px 4px;
color: #fff;
border: none;
font-size: 14px;
transition: all 0.3s;
&:hover {
background: #4a8bff;
box-shadow: 0px 6px 12px 0px rgba(51, 135, 255, 0.6);
}
}
.cancel-btn {
width: 98px;
height: 36px;
background: #e5e5e5;
box-shadow: 0px 4px 8px 0px rgba(76, 76, 76, 0.2);
border-radius: 4px 4px 4px 4px;
color: #333;
border: none;
font-size: 14px;
transition: all 0.3s;
&:hover {
background: #d0d0d0;
box-shadow: 0px 6px 12px 0px rgba(76, 76, 76, 0.3);
}
}
::v-deep .el-dialog__footer {
text-align: center;
flex-shrink: 0;
}
//
.dialog-content-scrollable {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
padding-right: 6px;
max-height: calc(90vh - 120px); //
//
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
&::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.2);
border-radius: 3px;
&:hover {
background: rgba(0, 0, 0, 0.3);
}
}
}
</style>

View File

@ -69,26 +69,26 @@ export const columnsList = [
]
export const detailColumnsList = [
{ t_props: 'toolName', t_label: '标的名称' },
{ t_props: 'model', t_label: '单位' },
{ t_props: 'unit', t_label: '标段标号' },
{ t_props: 'technicalParameters', t_label: '标段名称' },
{ t_props: 'mainFunction', t_label: '最高投标限价(万元)' },
{ t_props: 'mainFunction', t_label: '安全文明施工费(万元)' },
{ t_props: 'mainFunction', t_label: '投标保证金(万元)' },
{ t_props: 'mainFunction', t_label: '工期' },
{ t_props: 'mainFunction', t_label: '招标阶段' },
{ t_props: 'markName', t_label: '标的名称' },
{ t_props: 'unit', t_label: '单位' },
{ t_props: 'bidNumber', t_label: '标段标号' },
{ t_props: 'bidName', t_label: '标段名称' },
{ t_props: 'maximumBidLimit', t_label: '最高投标限价(万元)' },
{ t_props: 'safetyConstFee', t_label: '安全文明施工费(万元)' },
{ t_props: 'bidBond', t_label: '投标保证金(万元)' },
{ t_props: 'duration', t_label: '工期' },
{ t_props: 'biddingStage', t_label: '招标阶段' },
]
export const bidListColumnsList = [
{ t_props: 'toolName', t_label: '标的名称' },
{ t_props: 'model', t_label: '单位' },
{ t_props: 'unit', t_label: '标段标号' },
{ t_props: 'technicalParameters', t_label: '标段名称' },
{ t_props: 'mainFunction', t_label: '最高投标限价(万元)' },
{ t_props: 'mainFunction', t_label: '安全文明施工费(万元)' },
{ t_props: 'mainFunction', t_label: '投标保证金(万元)' },
{ t_props: 'mainFunction', t_label: '工期' },
{ t_props: 'mainFunction', t_label: '招标阶段' },
{ t_props: 'mainFunction', t_label: '解析状态' }
{ t_props: 'markName', t_label: '标的名称' },
{ t_props: 'unit', t_label: '单位' },
{ t_props: 'bidNumber', t_label: '标段标号' },
{ t_props: 'bidName', t_label: '标段名称' },
{ t_props: 'maximumBidLimit', t_label: '最高投标限价(万元)' },
{ t_props: 'safetyConstFee', t_label: '安全文明施工费(万元)' },
{ t_props: 'bidBond', t_label: '投标保证金(万元)' },
{ t_props: 'duration', t_label: '工期' },
{ t_props: 'biddingStage', t_label: '招标阶段' },
{ t_props: 'parsingState', t_label: '解析状态' }
]

View File

@ -146,7 +146,7 @@ export default {
this.$router.push({
name: 'AnalysisDetail',
query: {
proId: encryptWithSM4('2'),
proId: encryptWithSM4(row.proId + '' || '0'),
},
})
},