招标解析

This commit is contained in:
cwchen 2025-11-28 17:59:34 +08:00
parent 892a6c5543
commit 7d3d6b0333
2 changed files with 4 additions and 2 deletions

View File

@ -59,7 +59,7 @@ export function editBidDataAPI(data) {
/* 测试 mq */ /* 测试 mq */
export function testMQAPI(params) { export function testMQAPI(params) {
return request({ return request({
url: '/smartBid/analysis/testAsyncMq2', url: '/smartBid/analysis/testAsyncMq',
method: 'GET', method: 'GET',
params params
}) })

View File

@ -15,9 +15,11 @@
<el-button @click="handleDocumentSearchWord">Word文档搜索功能</el-button> <el-button @click="handleDocumentSearchWord">Word文档搜索功能</el-button>
<el-button @click="handleDocumentExcel">Excel文档查看</el-button> <el-button @click="handleDocumentExcel">Excel文档查看</el-button>
<el-button @click="handleTestMQ">测试MQ</el-button> --> <el-button @click="handleTestMQ">测试MQ</el-button> -->
<el-button @click="handleTestMQ">测试MQ</el-button>
</template> </template>
<template slot="analysisStatus" slot-scope="{ data }"> <template slot="analysisStatus" slot-scope="{ data }">
<el-tag v-if="data.analysisStatus === '0'" type="info">解析中</el-tag> <el-tag v-if="!data.analysisStatus" type="info">待解析</el-tag>
<el-tag v-else-if="data.analysisStatus === '0'" type="warn">解析中</el-tag>
<el-tag v-else-if="data.analysisStatus === '1'" type="success">解析成功</el-tag> <el-tag v-else-if="data.analysisStatus === '1'" type="success">解析成功</el-tag>
<el-tag v-else-if="data.analysisStatus === '2'" type="danger">解析失败</el-tag> <el-tag v-else-if="data.analysisStatus === '2'" type="danger">解析失败</el-tag>
</template> </template>