招标解析
This commit is contained in:
parent
892a6c5543
commit
7d3d6b0333
|
|
@ -59,7 +59,7 @@ export function editBidDataAPI(data) {
|
|||
/* 测试 mq */
|
||||
export function testMQAPI(params) {
|
||||
return request({
|
||||
url: '/smartBid/analysis/testAsyncMq2',
|
||||
url: '/smartBid/analysis/testAsyncMq',
|
||||
method: 'GET',
|
||||
params
|
||||
})
|
||||
|
|
|
|||
|
|
@ -15,9 +15,11 @@
|
|||
<el-button @click="handleDocumentSearchWord">Word文档搜索功能</el-button>
|
||||
<el-button @click="handleDocumentExcel">Excel文档查看</el-button>
|
||||
<el-button @click="handleTestMQ">测试MQ</el-button> -->
|
||||
<el-button @click="handleTestMQ">测试MQ</el-button>
|
||||
</template>
|
||||
<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 === '2'" type="danger">解析失败</el-tag>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in New Issue